Searched refs:ObjectKey (Results 1 – 2 of 2) sorted by relevance
82 class ObjectKey; variable89 using Storage = DenseMap<ObjectKey, Value, llvm::DenseMapInfo<StringRef>>;93 using key_type = ObjectKey;116 std::pair<iterator, bool> try_emplace(const ObjectKey &K, Ts &&... Args) { in try_emplace()120 std::pair<iterator, bool> try_emplace(ObjectKey &&K, Ts &&... Args) { in try_emplace()127 Value &operator[](const ObjectKey &K);128 Value &operator[](ObjectKey &&K);487 class ObjectKey {489 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {}490 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) {[all …]
18 Value &Object::operator[](const ObjectKey &K) { in operator []()21 Value &Object::operator[](ObjectKey &&K) { in operator []()