Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DEncoding.h88 inline bool isHexDigit(char c) { in isHexDigit() function
108 while (I < Text.size() && isHexDigit(Text[I])) in getEscapeSequenceLength()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp116 while (isHexDigit(*CurPtr)) in LexHexFloatLiteral()
277 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
336 while (isHexDigit(*CurPtr)) { in LexDigit()
436 while (isHexDigit(CurPtr[0])) in LexDigit()
522 while (isHexDigit(CurPtr[0])) in LexDigit()
828 if (LexMotorolaIntegers && isHexDigit(*CurPtr)) in LexToken()
H A DAsmParser.cpp3054 if (i + 1 >= length || !isHexDigit(Str[i + 1])) in parseEscapedString()
3060 while (i + 1 < length && isHexDigit(Str[i + 1])) in parseEscapedString()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DYAML.cpp33 if (!llvm::all_of(Scalar, llvm::isHexDigit)) in input()
H A DMinidumpYAML.cpp185 if (!all_of(Scalar, isHexDigit)) in input()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCharInfo.h144 LLVM_READONLY inline bool isHexDigit(unsigned char c) { in isHexDigit() function
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DLiteralSupport.h161 while (ptr != ThisTokEnd && (isHexDigit(*ptr) || isDigitSeparator(*ptr))) in SkipHexDigits()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp197 } else if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) { in ProcessCharEscape()
473 } else if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) { in ProcessNumericUCNEscape()
1221 if (isHexDigit(*s) && *s != 'e' && *s != 'E' && in ParseDecimalOrOctalCommon()
1322 if ((c1 == 'x' || c1 == 'X') && (isHexDigit(s[1]) || s[1] == '.')) { in ParseNumberStartingWithZero()
1408 } else if (isHexDigit(*s) && in ParseNumberStartingWithZero()
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp172 static inline bool isHexDigit(const char C) { in isHexDigit() function
971 if (!isHexDigit(look())) in parseHexNumber()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h108 inline bool isHexDigit(char C) { return hexDigitValue(C) != ~0U; } in isHexDigit() function
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DAIX.cpp175 BuildId.find_if_not(llvm::isHexDigit, 2) != StringRef::npos) in ConstructJob()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentLexer.cpp36 return isHexDigit(C); in isHTMLHexCharacterReferenceCharacter()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.cpp113 if (!all_of(str, llvm::isHexDigit)) in parseModuleId()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp1384 CheckDI(Checksum->Value.find_if_not(llvm::isHexDigit) == StringRef::npos, in visitDIFile()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp5369 } else if (!isHexDigit(StrRef[i])) { in handleUuidAttr()