Home
last modified time | relevance | path

Searched refs:rawValue (Results 1 – 16 of 16) sorted by relevance

/llvm-project/flang/runtime/
H A Dcommand.cpp63 const char *rawValue, const Descriptor *errmsg, std::size_t &offset) { in FillWithSpaces()
66 std::int64_t len{StringLength(rawValue)}; in CheckAndCopyCharsToDescriptor()
76 stat = CopyCharsToDescriptor(*value, rawValue, len, errmsg, offset); in CheckAndCopyCharsToDescriptor()
223 const char *rawValue{nullptr}; in RTNAME()
227 rawValue = executionEnvironment.GetEnv( in RTNAME() local
230 if (!rawValue) { in RTNAME()
234 std::int64_t varLen{StringLength(rawValue)}; in RTNAME()
240 return CopyCharsToDescriptor(*value, rawValue, varLen, errmsg); in RTNAME()
67 CheckAndCopyCharsToDescriptor(const Descriptor * value,const char * rawValue,const Descriptor * errmsg,std::size_t & offset) CheckAndCopyCharsToDescriptor() argument
H A Dexecute.cpp50 void CopyCharsToDescriptor(const Descriptor &value, const char *rawValue) { in CopyCharsToDescriptor() argument
51 CopyCharsToDescriptor(value, rawValue, std::strlen(rawValue)); in CopyCharsToDescriptor()
55 const Descriptor *value, const char *rawValue) { in CheckAndCopyCharsToDescriptor() argument
57 CopyCharsToDescriptor(*value, rawValue); in CheckAndCopyCharsToDescriptor()
H A Dtools.cpp203 const char *rawValue, std::size_t rawValueLength, const Descriptor *errmsg, in CopyCharsToDescriptor() argument
212 std::memcpy(value.OffsetElement(offset), rawValue, toCopy); in CopyCharsToDescriptor()
H A Dtools.h535 // Copy a null-terminated character array \p rawValue to descriptor \p value.
540 const char *rawValue, std::size_t rawValueLength,
/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeConvenience.h52 template <typename T> static T convert(T rawValue) { return rawValue; } in convert() argument
132 template <typename T> char convert(T rawValue) { in convert() argument
133 return static_cast<char>(rawValue); in convert()
/llvm-project/llvm/include/llvm/TextAPI/
H A DPackedVersion.h65 uint32_t rawValue() const { return Version; } in rawValue() function
H A DArchitectureSet.h68 ArchSetType rawValue() const { return ArchSet; } in rawValue() function
/llvm-project/clang/test/Analysis/Checkers/WebKit/
H A Duncounted-obj-arg.cpp99 static constexpr OptionSet fromRaw(StorageType rawValue) { in fromRaw()
100 return OptionSet(static_cast<E>(rawValue), FromRawValue); in fromRaw()
98 fromRaw(StorageType rawValue) fromRaw() argument
/llvm-project/mlir/include/mlir/Bindings/Python/
H A DPybindAdaptors.h589 MlirValue rawValue = py::cast<MlirValue>(otherValue);
590 if (!isaFunction(rawValue)) {
/llvm-project/llvm/include/llvm/Support/
H A DJSON.h1017 void rawValue(llvm::function_ref<void(raw_ostream &)> Contents) { in rawValue() function
1022 void rawValue(llvm::StringRef Contents) { in rawValue() function
1023 rawValue([&](raw_ostream &OS) { OS << Contents; }); in rawValue()
/llvm-project/llvm/lib/Support/
H A DJSON.cpp262 JOS.rawValue(V.getAsArray()->empty() ? "[]" : "[ ... ]"); in abbreviate()
265 JOS.rawValue(V.getAsObject()->empty() ? "{}" : "{ ... }"); in abbreviate()
/llvm-project/llvm/unittests/Support/
H A DJSONTest.cpp596 J.rawValue([](raw_ostream &OS) { OS << "'unverified\nraw value'"; }); in TEST()
/llvm-project/llvm/include/llvm/Object/
H A DMachO.h351 uint64_t rawValue() const { return RawValue; } in rawValue() function
/llvm-project/lld/MachO/
H A DInputFiles.cpp1880 compatibilityVersion = interface.getCompatibilityVersion().rawValue(); in DylibFile()
1881 currentVersion = interface.getCurrentVersion().rawValue(); in DylibFile()
H A DDriver.cpp972 return version.rawValue(); in parseSectAlign()
/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1384 << format_hex(Entry.rawValue(), PointerWidth, true) << ' '; in PrintDyldInfo()