Searched refs:ValueStr (Results 1 – 10 of 10) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | EnumCastOutOfRangeChecker.cpp | 88 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 D | YAMLRemarkParser.cpp | 371 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 D | CheckerHelpers.cpp | 135 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 D | ELFDump.cpp | 348 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 D | llvm-objdump.cpp | 2555 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 D | RuntimeDyldChecker.cpp | 531 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 D | BPFAbstractMemberAccess.cpp | 1018 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 D | efivar-dp-parse.c | 1537 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 D | CommandLine.h | 291 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 D | CommandLine.cpp | 1861 if (O.ValueStr.empty()) in getValueStr() 1863 return O.ValueStr; in getValueStr()
|