/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | UnicodeNameToCodepoint.cpp | 148 (*It == '-' && isAlnum(PreviousChar) && in startsWith() 149 ((Next != End && isAlnum(*Next)) || (Next == End && IsPrefix))); in startsWith() 467 if (isAlnum(C)) in nearestMatchesForCodepointName() 502 if (!isAlnum(N.Name[J])) in nearestMatchesForCodepointName()
|
H A D | YAMLParser.cpp | 1007 static bool is_ns_hex_digit(const char C) { return isAlnum(C); } in scan_ns_uri_char()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCAsmInfoXCOFF.cpp | 70 return isAlnum(C) || C == '_' || C == '.'; in isAcceptableChar()
|
H A D | MCAsmInfo.cpp | 105 return isAlnum(C) || C == '_' || C == '$' || C == '.'; in isAcceptableChar()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXAssignValidGlobalNames.cpp | 79 if (isAlnum(C) || C == '_' || C == '$') { in cleanUpName()
|
/freebsd/contrib/llvm-project/lld/Common/ |
H A D | Strings.cpp | 68 llvm::all_of(s, [](char c) { return isAlnum(c) || c == '_'; }); in isValidCIdentifier()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/ |
H A D | BitCodes.h | 82 static bool isChar6(char C) { return isAlnum(C) || C == '.' || C == '_'; } in isChar6()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | AsmWriterInst.cpp | 21 static bool isIdentChar(char C) { return isAlnum(C) || C == '_'; } in isIdentChar()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxfilt/ |
H A D | llvm-cxxfilt.cpp | 128 return isAlnum(C) || C == '.' || C == '$' || C == '_';
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
H A D | llvm-objcopy.cpp | 85 (I + Tool.size() == Stem.size() || !isAlnum(Stem[I + Tool.size()])); in getDriverConfig()
|
/freebsd/contrib/llvm-project/llvm/lib/Testing/Annotations/ |
H A D | Annotations.cpp | 65 Text.take_while([](char C) { return llvm::isAlnum(C) || C == '_'; }); in Annotations()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | FunctionImportUtils.cpp | 115 [&](char ch) { return !isAlnum(ch); }, '_'); in getPromotedName()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Mangler.cpp | 197 return isAlnum(C) || C == '_' || C == '@' || C == '#'; in canBeUnquotedInDirective()
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | Sarif.cpp | 60 if (llvm::isAlnum(C) || StringRef("-._~:@!$&'()*+,;=").contains(C)) in percentEncodeURICharacter()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 121 inline bool isAlnum(char C) { return isAlpha(C) || isDigit(C); } in isAlnum() function
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | ThinLTOBitcodeWriter.cpp | 39 if (isAlnum(C) || C == '_' || C == '.') in allowPromotionAlias()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
H A D | AsmLexer.cpp | 149 return isAlnum(C) || C == '_' || C == '$' || C == '.' || C == '?' || in isIdentifierChar()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
H A D | DependencyScanningWorker.cpp | 240 if (llvm::isAlnum(Name[I])) in getSimpleMacroName()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | AsmWriterEmitter.cpp | 750 while (I != End && (isAlnum(*I) || *I == '_')) in parseName()
|
H A D | AsmMatcherEmitter.cpp | 1160 if (isAlnum(C)) in getEnumNameForToken()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-ar/ |
H A D | llvm-ar.cpp | 1527 (I + Tool.size() == Stem.size() || !isAlnum(Stem[I + Tool.size()])); in llvm_ar_main()
|
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/ |
H A D | FileCheck.cpp | 311 if (Str[I] != '_' && !isAlnum(Str[I])) in parseVariable() 1471 return (isAlnum(c) || c == '-' || c == '_'); in IsPartOfWord()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | ScriptParser.cpp | 1418 return isAlnum(c) || c == '$' || c == '.' || c == '_'; in isValidSymbolName()
|
H A D | InputFiles.cpp | 1834 if (!isAlnum(c)) in parse()
|
/freebsd/contrib/llvm-project/clang/utils/TableGen/ |
H A D | ClangDiagnosticsEmitter.cpp | 1219 if (Text.empty() || isLower(Text[0]) || !isAlnum(Text[0])) in isExemptAtStart()
|