Home
last modified time | relevance | path

Searched refs:compare_insensitive (Results 1 – 21 of 21) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DUsingDeclarationsSorter.cpp52 return NamesA[I].compare_insensitive(NamesB[I]); in compareLabelsLexicographicNumeric()
61 int C = NamesA[I].compare_insensitive(NamesB[I]); in compareLabelsLexicographicNumeric()
77 int C = NamesA[I].compare_insensitive(NamesB[I]); in compareLabelsLexicographic()
H A DSortJavaScriptImports.cpp121 if (int Res = LHS.URL.compare_insensitive(RHS.URL)) in operator <()
339 return LHS.Symbol.compare_insensitive(RHS.Symbol) < 0; in appendReference()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallString.h105 [[nodiscard]] int compare_insensitive(StringRef RHS) const { in compare_insensitive() function
106 return str().compare_insensitive(RHS); in compare_insensitive()
H A DStringRef.h171 return Length == RHS.Length && compare_insensitive(RHS) == 0; in equals_insensitive()
189 [[nodiscard]] int compare_insensitive(StringRef RHS) const;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbFPOProgramToDWARFExpression.cpp44 return reg_name.compare_insensitive(register_entry.Name) == 0; in ResolveLLDBRegisterNum()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DLeonPasses.cpp92 if (FuncName.compare_insensitive("fesetround") == 0) { in runOnMachineFunction()
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DDarwinSDKInfo.cpp93 if (Pair.first.compare_insensitive("ios") == 0) { in parseDarwinSDKSettingsJSON()
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DConstString.cpp272 return lhs_string_ref.compare_insensitive(rhs_string_ref); in Compare()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp510 if (Option.compare_insensitive("endloop01") == 0) { in matchBundleOptions()
513 } else if (Option.compare_insensitive("endloop0") == 0) { in matchBundleOptions()
515 } else if (Option.compare_insensitive("endloop1") == 0) { in matchBundleOptions()
517 } else if (Option.compare_insensitive("mem_noshuf") == 0) { in matchBundleOptions()
522 } else if (Option.compare_insensitive("mem_no_order") == 0) { in matchBundleOptions()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp429 if (S.compare_insensitive("infinity") == 0) { in parseSpecialFloatMaybe()
431 } else if (S.compare_insensitive("nan") == 0) { in parseSpecialFloatMaybe()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DStringRef.cpp37 int StringRef::compare_insensitive(StringRef RHS) const { in compare_insensitive() function in StringRef
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp168 return S1.compare_insensitive(S2.data()); in gsiRecordCmp()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp869 int cmp = XStr.compare_insensitive(YStr); in operator <()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp41 if (int Res = A.substr(0, MinSize).compare_insensitive(B.substr(0, MinSize))) in StrCmpOptionNameIgnoreCase()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp1907 if (Identifier.compare_insensitive("inf") == 0) { in parseFPImm()
1911 } else if (Identifier.compare_insensitive("nan") == 0) { in parseFPImm()
1915 } else if (Identifier.compare_insensitive("min") == 0) { in parseFPImm()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3271 if (!IDVal.compare_insensitive("infinity") || in parseRealValue()
3272 !IDVal.compare_insensitive("inf")) in parseRealValue()
3274 else if (!IDVal.compare_insensitive("nan")) in parseRealValue()
H A DMasmParser.cpp4572 if (StructInProgress.back().Name.compare_insensitive(Name)) in parseDirectiveEnds()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1599 Tok.getString().compare_insensitive("plt") == 0)) in ParseOperand()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp2244 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp618 if (int Cmp = Mnemonic.compare_insensitive(RHS.Mnemonic)) in operator <()
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp2095 if (int X = A.compare_insensitive(B)) in HandleAutocompletions()