Home
last modified time | relevance | path

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

/external/clang/lib/Format/
DEncoding.h106 inline bool isOctDigit(char c) { return '0' <= c && c <= '7'; } in isOctDigit() function
133 if (isOctDigit(Text[1])) { in getEscapeSequenceLength()
135 while (I < Text.size() && I < 4 && isOctDigit(Text[I])) in getEscapeSequenceLength()