Searched defs:ObjectKey (Results 1 – 3 of 3) sorted by relevance
84 class ObjectKey; variable528 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {} in ObjectKey() function529 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { in ObjectKey() function536 ObjectKey(llvm::StringRef S) : Data(S) { in ObjectKey() function542 ObjectKey(const llvm::SmallVectorImpl<char> &V) in ObjectKey() function544 ObjectKey(const llvm::formatv_object_base &V) : ObjectKey(V.str()) {} in ObjectKey() function546 ObjectKey(const ObjectKey &C) { *this = C; } in ObjectKey() function547 ObjectKey(ObjectKey &&C) : ObjectKey(static_cast<const ObjectKey &&>(C)) {} in ObjectKey() function
295 trait ObjectKey { interface342 impl<'a, O: ObjectKey> ObjectKey for &'a O { impl389 K: ObjectKey, in print_object()
259 void JsonWriter::ObjectKey(const std::string& string) { in ObjectKey() function in grpc_core::__anonad2014e60111::JsonWriter