Home
last modified time | relevance | path

Searched refs:isOctDigit (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DEncoding.h86 inline bool isOctDigit(char c) { return '0' <= c && c <= '7'; } in isOctDigit() function
113 if (isOctDigit(Text[1])) { in getEscapeSequenceLength()
115 while (I < Text.size() && I < 4 && isOctDigit(Text[I])) in getEscapeSequenceLength()