Home
last modified time | relevance | path

Searched refs:isHexDigit (Results 1 – 25 of 31) sorted by relevance

12

/netbsd-src/external/bsd/elftosb/dist/common/
H A DStSRecordFile.cpp87 bool StSRecordFile::isHexDigit(char c) in isHexDigit() function in StSRecordFile
113 if (!(isHexDigit(nibbleCharHi) && isHexDigit(nibbleCharLo))) in readHexByte()
H A DHexValues.h13 bool isHexDigit(char c);
H A DHexValues.cpp10 bool isHexDigit(char c) in isHexDigit() function
H A DAESKey.cpp43 if (isHexDigit(c)) in _readFromStream()
H A DStSRecordFile.h103 bool isHexDigit(char c);
/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DElftosbLexer.cpp76 if (isHexDigit(hi) && isHexDigit(lo)) in processStringEscapes()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DEncoding.h89 inline bool isHexDigit(char c) { in isHexDigit() function
109 while (I < Text.size() && isHexDigit(Text[I])) in getEscapeSequenceLength()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Duri.d201 import std.ascii : isHexDigit;
244 if (!isHexDigit(s[k + 1]) || !isHexDigit(s[k + 2]))
278 if (!isHexDigit(s[k + 1]) || !isHexDigit(s[k + 2]))
H A Duuid.d1317 import std.ascii : isHexDigit;
1364 while (!uuidRange.empty && !isHexDigit(uuidRange.front))
1392 else if (!isHexDigit(character))
H A Dconv.d2647 import std.ascii : isDigit, isAlpha, toLower, toUpper, isHexDigit;
2767 alias checkDigit = isHexDigit; in parseDigits()
3682 import std.ascii : isAlpha, isHexDigit; in getHexDigit()
3689 if (!isHexDigit(c)) in getHexDigit()
5679 import std.ascii : isHexDigit;
5700 if (c.isHexDigit)
5823 import std.ascii : isHexDigit;
5831 if (c.isHexDigit)
H A Djson.d706 import std.ascii : isWhite, isDigit, isHexDigit, toUpper, toLower;
814 if (!isHexDigit(hex)) error("Expecting hex character"); in parseWChar()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Duri.d197 import std.ascii : isHexDigit;
227 if (!isHexDigit(s[k + 1]) || !isHexDigit(s[k + 2]))
261 if (!isHexDigit(s[k + 1]) || !isHexDigit(s[k + 2]))
H A Duuid.d1337 import std.ascii : isHexDigit;
1384 while (!uuidRange.empty && !isHexDigit(uuidRange.front))
1412 else if (!isHexDigit(character))
H A Dconv.d3112 import std.ascii : isDigit, isAlpha, toLower, toUpper, isHexDigit;
3270 alias checkDigit = isHexDigit;
4467 import std.ascii : isAlpha, isHexDigit;
4474 if (!isHexDigit(c))
5463 import std.ascii : isHexDigit;
5484 if (c.isHexDigit)
5631 import std.ascii : isHexDigit;
5645 if (c.isHexDigit)
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp116 while (isHexDigit(*CurPtr)) in LexHexFloatLiteral()
276 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
335 while (isHexDigit(*CurPtr)) { in LexDigit()
435 while (isHexDigit(CurPtr[0])) in LexDigit()
521 while (isHexDigit(CurPtr[0])) in LexDigit()
826 if (LexMotorolaIntegers && isHexDigit(*CurPtr)) in LexToken()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DYAML.cpp34 if (!llvm::isHexDigit(Scalar[I])) in input()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DRustDemangle.cpp83 static inline bool isHexDigit(const char C) { in isHexDigit() function
762 if (!isHexDigit(look())) in parseHexNumber()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DLiteralSupport.cpp146 if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) { in ProcessCharEscape()
285 if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) { in ProcessUCNEscape()
788 if (isHexDigit(*s) && *s != 'e' && *s != 'E' && in ParseDecimalOrOctalCommon()
887 if ((c1 == 'x' || c1 == 'X') && (isHexDigit(s[1]) || s[1] == '.')) { in ParseNumberStartingWithZero()
967 } else if (isHexDigit(*s) && in ParseNumberStartingWithZero()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DCharInfo.h123 LLVM_READONLY inline bool isHexDigit(unsigned char c) { in isHexDigit() function
/netbsd-src/external/gpl2/groff/dist/src/preproc/html/
H A Dpushback.cpp231 static int isHexDigit (char ch)
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DLiteralSupport.h145 while (ptr != ThisTokEnd && (isHexDigit(*ptr) || isDigitSeparator(*ptr))) in SkipHexDigits()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp223 while (Length < Code.size() && isHexDigit(Code[Length])) in consumeNumberLiteral()
229 if (c == '-' || c == '+' || c == '.' || isHexDigit(c)) { in consumeNumberLiteral()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringExtras.h91 inline bool isHexDigit(char C) { return hexDigitValue(C) != ~0U; } in isHexDigit() function
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Ddemangle.d142 static bool isHexDigit( char val ) in isHexDigit() function
523 if ( !isHexDigit( front ) )
529 while ( isHexDigit( front ) )
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DCommentLexer.cpp36 return isHexDigit(C); in isHTMLHexCharacterReferenceCharacter()

12