HomeSort by relevance Sort by last modified time
    Searched refs:subkey (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionData.java 66 * Checks if the input subkey is the name (in Latin or local script) of the region. Returns
67 * false if subkey is not a valid name for the region, or the input subkey is null.
69 * @param subkey a string that refers to the name of a geo location. Like "California", "CA", or
72 boolean isValidName(String subkey) {
73 if (subkey == null) {
76 if (subkey.equalsIgnoreCase(mKey) || subkey.equalsIgnoreCase(mName)) {
StandardAddressVerifier.java 224 String subkey) {
225 return v.refineVerifier(subkey);
  /external/jemalloc/include/jemalloc/internal/
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; local
142 subkey = (key << lshift) >> ((ZU(1) << (LG_SIZEOF_PTR+3)) -
144 child = (void**)node[subkey];
154 node[subkey] = child;
160 subkey = (key << lshift) >> ((ZU(1) << (LG_SIZEOF_PTR+3)) - bits)
    [all...]
  /external/chromium_org/components/policy/core/common/cloud/
resource_cache.h 25 // a subkey, and can be queried by (key, subkey) or (key) lookups.
36 // Stores |data| under (key, subkey). Returns true if the store suceeded, and
39 const std::string& subkey,
42 // Loads the contents of (key, subkey) into |data| and returns true. Returns
43 // false if (key, subkey) isn't found or if there is a problem reading the
46 const std::string& subkey,
53 // Deletes (key, subkey).
54 void Delete(const std::string& key, const std::string& subkey);
78 // Points |path| at the file in which data for (key, subkey) should be store
    [all...]
resource_cache.cc 74 const std::string& subkey,
88 return VerifyKeyPathAndGetSubkeyPath(key, true, subkey, &subkey_path) &&
94 const std::string& subkey,
99 if (!VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path) ||
120 std::string subkey; local
125 Base64UrlDecode(encoded_subkey, &subkey) &&
127 (*contents)[subkey].swap(data);
132 void ResourceCache::Delete(const std::string& key, const std::string& subkey) {
135 if (VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path))
138 // call below deletes the directory representing |key| if its last subkey wa
161 std::string subkey; local
    [all...]
resource_cache_unittest.cc 30 bool Matches(const std::string& expected, const std::string& subkey) {
31 return subkey == expected;
51 // Store more data in another subkey.
  /external/chromium_org/sandbox/win/tests/validation_tests/
commands.h 30 int TestOpenKey(HKEY base_key, base::string16 subkey);
commands.cc 177 // Get the subkey.
178 base::string16 subkey; local
180 subkey = argv[1];
181 trim_quote(&subkey);
184 return TestOpenKey(base_key, subkey);
187 int TestOpenKey(HKEY base_key, base::string16 subkey) {
190 subkey.c_str(),
  /external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
FormControllerTest.java 107 String subkey = rdata.get(0).getKey();
108 assertNotNull("Should be the first US state", subkey);
110 new LookupKey.Builder(usKey.toString() + "/" + subkey).build();
141 String subkey = rdata.get(0).getKey();
142 assertNotNull("Should be the first US state", subkey);
144 new LookupKey.Builder(usKey.toString() + "/" + subkey).build();
  /external/chromium_org/chrome/browser/chromeos/policy/
cloud_external_data_store.cc 66 const std::string subkey = GetSubkey(policy, hash); local
67 if (cache_->Load(cache_key_, subkey, data)) {
72 cache_->Delete(cache_key_, subkey);
configuration_policy_handler_chromeos.cc 46 const std::string& subkey,
49 if (!dict.GetWithoutPathExpansion(subkey, &raw_value)) {
50 errors->AddError(policy, subkey, IDS_POLICY_NOT_SPECIFIED_ERROR);
55 errors->AddError(policy, subkey, IDS_POLICY_TYPE_ERROR, "string");
59 errors->AddError(policy, subkey, IDS_POLICY_NOT_SPECIFIED_ERROR);
  /external/chromium_org/chrome/installer/launcher_support/
chrome_launcher_support.cc 40 base::string16 subkey(kGoogleRegClientStateKey);
41 subkey.append(1, L'\\').append(app_guid);
44 if (reg_key.Open(root_key, subkey.c_str(),
  /external/chromium_org/tools/perf_expectations/
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]
    [all...]
  /external/chromium_org/net/proxy/
proxy_config_service_win.h 62 bool AddKeyToWatchList(HKEY rootkey, const wchar_t* subkey);
proxy_config_service_win.cc 57 bool CreateRegKey(HKEY rootkey, const wchar_t* subkey) {
58 return key_.Create(rootkey, subkey, KEY_NOTIFY) == ERROR_SUCCESS;
126 const wchar_t* subkey) {
128 if (!entry->CreateRegKey(rootkey, subkey))
  /external/chromium_org/base/win/
registry.cc 51 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access)
57 Create(rootkey, subkey, access);
59 Open(rootkey, subkey, access);
61 DCHECK(!subkey);
70 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
72 return CreateWithDisposition(rootkey, subkey, &disposition_value, access);
75 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
77 DCHECK(rootkey && subkey && access && disposition);
79 LONG result = RegCreateKeyEx(rootkey, subkey, 0, NULL,
102 HKEY subkey = NULL local
139 HKEY subkey = NULL; local
201 HKEY subkey = NULL; local
    [all...]
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,
38 // Creates a subkey or open it if it already exists.
42 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
74 // Deletes an empty subkey. If the subkey has subkeys or values then this
  /external/chromium_org/components/policy/core/browser/
policy_error_map.h 39 // Adds an entry with key |policy|, subkey |subkey|, and the error message
42 const std::string& subkey,
58 // Adds an entry with key |policy|, subkey |subkey| and the error message
62 const std::string& subkey,
policy_error_map.cc 66 const std::string& subkey,
70 subkey_(subkey) {}
145 const std::string& subkey,
148 new DictSubkeyPendingError(policy, subkey, message_id, std::string()));
164 const std::string& subkey,
167 AddError(new DictSubkeyPendingError(policy, subkey, message_id, replacement));
  /external/chromium_org/chrome/installer/util/
delete_reg_key_work_item_unittest.cc 93 RegKey subkey; local
95 EXPECT_EQ(ERROR_SUCCESS, subkey.Create(key.Handle(), L"Subkey",
97 EXPECT_EQ(ERROR_SUCCESS, subkey.WriteValue(L"SomeValue", 1U));
98 EXPECT_EQ(ERROR_SUCCESS, subkey2.Create(subkey.Handle(), L"Subkey2",
104 RegSetKeySecurity(subkey.Handle(), DACL_SECURITY_INFORMATION,
113 subkey.Close();
127 EXPECT_EQ(ERROR_SUCCESS, key.OpenKey(L"Subkey", KEY_READ | WRITE_DAC));
131 // Give users all access to the subkey so it can be deleted.
registry_key_backup.cc 83 // Map of subkey names to the corresponding KeyData.
195 LOG(ERROR) << "Failed getting name of subkey " << i
206 RegKey subkey; local
209 result = subkey.Open(key.Handle(), it->first.c_str(), kKeyReadNoNotify);
211 LOG(ERROR) << "Failed opening subkey \"" << it->first
215 if (!it->second.Initialize(subkey)) {
216 LOG(ERROR) << "Failed backing up subkey \"" << it->first << "\"";
247 RegKey subkey; local
252 result = subkey.Create(key->Handle(), name.c_str(), KEY_WRITE);
254 LOG(ERROR) << "Failed creating subkey \"" << name << "\", result:
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-help.c 222 const char *subkey = strrchr(name, '.'); local
224 if (!subkey)
227 if (!strcmp(subkey, ".path")) {
230 return add_man_viewer_path(name, subkey - name, value);
232 if (!strcmp(subkey, ".cmd")) {
235 return add_man_viewer_cmd(name, subkey - name, value);
238 warning("'%s': unsupported man viewer sub key.", subkey);
  /external/chromium_org/components/autofill/core/browser/
autofill_ie_toolbar_import_win_unittest.cc 102 RegKey subkey; local
103 subkey.Create(key->Handle(), subkey_name, KEY_ALL_ACCESS);
104 EXPECT_TRUE(subkey.Valid());
106 EncryptAndWrite(&subkey, values + i);
  /external/openssl/crypto/krb5/
krb5_asn.h 201 ** subkey[6] EncryptionKey OPTIONAL,
214 KRB5_ENCKEY *subkey; member in struct:krb5_authenticator_st
  /external/openssl/include/openssl/
krb5_asn.h 201 ** subkey[6] EncryptionKey OPTIONAL,
214 KRB5_ENCKEY *subkey; member in struct:krb5_authenticator_st

Completed in 1208 milliseconds

1 2