HomeSort by relevance Sort by last modified time
    Searched full:keys (Results 176 - 200 of 5906) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/chrome/common/extensions/
extension_l10n_util.cc 28 namespace keys = extension_manifest_keys;
44 if (manifest.GetString(keys::kDefaultLocale, &default_locale))
56 if (!manifest->HasKey(keys::kDefaultLocale))
60 manifest->GetString(keys::kCurrentLocale, &manifest_current_locale);
85 if (!manifest->GetString(keys::kName, &result)) {
89 if (!LocalizeManifestValue(keys::kName, messages, manifest, error)) {
94 if (!LocalizeManifestValue(keys::kDescription, messages, manifest, error))
98 std::string key(keys::kBrowserAction);
100 key.append(keys::kPageActionDefaultTitle);
105 key.assign(keys::kPageAction)
    [all...]
mime_types_handler.cc 21 namespace keys = extension_manifest_keys;
75 extension->GetManifestData(keys::kMimeTypesHandler));
90 if (!extension->manifest()->GetList(keys::kMIMETypes,
107 extension->SetManifestData(keys::kMimeTypesHandler, info.release());
111 const std::vector<std::string> MimeTypesHandlerParser::Keys() const {
112 return SingleKey(keys::kMIMETypes);
web_accessible_resources_handler.cc 17 namespace keys = extension_manifest_keys;
24 extension->GetManifestData(keys::kWebAccessibleResources));
68 if (!extension->manifest()->GetList(keys::kWebAccessibleResources,
91 extension->SetManifestData(keys::kWebAccessibleResources, info.release());
95 const std::vector<std::string> WebAccessibleResourcesHandler::Keys() const {
96 return SingleKey(keys::kWebAccessibleResources);
csp_handler.cc 15 namespace keys = extension_manifest_keys;
60 extension->GetManifestData(keys::kContentSecurityPolicy));
81 const std::string key = Keys()[0];
92 extension->SetManifestData(keys::kContentSecurityPolicy,
114 extension->SetManifestData(keys::kContentSecurityPolicy,
127 const std::vector<std::string> CSPHandler::Keys() const {
129 keys::kPlatformAppContentSecurityPolicy : keys::kContentSecurityPolicy;
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
icons_handler.cc 23 namespace keys = extension_manifest_keys;
36 extension->GetManifestData(keys::kIcons));
78 if (!extension->manifest()->GetDictionary(keys::kIcons, &icons_dict)) {
92 extension->SetManifestData(keys::kIcons, icons_info.release());
106 const std::vector<std::string> IconsHandler::Keys() const {
107 return SingleKey(keys::kIcons);
sandboxed_page_info.cc 21 namespace keys = extension_manifest_keys;
32 extension->GetManifestData(keys::kSandboxedPages));
68 if (!extension->manifest()->GetList(keys::kSandboxedPages, &list_value)) {
92 if (extension->manifest()->HasPath(keys::kSandboxedPagesCSP)) {
94 keys::kSandboxedPagesCSP,
114 extension->SetManifestData(keys::kSandboxedPages, sandboxed_info.release());
118 const std::vector<std::string> SandboxedPageHandler::Keys() const {
119 return SingleKey(keys::kSandboxedPages);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_parser_unittest.py 52 self.assertTrue('test' in test_info.keys(), 'did not find a test file')
53 self.assertTrue('reference' in test_info.keys(), 'did not find a reference file')
55 self.assertFalse('refsupport' in test_info.keys(), 'there should be no refsupport files for this test')
56 self.assertFalse('jstest' in test_info.keys(), 'test should not have been analyzed as a jstest')
75 self.assertTrue('test' in test_info.keys(), 'did not find a test file')
76 self.assertTrue('reference' in test_info.keys(), 'did not find a reference file')
78 self.assertFalse('refsupport' in test_info.keys(), 'there should be no refsupport files for this test')
79 self.assertFalse('jstest' in test_info.keys(), 'test should not have been analyzed as a jstest')
101 self.assertTrue('test' in test_info.keys(), 'did not find a test file')
102 self.assertTrue('reference' in test_info.keys(), 'did not find a reference file'
    [all...]
  /external/qemu/android/avd/
keys.h 15 /* Keys of the properties found in avd/name.ini and config.ini files.
17 * These keys must match their counterpart defined in
22 /* -- Keys used in avd/name.ini -- */
34 /* -- Keys used in config.ini -- */
36 /* the prefix of config.ini keys that will be used for search directories
41 /* the maximum number of search path keys we're going to read from the
  /libcore/luni/src/test/java/tests/api/java/util/
ListResourceBundleTest.java 36 Enumeration keys = bundle.getKeys(); local
38 while (keys.hasMoreElements()) {
39 result.addElement(keys.nextElement());
56 Enumeration keys = bundle.getKeys(); local
59 while (keys.hasMoreElements()) {
60 result.addElement(bundle.handleGetObject((String)keys.nextElement()));
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.m 66 @synthesize keys;
90 keys = keyArray;
110 //tmp.keys[0] = kp;
174 [tnew insert:self.keys[numkeys-1] value:self index:0 split:&h];
175 [tnew insert:q.keys[q.numkeys-1] value:q index:1 split:&h];
202 ret = [t.keys[i].key compare:kstr];
235 ret = [keys[i].key compare:kstr];
289 self.keys[i] = tsb.keys[nkey];
315 self.keys[i] = tsb.keys[nkey]
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_bookmarks_module.cc 38 namespace keys = extension_bookmarks_module_constants;
100 error_ = keys::kInvalidIdError;
107 error_ = keys::kEditBookmarksDisabled;
162 object_args->SetString(keys::kParentIdKey,
164 object_args->SetInteger(keys::kIndexKey, new_index);
165 object_args->SetString(keys::kOldParentIdKey,
167 object_args->SetInteger(keys::kOldIndexKey, old_index);
172 DispatchEvent(model->profile(), keys::kOnBookmarkMoved, json_args);
187 DispatchEvent(model->profile(), keys::kOnBookmarkCreated, json_args);
198 object_args->SetString(keys::kParentIdKey
    [all...]
convert_user_script.cc 26 namespace keys = extension_manifest_keys;
83 root->SetString(keys::kName, script.name());
85 root->SetString(keys::kName, original_url.ExtractFileName());
90 root->SetString(keys::kVersion, script.version());
92 root->SetString(keys::kVersion, "1.0");
94 root->SetString(keys::kDescription, script.description());
95 root->SetString(keys::kPublicKey, key);
96 root->SetBoolean(keys::kConvertedFromUserScript, true);
124 content_script->Set(keys::kMatches, matches);
125 content_script->Set(keys::kIncludeGlobs, includes)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
convert_user_script.cc 28 namespace keys = extension_manifest_keys;
89 root->SetString(keys::kName, script.name());
91 root->SetString(keys::kName, original_url.ExtractFileName());
96 root->SetString(keys::kVersion, script.version());
98 root->SetString(keys::kVersion, "1.0");
100 root->SetString(keys::kDescription, script.description());
101 root->SetString(keys::kPublicKey, key);
102 root->SetBoolean(keys::kConvertedFromUserScript, true);
140 content_script->Set(keys::kMatches, matches);
141 content_script->Set(keys::kExcludeMatches, exclude_matches)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
deprecated_idl_serializer.pm 45 # keys in indeterminate order. We set options to change this:
50 # canonical: sort keys when writing JSON, so JSON always in same order,
66 # JSON.pm serializes Perl objects as hashes (with keys CLASS::KEY),
75 my @keys = keys %$jsonData;
76 return {} unless @keys;
78 my $class = determineClassFromKeys(@keys);
83 foreach my $key (@keys) {
96 my @keys = shift;
98 # Detect objects as hashes where all keys are of the form CLASS::KEY
    [all...]
  /external/marisa-trie/tests/
c-test.c 92 const char *keys[8]; local
117 keys[0] = "apple";
118 keys[1] = "and";
119 keys[2] = "Bad";
120 keys[3] = "apple";
121 keys[4] = "app";
123 ASSERT(marisa_build(trie, keys, 5, NULL, NULL, key_ids,
139 ASSERT(key_length == strlen(keys[i]));
140 ASSERT(strcmp(key_buf, keys[i]) == 0);
143 keys[i], MARISA_ZERO_TERMINATED, &key_id) == MARISA_OK)
    [all...]
  /external/marisa-trie/v0_1_5/tests/
c-test.c 97 const char *keys[8]; local
124 keys[0] = "apple";
125 keys[1] = "and";
126 keys[2] = "Bad";
127 keys[3] = "apple";
128 keys[4] = "app";
130 ASSERT(marisa_alpha_build(trie, keys, 5, NULL, NULL, key_ids,
147 ASSERT(key_length == strlen(keys[i]));
148 ASSERT(strcmp(key_buf, keys[i]) == 0);
151 keys[i], MARISA_ALPHA_ZERO_TERMINATED, &key_id) == MARISA_ALPHA_OK)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
AlgorithmParameterGenerator_ImplTest.java 83 int [] keys = {-10000, -512, -1, 0, 10000}; local
92 for (int j = 0; j < keys.length; j++) {
94 apgs[i].init(keys[j]);
96 + keys[j]);
101 apgs[i].init(keys[j], random);
103 + keys[j]);
108 apgs[i].init(keys[j], null);
110 + keys[j]);
  /external/chromium-trace/trace-viewer/src/tracing/trace_model/
counter_series.js 33 var keys = Object.keys(this);
34 for (var i = 0; i < keys.length; i++) {
35 var key = keys[i];
63 var keys = Object.keys(this);
64 for (var i = 0; i < keys.length; i++) {
65 var key = keys[i];
  /external/chromium_org/chrome/browser/chromeos/login/screens/
screen_context_unittest.cc 142 std::vector<std::string> keys; local
143 context().ApplyChanges(changes, &keys);
145 ASSERT_EQ(3u, keys.size());
146 std::sort(keys.begin(), keys.end());
147 ASSERT_EQ("key0", keys[0]);
148 ASSERT_EQ("key1", keys[1]);
149 ASSERT_EQ("key2", keys[2]);
  /external/chromium_org/chrome/browser/extensions/activity_log/
web_request_constants.cc 12 // Keys used in the dictionary summarizing an EventResponseDelta for the
23 // Keys and values used for describing cookie modifications.
web_request_constants.h 13 // Keys used in the dictionary summarizing an EventResponseDelta for the
24 // Keys and values used for describing cookie modifications.
  /external/chromium_org/chrome/browser/ui/startup/
google_api_keys_infobar_delegate.h 18 // If Google API keys are missing, creates a missing Google API Keys infobar
  /external/chromium_org/components/nacl/common/
nacl_paths.h 10 // This file declares path keys for the chrome module. These can be used with
26 // Call once to register the provider for the path keys defined above.
  /external/chromium_org/content/public/common/
content_paths.h 10 // This file declares path keys for the content module. These can be used with
30 // Call once to register the provider for the path keys defined above.
  /external/chromium_org/ui/base/
ui_base_paths.h 11 // This file declares path keys for the app module. These can be used with
31 // Call once to register the provider for the path keys defined above.

Completed in 1109 milliseconds

1 2 3 4 5 6 78 91011>>