Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp368 Optional<StringRef> ValueStr; in parseArg() local
392 if (ValueStr) in parseArg()
397 ValueStr = *MaybeStr; in parseArg()
407 if (!ValueStr) in parseArg()
410 return Argument{*KeyStr, *ValueStr, Loc}; in parseArg()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp467 StringRef ValueStr; in evalNumberExpr() local
469 std::tie(ValueStr, RemainingExpr) = parseNumberString(Expr); in evalNumberExpr()
471 if (ValueStr.empty() || !isdigit(ValueStr[0])) in evalNumberExpr()
475 ValueStr.getAsInteger(0, Value); in evalNumberExpr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp938 StringRef ValueStr = DA->getAsString(); in computeAccessKey() local
941 size_t Separator = ValueStr.find_first_of(':'); in computeAccessKey()
942 StringRef EnumeratorStr = ValueStr.substr(0, Separator); in computeAccessKey()
959 StringRef EValueStr = ValueStr.substr(Separator + 1); in computeAccessKey()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1676 SmallString<32> ValueStr; in printRelocations() local
1680 if (Error E = getRelocationValueString(Reloc, ValueStr)) in printRelocations()
1684 << left_justify(RelocName, TypePadding) << " " << ValueStr in printRelocations()
1712 SmallString<32> ValueStr; in printDynamicRelocations() local
1714 if (Error E = getRelocationValueString(Reloc, ValueStr)) in printDynamicRelocations()
1717 << ValueStr << "\n"; in printDynamicRelocations()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DCommandLine.h283 StringRef ValueStr; // String describing what the value of this option is variable
329 void setValueStr(StringRef S) { ValueStr = S; } in setValueStr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DCommandLine.cpp1713 if (O.ValueStr.empty()) in getValueStr()
1715 return O.ValueStr; in getValueStr()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c719 value ValueStr = caml_copy_string(ValueCStr); in llvm_string_of_llvalue() local
722 return ValueStr; in llvm_string_of_llvalue()