HomeSort by: relevance | last modified time | path
    Searched refs:isHexDigit (Results 1 - 25 of 25) sorted by relevancy

  /src/external/bsd/elftosb/dist/common/
HexValues.h 13 bool isHexDigit(char c);
HexValues.cpp 10 bool isHexDigit(char c)
AESKey.cpp 43 if (isHexDigit(c))
StSRecordFile.cpp 87 bool StSRecordFile::isHexDigit(char c)
113 if (!(isHexDigit(nibbleCharHi) && isHexDigit(nibbleCharLo)))
StSRecordFile.h 103 bool isHexDigit(char c);
  /src/external/bsd/elftosb/dist/elftosb2/
ElftosbLexer.cpp 76 if (isHexDigit(hi) && isHexDigit(lo))
  /src/external/apache2/llvm/dist/clang/lib/Format/
Encoding.h 89 inline bool isHexDigit(char c) {
109 while (I < Text.size() && isHexDigit(Text[I]))
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
YAML.cpp 34 if (!llvm::isHexDigit(Scalar[I]))
MinidumpYAML.cpp 185 if (!all_of(Scalar, isHexDigit))
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
uri.d 197 import std.ascii : isHexDigit;
227 if (!isHexDigit(s[k + 1]) || !isHexDigit(s[k + 2]))
261 if (!isHexDigit(s[k + 1]) || !isHexDigit(s[k + 2]))
uuid.d 1337 import std.ascii : isHexDigit;
1384 while (!uuidRange.empty && !isHexDigit(uuidRange.front))
1412 else if (!isHexDigit(character))
conv.d 3112 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)
json.d 934 import std.ascii : isDigit, isHexDigit, toUpper, toLower;
1080 if (!isHexDigit(hex)) error("Expecting hex character");
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmLexer.cpp 116 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))
AsmParser.cpp 3018 if (i + 1 >= length || !isHexDigit(Str[i + 1]))
3024 while (i + 1 < length && isHexDigit(Str[i + 1]))
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
CharInfo.h 123 LLVM_READONLY inline bool isHexDigit(unsigned char c) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentLexer.cpp 36 return isHexDigit(C);
  /src/external/gpl2/groff/dist/src/preproc/html/
pushback.cpp 227 * isHexDigit - returns TRUE if the character, ch, is a hex digit.
231 static int isHexDigit (char ch)
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
RustDemangle.cpp 83 static inline bool isHexDigit(const char C) {
762 if (!isHexDigit(look()))
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
LiteralSupport.h 145 while (ptr != ThisTokEnd && (isHexDigit(*ptr) || isDigitSeparator(*ptr)))
  /src/external/apache2/llvm/dist/clang/lib/Lex/
LiteralSupport.cpp 146 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) &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringExtras.h 91 inline bool isHexDigit(char C) { return hexDigitValue(C) != ~0U; }
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
demangle.d 142 static bool isHexDigit( char val )
523 if ( !isHexDigit( front ) )
529 while ( isHexDigit( front ) )
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 1175 AssertDI(Checksum->Value.find_if_not(llvm::isHexDigit) == StringRef::npos,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp 6358 } else if (!isHexDigit(StrRef[i])) {

Completed in 56 milliseconds