/external/jemalloc/include/jemalloc/internal/ |
D | rtree.h | 64 uintptr_t subkey; \ 73 subkey = (key << lshift) >> ((ZU(1) << (LG_SIZEOF_PTR + \ 75 child = (void**)node[subkey]; \ 87 subkey = (key << lshift) >> ((ZU(1) << (LG_SIZEOF_PTR+3)) - \ 91 ret = leaf[subkey]; \ 133 uintptr_t subkey; in RTREE_GET_GENERATE() local 142 subkey = (key << lshift) >> ((ZU(1) << (LG_SIZEOF_PTR+3)) - in RTREE_GET_GENERATE() 144 child = (void**)node[subkey]; in RTREE_GET_GENERATE() 154 node[subkey] = child; in RTREE_GET_GENERATE() 160 subkey = (key << lshift) >> ((ZU(1) << (LG_SIZEOF_PTR+3)) - bits); in RTREE_GET_GENERATE() [all …]
|
/external/chromium_org/components/policy/core/common/cloud/ |
D | resource_cache.cc | 74 const std::string& subkey, in Store() argument 88 return VerifyKeyPathAndGetSubkeyPath(key, true, subkey, &subkey_path) && in Store() 94 const std::string& subkey, in Load() argument 99 if (!VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path) || in Load() 120 std::string subkey; in LoadAllSubkeys() local 125 Base64UrlDecode(encoded_subkey, &subkey) && in LoadAllSubkeys() 127 (*contents)[subkey].swap(data); in LoadAllSubkeys() 132 void ResourceCache::Delete(const std::string& key, const std::string& subkey) { in Delete() argument 135 if (VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path)) in Delete() 161 std::string subkey; in FilterSubkeys() local [all …]
|
D | resource_cache.h | 39 const std::string& subkey, 46 const std::string& subkey, 54 void Delete(const std::string& key, const std::string& subkey); 84 const std::string& subkey,
|
/external/chromium_org/base/win/ |
D | registry.cc | 51 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access) in RegKey() argument 57 Create(rootkey, subkey, access); in RegKey() 59 Open(rootkey, subkey, access); in RegKey() 61 DCHECK(!subkey); in RegKey() 70 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) { in Create() argument 72 return CreateWithDisposition(rootkey, subkey, &disposition_value, access); in Create() 75 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey, in CreateWithDisposition() argument 77 DCHECK(rootkey && subkey && access && disposition); in CreateWithDisposition() 79 LONG result = RegCreateKeyEx(rootkey, subkey, 0, NULL, in CreateWithDisposition() 102 HKEY subkey = NULL; in CreateKey() local [all …]
|
D | registry.h | 30 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access); 33 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access); 35 LONG CreateWithDisposition(HKEY rootkey, const wchar_t* subkey, 42 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
|
/external/chromium_org/tools/perf_expectations/ |
D | make_expectations.py | 82 for subkey in ['reva', 'revb']: 83 if subkey in data[key]: 84 rowdata.append('"%s": %s' % (subkey, data[key][subkey])) 86 for subkey in ['type', 'better']: 87 if subkey in data[key]: 88 rowdata.append('"%s": "%s"' % (subkey, data[key][subkey])) 90 for subkey in ['improve', 'regress', 'tolerance']: 91 if subkey in data[key]: 92 rowdata.append('"%s": %s' % (subkey, data[key][subkey]))
|
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/ |
D | RegionData.java | 72 boolean isValidName(String subkey) { in isValidName() argument 73 if (subkey == null) { in isValidName() 76 if (subkey.equalsIgnoreCase(mKey) || subkey.equalsIgnoreCase(mName)) { in isValidName()
|
/external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/ |
D | FormControllerTest.java | 107 String subkey = rdata.get(0).getKey(); in testRequestDataForBadAddress() 108 assertNotNull("Should be the first US state", subkey); in testRequestDataForBadAddress() 110 new LookupKey.Builder(usKey.toString() + "/" + subkey).build(); in testRequestDataForBadAddress() 141 String subkey = rdata.get(0).getKey(); in testRequestDataForCountry() 142 assertNotNull("Should be the first US state", subkey); in testRequestDataForCountry() 144 new LookupKey.Builder(usKey.toString() + "/" + subkey).build(); in testRequestDataForCountry()
|
/external/chromium_org/chrome/installer/launcher_support/ |
D | chrome_launcher_support.cc | 59 base::string16 subkey(kGoogleRegClientStateKey); in GetClientStateValue() local 60 subkey.append(1, L'\\').append(app_guid); in GetClientStateValue() 63 if (reg_key.Open(root_key, subkey.c_str(), in GetClientStateValue() 77 base::string16 subkey(kGoogleRegClientsKey); in IsProductInstalled() local 78 subkey.append(1, L'\\').append(app_guid); in IsProductInstalled() 81 return reg_key.Open(root_key, subkey.c_str(), in IsProductInstalled()
|
/external/chromium_org/chrome/installer/util/ |
D | delete_reg_key_work_item_unittest.cc | 93 RegKey subkey; in TEST_F() local 95 EXPECT_EQ(ERROR_SUCCESS, subkey.Create(key.Handle(), L"Subkey", in TEST_F() 97 EXPECT_EQ(ERROR_SUCCESS, subkey.WriteValue(L"SomeValue", 1U)); in TEST_F() 98 EXPECT_EQ(ERROR_SUCCESS, subkey2.Create(subkey.Handle(), L"Subkey2", in TEST_F() 104 RegSetKeySecurity(subkey.Handle(), DACL_SECURITY_INFORMATION, in TEST_F() 113 subkey.Close(); in TEST_F()
|
D | registry_key_backup.cc | 206 RegKey subkey; in Initialize() local 209 result = subkey.Open(key.Handle(), it->first.c_str(), kKeyReadNoNotify); in Initialize() 215 if (!it->second.Initialize(subkey)) { in Initialize() 247 RegKey subkey; in WriteTo() local 252 result = subkey.Create(key->Handle(), name.c_str(), KEY_WRITE); in WriteTo() 258 if (!it->second.WriteTo(&subkey)) { in WriteTo()
|
/external/chromium_org/components/policy/core/browser/ |
D | policy_error_map.cc | 66 const std::string& subkey, in DictSubkeyPendingError() argument 70 subkey_(subkey) {} in DictSubkeyPendingError() 145 const std::string& subkey, in AddError() argument 148 new DictSubkeyPendingError(policy, subkey, message_id, std::string())); in AddError() 164 const std::string& subkey, in AddError() argument 167 AddError(new DictSubkeyPendingError(policy, subkey, message_id, replacement)); in AddError()
|
D | policy_error_map.h | 42 const std::string& subkey, 62 const std::string& subkey,
|
/external/chromium_org/sandbox/win/tests/validation_tests/ |
D | commands.cc | 178 base::string16 subkey; in OpenKey() local 180 subkey = argv[1]; in OpenKey() 181 trim_quote(&subkey); in OpenKey() 184 return TestOpenKey(base_key, subkey); in OpenKey() 187 int TestOpenKey(HKEY base_key, base::string16 subkey) { in TestOpenKey() argument 190 subkey.c_str(), in TestOpenKey()
|
D | commands.h | 30 int TestOpenKey(HKEY base_key, base::string16 subkey);
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/ |
D | country_rules_aggregator.cc | 139 const std::string& subkey = key + "/" + ruleset->rule().GetSubKeys()[i]; in Build() local 142 language_specific_subkeys[subkey][*non_default_language_it] = in Build() 155 std::string subkey = key + "/" + *subkey_it; in Build() local 157 Build(subkey, in Build() 159 language_specific_subkeys[subkey]); in Build()
|
/external/chromium_org/net/proxy/ |
D | proxy_config_service_win.cc | 57 bool CreateRegKey(HKEY rootkey, const wchar_t* subkey) { in CreateRegKey() argument 58 return key_.Create(rootkey, subkey, KEY_NOTIFY) == ERROR_SUCCESS; in CreateRegKey() 126 const wchar_t* subkey) { in AddKeyToWatchList() argument 128 if (!entry->CreateRegKey(rootkey, subkey)) in AddKeyToWatchList()
|
D | proxy_config_service_win.h | 62 bool AddKeyToWatchList(HKEY rootkey, const wchar_t* subkey);
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
D | builtin-help.c | 222 const char *subkey = strrchr(name, '.'); in add_man_viewer_info() local 224 if (!subkey) in add_man_viewer_info() 227 if (!strcmp(subkey, ".path")) { in add_man_viewer_info() 230 return add_man_viewer_path(name, subkey - name, value); in add_man_viewer_info() 232 if (!strcmp(subkey, ".cmd")) { in add_man_viewer_info() 235 return add_man_viewer_cmd(name, subkey - name, value); in add_man_viewer_info() 238 warning("'%s': unsupported man viewer sub key.", subkey); in add_man_viewer_info()
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
D | cloud_external_data_store.cc | 66 const std::string subkey = GetSubkey(policy, hash); in Load() local 67 if (cache_->Load(cache_key_, subkey, data)) { in Load() 72 cache_->Delete(cache_key_, subkey); in Load()
|
D | configuration_policy_handler_chromeos.cc | 46 const std::string& subkey, in GetSubkeyString() argument 49 if (!dict.GetWithoutPathExpansion(subkey, &raw_value)) { in GetSubkeyString() 50 errors->AddError(policy, subkey, IDS_POLICY_NOT_SPECIFIED_ERROR); in GetSubkeyString() 55 errors->AddError(policy, subkey, IDS_POLICY_TYPE_ERROR, "string"); in GetSubkeyString() 59 errors->AddError(policy, subkey, IDS_POLICY_NOT_SPECIFIED_ERROR); in GetSubkeyString()
|
/external/chromium_org/components/autofill/core/browser/ |
D | autofill_ie_toolbar_import_win_unittest.cc | 102 RegKey subkey; in CreateSubkey() local 103 subkey.Create(key->Handle(), subkey_name, KEY_ALL_ACCESS); in CreateSubkey() 104 EXPECT_TRUE(subkey.Valid()); in CreateSubkey() 106 EncryptAndWrite(&subkey, values + i); in CreateSubkey()
|
/external/chromium_org/native_client_sdk/src/resources/ |
D | Makefile.library.template | 17 [[ for subkey in value:]] 19 [[ out.extend(value[subkey])]] 21 {{key}}_{{subkey}} = {{' '.join(out)}}
|
D | Makefile.example.template | 21 [[ for subkey in value:]] 23 [[ out.extend(value[subkey])]] 25 {{key}}_{{subkey}} = {{' '.join(out)}}
|
/external/chromium_org/tools/binary_size/ |
D | run_binary_size_analysis.py | 298 subkey = 'misc' 301 subkey = '__FUNCTION__' 303 subkey = 'CSWTCH' 305 subkey = sym[0:sym.find('::') + 2] 306 tree['sizes'][subkey] = tree['sizes'].get(subkey, 0) + size
|