/third_party/cef/tests/ceftests/ |
D | osr_accessibility_unittest.cc | 263 CefRefPtr<CefDictionaryValue> topLevel = value->GetDictionary(); in GetUpdateList() 282 CefRefPtr<CefDictionaryValue> update = updates->GetDictionary(index); in GetUpdateValue() 290 CefRefPtr<CefDictionaryValue> topLevel = value->GetDictionary(); in GetEventList() 309 CefRefPtr<CefDictionaryValue> event = events->GetDictionary(index); in GetEventValue() 351 CefRefPtr<CefDictionaryValue> treeData = update->GetDictionary("tree_data"); in TestEnableAccessibilityUpdate() 366 CefRefPtr<CefDictionaryValue> node = nodes->GetDictionary(index); in TestEnableAccessibilityUpdate() 396 CefRefPtr<CefDictionaryValue> node = nodes->GetDictionary(index); in SetEditBoxIdAndRect() 399 CefRefPtr<CefDictionaryValue> loc = node->GetDictionary("location"); in SetEditBoxIdAndRect()
|
D | test_util.cc | 209 TestDictionaryEqual(val1->GetDictionary(key), val2->GetDictionary(key)); in TestDictionaryEqual() 251 TestDictionaryEqual(val1->GetDictionary(i), val2->GetDictionary(i)); in TestListEqual()
|
D | values_unittest.cc | 179 dictionary_value = value->GetDictionary(kDictionaryKey); in TestDictionaryDictionary() 399 dictionary_value = value->GetDictionary(index); in TestListDictionary() 707 dictionary_value = value->GetDictionary(kDictionaryKey); in TEST() 711 dictionary_value2 = dictionary_value->GetDictionary(kDictionaryKey); in TEST() 715 dictionary_value3 = dictionary_value2->GetDictionary(kDictionaryKey); in TEST() 1243 CefRefPtr<CefDictionaryValue> dict_value2 = value->GetDictionary(); in TEST() 1280 CefRefPtr<CefDictionaryValue> dict_value2 = value->GetDictionary(); in TEST() 1281 CefRefPtr<CefDictionaryValue> dict_value3 = target_list->GetDictionary(0); in TEST() 1283 CefRefPtr<CefDictionaryValue> dict_value4 = value2->GetDictionary(); in TEST() 1341 CefRefPtr<CefDictionaryValue> dict_value2 = value->GetDictionary(); in TEST() [all …]
|
D | parser_unittest.cc | 373 CefRefPtr<CefDictionaryValue> dict = value->GetDictionary(); in TEST() 406 CefRefPtr<CefDictionaryValue> dict = value->GetDictionary(); in TEST() 449 CefRefPtr<CefDictionaryValue> dict = list->GetDictionary(2); in TEST()
|
D | preference_unittest.cc | 203 CefRefPtr<CefDictionaryValue> dict_val = value->GetDictionary(); in ValidateDict() 244 CefRefPtr<CefDictionaryValue> actual = root->GetDictionary(kPrefTest); in ValidateRoot()
|
D | devtools_message_unittest.cc | 224 dict = value->GetDictionary(); in ExecuteMethod()
|
/third_party/cef/tests/cefclient/browser/ |
D | osr_accessibility_helper.cc | 69 locationChangeList->GetDictionary(i); in UpdateAccessibilityLocation() 79 locationChangeDict->GetDictionary("new_location"); in UpdateAccessibilityLocation() 98 CefRefPtr<CefDictionaryValue> mainDict = value->GetDictionary(); in UpdateAccessibilityTree() 112 CefRefPtr<CefDictionaryValue> updateDict = updatesList->GetDictionary(i); in UpdateAccessibilityTree() 170 update->GetDictionary("tree_data"); in UpdateLayout() 187 CefRefPtr<CefDictionaryValue> node = nodes->GetDictionary(index); in UpdateLayout()
|
D | osr_accessibility_node.cc | 30 CefRefPtr<CefDictionaryValue> loc = value->GetDictionary("bounds"); in UpdateLocation() 57 CefRefPtr<CefDictionaryValue> loc = value->GetDictionary("location"); in UpdateValue() 72 attributes_ = value->GetDictionary("attributes"); in UpdateValue()
|
D | preferences_test.cc | 93 request_dict->GetDictionary(kPreferencesKey); in OnQuery() 210 return value->GetDictionary(); in ParseJSON() 252 CefRefPtr<CefDictionaryValue> dict = value->GetDictionary(); in ApplyPrefs()
|
D | server_test.cc | 354 return value->GetDictionary(); in ParseJSON()
|
/third_party/cef/tests/shared/browser/ |
D | extension_util.cc | 107 RunManifestCallback(std::move(callback), value->GetDictionary()); in GetInternalManifest() 228 extension->GetManifest()->GetDictionary("browser_action"); in GetExtensionURL() 242 extension->GetManifest()->GetDictionary("browser_action"); in GetExtensionIconPath()
|
/third_party/cef/include/ |
D | cef_values.h | 159 virtual CefRefPtr<CefDictionaryValue> GetDictionary() = 0; 438 virtual CefRefPtr<CefDictionaryValue> GetDictionary(const CefString& key) = 0; 660 virtual CefRefPtr<CefDictionaryValue> GetDictionary(size_t index) = 0;
|
/third_party/cef/libcef/common/ |
D | values_impl.h | 73 CefRefPtr<CefDictionaryValue> GetDictionary() override; 241 CefRefPtr<CefDictionaryValue> GetDictionary(const CefString& key) override; 320 CefRefPtr<CefDictionaryValue> GetDictionary(size_t index) override;
|
D | values_impl.cc | 283 CefRefPtr<CefDictionaryValue> CefValueImpl::GetDictionary() { in GetDictionary() function in CefValueImpl 838 CefRefPtr<CefDictionaryValue> CefDictionaryValueImpl::GetDictionary( in GetDictionary() function in CefDictionaryValueImpl 1257 CefRefPtr<CefDictionaryValue> CefListValueImpl::GetDictionary(size_t index) { in GetDictionary() function in CefListValueImpl
|
/third_party/gn/src/base/ |
D | values.h | 465 bool GetDictionary(std::string_view path, 468 bool GetDictionary(std::string_view path, DictionaryValue** out_value); 636 bool GetDictionary(size_t index, const DictionaryValue** out_value) const; 637 bool GetDictionary(size_t index, DictionaryValue** out_value);
|
D | values.cc | 842 bool DictionaryValue::GetDictionary(std::string_view path, in GetDictionary() function in base::DictionaryValue 855 bool DictionaryValue::GetDictionary(std::string_view path, in GetDictionary() function in base::DictionaryValue 857 return static_cast<const DictionaryValue&>(*this).GetDictionary( in GetDictionary() 985 if (!GetDictionary(current_path.substr(0, delimiter_position), in Remove() 1019 if (!GetDictionary(subdict_path, &subdict)) in RemovePath() 1158 bool ListValue::GetDictionary(size_t index, in GetDictionary() function in base::ListValue 1171 bool ListValue::GetDictionary(size_t index, DictionaryValue** out_value) { in GetDictionary() function in base::ListValue 1172 return static_cast<const ListValue&>(*this).GetDictionary( in GetDictionary()
|
/third_party/cef/libcef_dll/ctocpp/ |
D | value_ctocpp.h | 48 CefRefPtr<CefDictionaryValue> GetDictionary() override;
|
D | dictionary_value_ctocpp.h | 56 CefRefPtr<CefDictionaryValue> GetDictionary(const CefString& key) override;
|
D | list_value_ctocpp.h | 54 CefRefPtr<CefDictionaryValue> GetDictionary(size_t index) override;
|
D | value_ctocpp.cc | 243 CefRefPtr<CefDictionaryValue> CefValueCToCpp::GetDictionary() { in GetDictionary() function in CefValueCToCpp
|
D | list_value_ctocpp.cc | 327 CefRefPtr<CefDictionaryValue> CefListValueCToCpp::GetDictionary(size_t index) { in GetDictionary() function in CefListValueCToCpp
|
/third_party/cef/libcef/browser/devtools/ |
D | devtools_file_manager.cc | 81 *prefs_->GetDictionary(prefs::kDevToolsEditedFiles)); in Save()
|
/third_party/cef/libcef_dll/cpptoc/ |
D | value_cpptoc.cc | 256 CefValueCppToC::Get(self)->GetDictionary(); in value_get_dictionary()
|
D | list_value_cpptoc.cc | 346 CefListValueCppToC::Get(self)->GetDictionary(index); in list_value_get_dictionary()
|
D | dictionary_value_cpptoc.cc | 435 CefDictionaryValueCppToC::Get(self)->GetDictionary(CefString(key)); in dictionary_value_get_dictionary()
|