HomeSort by relevance Sort by last modified time
    Searched defs:keys (Results 126 - 150 of 768) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/webui/translate_internals/
translate_internals_handler.cc 144 std::vector<std::string> keys; local
145 keys.push_back(prefs::kEnableTranslate);
147 keys.push_back(TranslatePrefs::kPrefTranslateBlockedLanguages);
148 keys.push_back(TranslatePrefs::kPrefTranslateLanguageBlacklist);
149 keys.push_back(TranslatePrefs::kPrefTranslateSiteBlacklist);
150 keys.push_back(TranslatePrefs::kPrefTranslateWhitelists);
151 keys.push_back(TranslatePrefs::kPrefTranslateDeniedCount);
152 keys.push_back(TranslatePrefs::kPrefTranslateAcceptedCount);
154 for (std::vector<std::string>::const_iterator it = keys.begin();
155 it != keys.end(); ++it)
    [all...]
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
app_launch_info.cc 20 namespace keys = manifest_keys;
55 extension->GetManifestData(keys::kLaunch));
119 if (extension->manifest()->Get(keys::kLaunchLocalPath, &temp)) {
120 if (extension->manifest()->Get(keys::kLaunchWebURL, NULL)) {
125 if (extension->manifest()->Get(keys::kWebURLs, NULL)) {
134 keys::kLaunchLocalPath);
143 keys::kLaunchLocalPath);
148 } else if (extension->manifest()->Get(keys::kLaunchWebURL, &temp)) {
153 keys::kLaunchWebURL);
163 keys::kLaunchWebURL)
316 static const char* keys[] = { local
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
key_converter_unittest.cc 18 void CheckEvents(const string16& keys,
25 EXPECT_EQ(kOk, ConvertKeysToKeyEvents(keys, release_modifiers,
43 void CheckEventsReleaseModifiers(const string16& keys,
46 CheckEvents(keys, expected_events, true /* release_modifier */,
50 void CheckEventsReleaseModifiers(const std::string& keys,
53 CheckEventsReleaseModifiers(UTF8ToUTF16(keys),
138 string16 keys; local
139 keys.push_back(static_cast<char16>(0xE00DU));
140 CheckEventsReleaseModifiers(keys, event_array, arraysize(event_array));
147 string16 keys; local
211 string16 keys; local
227 string16 keys; local
279 string16 keys; local
347 string16 keys; local
388 string16 keys; local
405 string16 keys; local
    [all...]
  /external/chromium_org/chrome/test/functional/rlz/
rlztest.py 20 import selenium.webdriver.common.keys namespace
23 from selenium.webdriver.common.keys import Keys as Keys
189 self.driver.switch_to_active_element().send_keys(Keys.CONTROL + 'l')
191 self.driver.switch_to_active_element().send_keys(Keys.ENTER)
  /external/chromium_org/extensions/common/
manifest_handler.cc 57 const std::vector<std::string> keys = Keys(); local
58 for (size_t i = 0; i < keys.size(); ++i)
59 GetRegistry()->RegisterManifestHandler(keys[i], this_linked);
manifest_handler_unittest.cc 80 const std::vector<std::string>& keys,
83 : name_(name), keys_(keys), prereqs_(prereqs), watcher_(watcher) {
101 virtual const std::vector<std::string> Keys() const OVERRIDE {
109 const std::vector<std::string>& keys,
112 : TestManifestHandler(name, keys, prereqs, watcher) {
123 const std::vector<std::string>& keys,
126 : TestManifestHandler(name, keys, prereqs, watcher) {
138 std::vector<std::string> keys)
141 keys_(keys) {
160 virtual const std::vector<std::string> Keys() const OVERRIDE
181 std::vector<std::string> keys; local
    [all...]
  /external/chromium_org/extensions/common/manifest_handlers/
background_info.cc 27 namespace keys = manifest_keys;
98 keys::kPlatformAppBackgroundScripts : keys::kBackgroundScripts;
186 extension, keys::kPlatformAppBackgroundPage, error);
189 if (!LoadBackgroundPage(extension, keys::kBackgroundPage, error))
192 return LoadBackgroundPage(extension, keys::kBackgroundPageLegacy, error);
204 if (!extension->manifest()->Get(keys::kBackgroundPersistent,
224 if (!extension->manifest()->Get(keys::kBackgroundAllowJsAccess,
305 const std::vector<std::string> BackgroundManifestHandler::Keys() const {
306 static const char* keys[] = local
    [all...]
shared_module_info.cc 20 namespace keys = manifest_keys;
109 bool has_import = extension->manifest()->HasKey(keys::kImport);
110 bool has_export = extension->manifest()->HasKey(keys::kExport);
121 if (!extension->manifest()->GetDictionary(keys::kExport, &export_value)) {
126 if (!export_value->GetList(keys::kResources, &resources_list)) {
150 if (!extension->manifest()->GetList(keys::kImport, &import_list)) {
162 if (!import_entry->GetString(keys::kId, &extension_id) ||
169 if (import_entry->HasKey(keys::kMinimumVersion)) {
171 if (!import_entry->GetString(keys::kMinimumVersion, &min_version)) {
219 const std::vector<std::string> SharedModuleHandler::Keys() const
220 static const char* keys[] = { local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptManager.cpp 152 Vector<int> keys; local
153 keys.appendRange(m_idToInjectedScript.keys().begin(), m_idToInjectedScript.keys().end());
154 for (Vector<int>::iterator k = keys.begin(); k != keys.end(); ++k) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKey.cpp 93 IDBKey::KeyArray keys; local
94 keys.reserveCapacity(array.size());
98 keys.append(convertFromWebIDBKeyArray(array[i].array()));
101 keys.append(IDBKey::createBinary(array[i].binary()));
104 keys.append(IDBKey::createString(array[i].string()));
107 keys.append(IDBKey::createDate(array[i].date()));
110 keys.append(IDBKey::createNumber(array[i].number()));
113 keys.append(IDBKey::createInvalid());
121 return IDBKey::createArray(keys);
126 WebVector<WebIDBKey> keys(array.size())
214 WebVector<WebIDBKey> keys; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashIterators.h 40 typedef HashTableConstKeysIterator<HashTableType, KeyType, MappedType> Keys;
53 Keys keys() { return Keys(*this); } function in struct:WTF::HashTableConstIteratorAdapter
63 typedef HashTableKeysIterator<HashTableType, KeyType, MappedType> Keys;
81 Keys keys() { return Keys(*this); } function in struct:WTF::HashTableIteratorAdapter
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_configuration.py 46 def keys(self): member in class:TestConfiguration
47 return self.__dict__.keys()
290 macro_keys = set(self._configuration_macros.keys())
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
base.hpp 257 keys(const std::pair<T, S> &ent) { function in namespace:clover
  /external/chromium_org/third_party/smhasher/src/
KeysetTest.cpp 25 // Hash keys of the form {0}, {0,1}, {0,1,2}... up to N=255,using 256-N as
204 // Generate all keys of up to N bytes containing two non-zero bytes
209 // Compute # of keys
219 printf("Keyset 'TwoBytes' - up-to-%d-byte keys, %d total keys\n",maxlen, keycount);
224 // Add all keys with one non-zero byte
244 // Add all keys with two non-zero bytes
282 std::vector<ByteVec> & keys = (*it).second; local
284 for(int i = 0; i < (int)keys.size(); i++)
286 ByteVec & key = keys[i]
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
symrec.pxi 240 def keys(self): member in class:SymbolTable
  /external/chromium_org/tools/gyp/pylib/gyp/
ordered_dict.py 24 # An inherited dict maps keys to values.
29 # The internal self.__map dictionary maps keys to links in a doubly linked list.
122 def keys(self): member in class:OrderedDict
123 'od.keys() -> list of keys in od'
135 'od.iterkeys() -> an iterator over the keys in od'
152 If E has a .keys() method, does: for k in E.keys(): od[k] = E[k]
170 elif hasattr(other, 'keys'):
171 for key in other.keys()
    [all...]
  /external/chromium_org/v8/test/mjsunit/
keyed-call-ic.js 58 var keys = variable
  /external/clang/test/CodeGen/
designated-initializers.c 106 int *keys; member in struct:S
116 .keys = 0,
  /external/clang/utils/analyzer/
CmpRuns.py 109 def keys(self): member in class:multidict
110 return self.data.keys()
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/tools/
TestVersionTracker.java 97 Enumeration keys = elements.keys(); local
99 while (keys.hasMoreElements()){
100 Object key = keys.nextElement();
  /external/emma/core/java12/com/vladium/util/
IntIntMap.java 146 public int [] keys () method in class:IntIntMap
262 * The structure used for chaining colliding keys.
323 private int m_size; // number of keys in the table, not cleared as of last check
IntObjectMap.java 125 public int [] keys () method in class:IntObjectMap
220 * The structure used for chaining colliding keys.
281 private int m_size; // number of keys in the table, not cleared as of last check
ObjectIntMap.java 136 public Object [] keys () method in class:ObjectIntMap
258 * The structure used for chaining colliding keys.
319 private int m_size; // number of keys in the table, not cleared as of last check
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
DefineList.java 49 String[] keys = new String[defines.size()]; local
54 keys[i] = define.getKey();
59 oc.write(keys, "keys", null);
69 String[] keys = ic.readStringArray("keys", null); local
71 for (int i = 0; i < keys.length; i++){
72 defines.put(keys[i], vals[i]);
  /external/jmonkeyengine/engine/src/test/jme3test/app/
TestIDList.java 67 Set<Integer> keys = objs.keySet(); local
68 Integer[] keysArr = keys.toArray(new Integer[0]);

Completed in 65 milliseconds

1 2 3 4 56 7 8 91011>>