Home
last modified time | relevance | path

Searched refs:isAlnum (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DUnicodeNameToCodepoint.cpp148 (*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 DYAMLParser.cpp1007 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 DMCAsmInfoXCOFF.cpp70 return isAlnum(C) || C == '_' || C == '.'; in isAcceptableChar()
H A DMCAsmInfo.cpp105 return isAlnum(C) || C == '_' || C == '$' || C == '.'; in isAcceptableChar()
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAssignValidGlobalNames.cpp79 if (isAlnum(C) || C == '_' || C == '$') { in cleanUpName()
/freebsd/contrib/llvm-project/lld/Common/
H A DStrings.cpp68 llvm::all_of(s, [](char c) { return isAlnum(c) || c == '_'; }); in isValidCIdentifier()
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitCodes.h82 static bool isChar6(char C) { return isAlnum(C) || C == '.' || C == '_'; } in isChar6()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DAsmWriterInst.cpp21 static bool isIdentChar(char C) { return isAlnum(C) || C == '_'; } in isIdentChar()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp128 return isAlnum(C) || C == '.' || C == '$' || C == '_';
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp85 (I + Tool.size() == Stem.size() || !isAlnum(Stem[I + Tool.size()])); in getDriverConfig()
/freebsd/contrib/llvm-project/llvm/lib/Testing/Annotations/
H A DAnnotations.cpp65 Text.take_while([](char C) { return llvm::isAlnum(C) || C == '_'; }); in Annotations()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionImportUtils.cpp115 [&](char ch) { return !isAlnum(ch); }, '_'); in getPromotedName()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DMangler.cpp197 return isAlnum(C) || C == '_' || C == '@' || C == '#'; in canBeUnquotedInDirective()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSarif.cpp60 if (llvm::isAlnum(C) || StringRef("-._~:@!$&'()*+,;=").contains(C)) in percentEncodeURICharacter()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h121 inline bool isAlnum(char C) { return isAlpha(C) || isDigit(C); } in isAlnum() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp39 if (isAlnum(C) || C == '_' || C == '.') in allowPromotionAlias()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp149 return isAlnum(C) || C == '_' || C == '$' || C == '.' || C == '?' || in isIdentifierChar()
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp240 if (llvm::isAlnum(Name[I])) in getSimpleMacroName()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp750 while (I != End && (isAlnum(*I) || *I == '_')) in parseName()
H A DAsmMatcherEmitter.cpp1160 if (isAlnum(C)) in getEnumNameForToken()
/freebsd/contrib/llvm-project/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp1527 (I + Tool.size() == Stem.size() || !isAlnum(Stem[I + Tool.size()])); in llvm_ar_main()
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp311 if (Str[I] != '_' && !isAlnum(Str[I])) in parseVariable()
1471 return (isAlnum(c) || c == '-' || c == '_'); in IsPartOfWord()
/freebsd/contrib/llvm-project/lld/ELF/
H A DScriptParser.cpp1418 return isAlnum(c) || c == '$' || c == '.' || c == '_'; in isValidSymbolName()
H A DInputFiles.cpp1834 if (!isAlnum(c)) in parse()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp1219 if (Text.empty() || isLower(Text[0]) || !isAlnum(Text[0])) in isExemptAtStart()

12