Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/runtime/
H A Dcommand.cpp71 const char *rawValue, std::int64_t rawValueLength, const Descriptor *errmsg, in CopyToDescriptor() argument
80 std::memcpy(value.OffsetElement(offset), rawValue, toCopy); in CopyToDescriptor()
90 const char *rawValue, const Descriptor *errmsg, std::size_t &offset) { in CheckAndCopyToDescriptor() argument
93 std::int64_t len{StringLength(rawValue)}; in CheckAndCopyToDescriptor()
103 stat = CopyToDescriptor(*value, rawValue, len, errmsg, offset); in CheckAndCopyToDescriptor()
243 const char *rawValue{GetEnvVariableValue(name, trim_name, sourceFile, line)}; in RTNAME() local
244 if (!rawValue) { in RTNAME()
249 return CopyToDescriptor(*value, rawValue, StringLength(rawValue), errmsg); in RTNAME()
/llvm-project-15.0.7/llvm/include/llvm/Bitcode/
H A DBitcodeConvenience.h51 template <typename T> static T convert(T rawValue) { return rawValue; } in convert() argument
131 template <typename T> char convert(T rawValue) { in convert() argument
132 return static_cast<char>(rawValue); in convert()
/llvm-project-15.0.7/llvm/include/llvm/TextAPI/
H A DPackedVersion.h54 uint32_t rawValue() const { return Version; } in rawValue() function
H A DArchitectureSet.h63 ArchSetType rawValue() const { return ArchSet; } in rawValue() function
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DJSON.h993 void rawValue(llvm::function_ref<void(raw_ostream &)> Contents) { in rawValue() function
998 void rawValue(llvm::StringRef Contents) { in rawValue() function
999 rawValue([&](raw_ostream &OS) { OS << Contents; }); in rawValue()
/llvm-project-15.0.7/llvm/lib/Support/
H A DJSON.cpp261 JOS.rawValue(V.getAsArray()->empty() ? "[]" : "[ ... ]"); in abbreviate()
264 JOS.rawValue(V.getAsObject()->empty() ? "{}" : "{ ... }"); in abbreviate()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DJSONTest.cpp559 J.rawValue([](raw_ostream &OS) { OS << "'unverified\nraw value'"; }); in TEST()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DMachO.h336 uint64_t rawValue() const { return RawValue; } in rawValue() function
/llvm-project-15.0.7/lld/MachO/
H A DInputFiles.cpp1902 compatibilityVersion = interface.getCompatibilityVersion().rawValue(); in DylibFile()
1903 currentVersion = interface.getCurrentVersion().rawValue(); in DylibFile()
H A DDriver.cpp853 return version.rawValue(); in parseDylibVersion()