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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h492 class ObjectKey { class in namespace:llvm::json
494 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {} function in class:llvm::json::ObjectKey
495 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { function in class:llvm::json::ObjectKey
502 ObjectKey(llvm::StringRef S) : Data(S) { function in class:llvm::json::ObjectKey
508 ObjectKey(const llvm::SmallVectorImpl<char> &V) function in class:llvm::json::ObjectKey
510 ObjectKey(const llvm::formatv_object_base &V) : ObjectKey(V.str()) {} function in class:llvm::json::ObjectKey
512 ObjectKey(const ObjectKey &C) { *this = C; } function in class:llvm::json::ObjectKey
513 ObjectKey(ObjectKey &&C) : ObjectKey(static_cast<const ObjectKey &&>(C)) {} function in class:llvm::json::ObjectKey
[all...]

Completed in 108 milliseconds