Home
last modified time | relevance | path

Searched defs:ObjectKey (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DJSON.h84 class ObjectKey; variable
494 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {} in ObjectKey() function
495 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { in ObjectKey() function
502 ObjectKey(llvm::StringRef S) : Data(S) { in ObjectKey() function
508 ObjectKey(const llvm::SmallVectorImpl<char> &V) in ObjectKey() function
510 ObjectKey(const llvm::formatv_object_base &V) : ObjectKey(V.str()) {} in ObjectKey() function
512 ObjectKey(const ObjectKey &C) { *this = C; } in ObjectKey() function
513 ObjectKey(ObjectKey &&C) : ObjectKey(static_cast<const ObjectKey &&>(C)) {} in ObjectKey() function
/external/llvm-project/llvm/include/llvm/Support/
DJSON.h84 class ObjectKey; variable
497 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {} in ObjectKey() function
498 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { in ObjectKey() function
505 ObjectKey(llvm::StringRef S) : Data(S) { in ObjectKey() function
511 ObjectKey(const llvm::SmallVectorImpl<char> &V) in ObjectKey() function
513 ObjectKey(const llvm::formatv_object_base &V) : ObjectKey(V.str()) {} in ObjectKey() function
515 ObjectKey(const ObjectKey &C) { *this = C; } in ObjectKey() function
516 ObjectKey(ObjectKey &&C) : ObjectKey(static_cast<const ObjectKey &&>(C)) {} in ObjectKey() function
/external/rust/crates/grpcio-sys/grpc/src/core/lib/json/
Djson_writer.cc259 void JsonWriter::ObjectKey(const std::string& string) { in ObjectKey() function in grpc_core::__anon206dd4880111::JsonWriter