Home
last modified time | relevance | path

Searched refs:ObjectKey (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DJSON.h82 class ObjectKey; variable
89 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 …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DJSON.cpp18 Value &Object::operator[](const ObjectKey &K) { in operator []()
21 Value &Object::operator[](ObjectKey &&K) { in operator []()