Home
last modified time | relevance | path

Searched refs:RemoveKey (Results 1 – 25 of 34) sorted by relevance

12

/external/google-breakpad/src/common/
Dsimple_string_dictionary_unittest.cc60 map.RemoveKey("key1"); in TEST()
83 dict.RemoveKey("key3"); in TEST()
100 map.RemoveKey("two"); in TEST()
122 map.RemoveKey("one"); in TEST()
161 dict->RemoveKey("key7"); in TEST()
162 dict->RemoveKey("key18"); in TEST()
163 dict->RemoveKey("key23"); in TEST()
164 dict->RemoveKey("key31"); in TEST()
242 map.RemoveKey("mike"); in TEST()
251 map.RemoveKey("mark"); in TEST()
[all …]
Dlong_string_dictionary_unittest.cc60 dict.RemoveKey("key3"); in TEST()
105 dict->RemoveKey("key7"); in TEST()
106 dict->RemoveKey("key18"); in TEST()
107 dict->RemoveKey("key23"); in TEST()
108 dict->RemoveKey("key31"); in TEST()
184 dict.RemoveKey("mike"); in TEST()
193 dict.RemoveKey("mark"); in TEST()
213 dict.RemoveKey("rob"); in TEST()
241 dict.RemoveKey("rob"); in TEST()
270 dict.RemoveKey("rob"); in TEST()
Dlong_string_dictionary.cc64 RemoveKey(key); in SetKeyValue()
114 bool LongStringDictionary::RemoveKey(const char* key) { in RemoveKey() function in google_breakpad::LongStringDictionary
119 if (SimpleStringDictionary::RemoveKey(key)) { in RemoveKey()
132 if (!SimpleStringDictionary::RemoveKey(segment_key)) { in RemoveKey()
Dlong_string_dictionary.h73 bool RemoveKey(const char* key);
Dsimple_string_dictionary.h162 RemoveKey(key); in SetKeyValue()
229 bool RemoveKey(const char* key) { in RemoveKey() function
/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/avl/
Davl.h40 return AVL(RemoveKey(root_, key)); in Remove()
292 static NodePtr RemoveKey(const NodePtr& node, const SomethingLikeK& key) { in RemoveKey() function
298 RemoveKey(node->left, key), node->right); in RemoveKey()
301 RemoveKey(node->right, key)); in RemoveKey()
310 RemoveKey(node->right, h->kv.first)); in RemoveKey()
314 RemoveKey(node->left, h->kv.first), node->right); in RemoveKey()
327 AVL Remove(const K& key) const { return AVL(RemoveKey(root_, key)); } in Remove()
460 static NodePtr RemoveKey(const NodePtr& node, const K& key) { in RemoveKey() function
465 return Rebalance(node->key, RemoveKey(node->left, key), node->right); in RemoveKey()
467 return Rebalance(node->key, node->left, RemoveKey(node->right, key)); in RemoveKey()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DStringMap.cpp176 void StringMapImpl::RemoveKey(StringMapEntryBase *V) { in RemoveKey() function in StringMapImpl
178 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); in RemoveKey()
185 StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) { in RemoveKey() function in StringMapImpl
/external/llvm/lib/Support/
DStringMap.cpp172 void StringMapImpl::RemoveKey(StringMapEntryBase *V) { in RemoveKey() function in StringMapImpl
174 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); in RemoveKey()
181 StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) { in RemoveKey() function in StringMapImpl
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DStringMap.cpp172 void StringMapImpl::RemoveKey(StringMapEntryBase *V) { in RemoveKey() function in StringMapImpl
174 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); in RemoveKey()
181 StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) { in RemoveKey() function in StringMapImpl
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
DStringMap.cpp181 void StringMapImpl::RemoveKey(StringMapEntryBase *V) { in RemoveKey() function in StringMapImpl
183 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); in RemoveKey()
190 StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) { in RemoveKey() function in StringMapImpl
/external/grpc-grpc/src/core/lib/avl/
Davl.h42 return AVL(RemoveKey(root_, key)); in Remove()
294 static NodePtr RemoveKey(const NodePtr& node, const SomethingLikeK& key) { in RemoveKey() function
300 RemoveKey(node->left, key), node->right); in RemoveKey()
303 RemoveKey(node->right, key)); in RemoveKey()
312 RemoveKey(node->right, h->kv.first)); in RemoveKey()
316 RemoveKey(node->left, h->kv.first), node->right); in RemoveKey()
/external/pdfium/fxjs/xfa/
Dcfxjse_mapmodule_unittest.cpp51 module.RemoveKey(100); in TEST()
52 module.RemoveKey(200); in TEST()
53 module.RemoveKey(300); in TEST()
Dcfxjse_mapmodule.h34 void RemoveKey(uint32_t key);
Dcfxjse_mapmodule.cpp63 void CFXJSE_MapModule::RemoveKey(uint32_t key) { in RemoveKey() function in CFXJSE_MapModule
/external/cronet/stable/base/android/shared_preferences/
Dshared_preferences_manager.h23 void RemoveKey(const std::string& shared_preference_key);
Dshared_preferences_manager.cc26 void SharedPreferencesManager::RemoveKey( in RemoveKey() function in base::android::SharedPreferencesManager
/external/cronet/tot/base/android/shared_preferences/
Dshared_preferences_manager.h23 void RemoveKey(const std::string& shared_preference_key);
Dshared_preferences_manager.cc26 void SharedPreferencesManager::RemoveKey( in RemoveKey() function in base::android::SharedPreferencesManager
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/
DStringMap.h72 void RemoveKey(StringMapEntryBase *V);
76 StringMapEntryBase *RemoveKey(StringRef Key);
368 void remove(MapEntryTy *KeyValue) { RemoveKey(KeyValue); } in remove()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringMap.h93 void RemoveKey(StringMapEntryBase *V);
97 StringMapEntryBase *RemoveKey(StringRef Key);
415 RemoveKey(KeyValue); in remove()
/external/llvm/include/llvm/ADT/
DStringMap.h86 void RemoveKey(StringMapEntryBase *V);
90 StringMapEntryBase *RemoveKey(StringRef Key);
411 RemoveKey(KeyValue); in remove()
/external/libchrome/components/policy/core/common/
Dregistry_dict.h60 std::unique_ptr<RegistryDict> RemoveKey(const std::string& name);
Dregistry_dict.cc171 RemoveKey(name); in SetKey()
178 std::unique_ptr<RegistryDict> RegistryDict::RemoveKey(const std::string& name) { in RemoveKey() function in policy::RegistryDict
Dpreg_parser.cc276 dict->RemoveKey(key); in HandleRecord()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringMap.h90 void RemoveKey(StringMapEntryBase *V);
94 StringMapEntryBase *RemoveKey(StringRef Key);
470 RemoveKey(KeyValue); in remove()

12