Home
last modified time | relevance | path

Searched refs:ValueStr (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DEnumCastOutOfRangeChecker.cpp88 std::string ValueStr = "", NameStr = "the enum"; in reportWarning() local
94 ValueStr = formatv(" '{0}'", ConcreteValue->getValue()); in reportWarning()
102 ValueStr, NameStr); in reportWarning()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp371 std::optional<StringRef> ValueStr; in parseArg() local
395 if (ValueStr) in parseArg()
400 ValueStr = *MaybeStr; in parseArg()
410 if (!ValueStr) in parseArg()
413 return Argument{*KeyStr, *ValueStr, Loc}; in parseArg()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp135 StringRef ValueStr = StringRef(T.getLiteralData(), T.getLength()); in tryExpandAsInteger() local
138 if (ValueStr.getAsInteger(AutoSenseRadix, IntValue)) in tryExpandAsInteger()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp348 SmallString<32> ValueStr; in printDynamicRelocations() local
350 if (Error E = getELFRelocationValueString(&Obj, Reloc, ValueStr)) in printDynamicRelocations()
353 << left_justify(RelocName, TypePadding) << ' ' << ValueStr << '\n'; in printDynamicRelocations()
H A Dllvm-objdump.cpp2555 SmallString<32> ValueStr; in printRelocations() local
2560 getRelocationValueString(Reloc, SymbolDescription, ValueStr)) in printRelocations()
2564 << left_justify(RelocName, TypePadding) << " " << ValueStr in printRelocations()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp531 StringRef ValueStr; in evalNumberExpr() local
533 std::tie(ValueStr, RemainingExpr) = parseNumberString(Expr); in evalNumberExpr()
535 if (ValueStr.empty() || !isdigit(ValueStr[0])) in evalNumberExpr()
539 ValueStr.getAsInteger(0, Value); in evalNumberExpr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp1018 StringRef ValueStr = DA->getAsString(); in computeAccessKey() local
1021 size_t Separator = ValueStr.find_first_of(':'); in computeAccessKey()
1022 StringRef EnumeratorStr = ValueStr.substr(0, Separator); in computeAccessKey()
1039 StringRef EValueStr = ValueStr.substr(Separator + 1); in computeAccessKey()
/freebsd-14.2/lib/libefivar/
H A Defivar-dp-parse.c1537 CHAR16 *ValueStr; in DevPathFromTextUartFlowCtrl() local
1540 ValueStr = GetNextParamStr (&TextDeviceNode); in DevPathFromTextUartFlowCtrl()
1548 if (StrCmp (ValueStr, "XonXoff") == 0) { in DevPathFromTextUartFlowCtrl()
1550 } else if (StrCmp (ValueStr, "Hardware") == 0) { in DevPathFromTextUartFlowCtrl()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h291 StringRef ValueStr; // String describing what the value of this option is variable
331 void setValueStr(StringRef S) { ValueStr = S; } in setValueStr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp1861 if (O.ValueStr.empty()) in getValueStr()
1863 return O.ValueStr; in getValueStr()