Searched refs:isHexDigit (Results 1 - 25 of 29) sorted by relevance

12

/netbsd-current/external/bsd/elftosb/dist/common/
H A DHexValues.h13 bool isHexDigit(char c);
H A DHexValues.cpp10 bool isHexDigit(char c) function
H A DAESKey.cpp43 if (isHexDigit(c))
H A DStSRecordFile.cpp87 bool StSRecordFile::isHexDigit(char c) function in class:StSRecordFile
113 if (!(isHexDigit(nibbleCharHi) && isHexDigit(nibbleCharLo)))
H A DStSRecordFile.h103 bool isHexDigit(char c);
/netbsd-current/external/bsd/elftosb/dist/elftosb2/
H A DElftosbLexer.cpp76 if (isHexDigit(hi) && isHexDigit(lo))
/netbsd-current/external/apache2/llvm/dist/clang/lib/Format/
H A DEncoding.h89 inline bool isHexDigit(char c) { function in namespace:clang::format::encoding
109 while (I < Text.size() && isHexDigit(Text[I]))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DYAML.cpp34 if (!llvm::isHexDigit(Scalar[I]))
H A DMinidumpYAML.cpp185 if (!all_of(Scalar, isHexDigit))
/netbsd-current/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;
3682 import std.ascii : isAlpha, isHexDigit;
3689 if (!isHexDigit(c))
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");
/netbsd-current/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-current/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp116 while (isHexDigit(*CurPtr))
276 if (LexHex && isHexDigit(*LookAhead))
335 while (isHexDigit(*CurPtr)) {
435 while (isHexDigit(CurPtr[0]))
521 while (isHexDigit(CurPtr[0]))
826 if (LexMotorolaIntegers && isHexDigit(*CurPtr))
/netbsd-current/external/gpl2/groff/dist/src/preproc/html/
H A Dpushback.cpp227 * isHexDigit - returns TRUE if the character, ch, is a hex digit.
231 static int isHexDigit (char ch)
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DCharInfo.h123 LLVM_READONLY inline bool isHexDigit(unsigned char c) { function in namespace:clang
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DCommentLexer.cpp36 return isHexDigit(C);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DRustDemangle.cpp83 static inline bool isHexDigit(const char C) { function
762 if (!isHexDigit(look()))
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DLiteralSupport.h145 while (ptr != ThisTokEnd && (isHexDigit(*ptr) || isDigitSeparator(*ptr)))
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DLiteralSupport.cpp146 if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) {
285 if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) {
788 if (isHexDigit(*s) && *s != 'e' && *s != 'E' &&
887 if ((c1 == 'x' || c1 == 'X') && (isHexDigit(s[1]) || s[1] == '.')) {
967 } else if (isHexDigit(*s) &&
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringExtras.h91 inline bool isHexDigit(char C) { return hexDigitValue(C) != ~0U; } function in namespace:llvm
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Ddemangle.d142 static bool isHexDigit( char val )
523 if ( !isHexDigit( front ) )
529 while ( isHexDigit( front ) )

Completed in 314 milliseconds

12