Home
last modified time | relevance | path

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

/freebsd-src/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-src/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-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp136 StringRef ValueStr = StringRef(T.getLiteralData(), T.getLength()); in tryExpandAsInteger()
139 if (ValueStr.getAsInteger(AutoSenseRadix, IntValue)) in tryExpandAsInteger()
135 StringRef ValueStr = StringRef(T.getLiteralData(), T.getLength()); tryExpandAsInteger() local
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp353 SmallString<32> ValueStr; in printDynamicRelocations()
355 if (Error E = getELFRelocationValueString(&Obj, Reloc, ValueStr)) in printDynamicRelocations()
358 << left_justify(RelocName, TypePadding) << ' ' << ValueStr << '\n'; in printSymbolVersionDependency()
348 SmallString<32> ValueStr; printDynamicRelocations() local
H A Dllvm-objdump.cpp2703 SmallString<32> ValueStr; in printSymbolTable()
2708 getRelocationValueString(Reloc, SymbolDescription, ValueStr)) in printSymbolTable()
2712 << left_justify(RelocName, TypePadding) << " " << ValueStr in printSymbolTable()
2555 SmallString<32> ValueStr; printRelocations() local
/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp537 StringRef ValueStr; in evalNumberExpr()
539 std::tie(ValueStr, RemainingExpr) = parseNumberString(Expr); in evalNumberExpr()
541 if (ValueStr.empty() || !isdigit(ValueStr[0])) in evalNumberExpr()
545 ValueStr.getAsInteger(0, Value);
531 StringRef ValueStr; evalNumberExpr() local
/freebsd-src/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp1019 StringRef ValueStr = DA->getAsString(); in computeAccessKey()
1021 // ValueStr format: <EnumeratorStr>:<Value> in computeAccessKey()
1022 size_t Separator = ValueStr.find_first_of(':'); in computeAccessKey()
1023 StringRef EnumeratorStr = ValueStr.substr(0, Separator); in computeAccessKey()
1040 StringRef EValueStr = ValueStr.substr(Separator + 1); in computeAccessKey()
1018 StringRef ValueStr = DA->getAsString(); computeAccessKey() local
/freebsd-src/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-src/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h284 StringRef ValueStr; // String describing what the value of this option is
324 void setValueStr(StringRef S) { ValueStr = S; } in isConsumeAfter()
291 StringRef ValueStr; // String describing what the value of this option is global() variable
/freebsd-src/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp1859 if (O.ValueStr.empty())
1861 return O.ValueStr; in getValueStr()