/cts/tests/tests/drm/src/android/drm/cts/ |
DrmInfoRequestTest.java | 73 Iterator<String> keys = attributes.keySet().iterator(); local 74 while (keys.hasNext()) { 75 final String key = (String) keys.next(); 79 // Request object must have all the keys that attributes does. 81 while (keys.hasNext()) { 82 final String key = (String) keys.next(); 86 // Attributes object must have all the keys that request does.
|
DrmInfoTest.java | 83 Iterator<String> keys = attributes.keySet().iterator(); local 84 while (keys.hasNext()) { 85 final String key = (String) keys.next(); 89 // info object must have all the keys that attributes does. 91 while (keys.hasNext()) { 92 final String key = (String) keys.next(); 96 // Attributes object must have all the keys that info does.
|
/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/ |
MockAbstractPreferences.java | 150 Set<Object> keys = attr.keySet(); local 151 String[] results = new String[keys.size()]; 152 keys.toArray(results);
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
KeyPairGenerator1Test.java | 350 int[] keys = { -10000, -1024, -1, 0, 10000 }; local 358 for (int j = 0; j < keys.length; j++) { 360 kpg[i].initialize(keys[j]); 361 kpg[i].initialize(keys[j], random); 387 int[] keys = { -1, -250, 1, 64, 512, 1024 }; local 397 for (int i = 0; i < keys.length; i++) { 399 mKPG.initialize(keys[i]); 401 + Integer.toString(keys[i]) + ")"); 405 mKPG.initialize(keys[i], random); 407 + Integer.toString(keys[i]) + ")") 463 int[] keys = { -1, -250, 1, 63, -512, -1024 }; local [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/ |
SHA1withDSA_SignatureTest.java | 67 private static KeyPair keys; field in class:SHA1withDSA_SignatureTest 116 keys = keyPairGenerator.generateKeyPair(); 118 privateKey = keys.getPrivate(); 119 publicKey = keys.getPublic(); [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
OutputProperties.java | 570 * Copy the keys and values from the source to this object. This will 583 * Copy the keys and values from the source to this object. This will 595 Enumeration keys = src.keys(); local 597 while (keys.hasMoreElements()) 599 String key = (String) keys.nextElement(); 624 * Copy the keys and values from the source to this object. This will
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
CharInfo.java | 199 Enumeration keys = entities.getKeys(); local 200 while (keys.hasMoreElements()){ 201 String name = (String) keys.nextElement();
|
Encodings.java | 339 Enumeration keys = props.keys(); local 342 String javaName = (String) keys.nextElement();
|
OutputPropertiesFactory.java | 49 * Other constants defined in this class are the non-standard property keys 51 * that is used to create or configure a serializer. Here are the non-standard keys: 114 // Some special Xalan keys. 442 Enumeration keys = ((Properties) props.clone()).keys(); local 443 while (keys.hasMoreElements()) 445 String key = (String) keys.nextElement();
|
/external/chromium/chrome/browser/ui/gtk/ |
info_bubble_gtk.cc | 402 GdkKeymapKey* keys; local 423 &keys, 437 msg.hardware_keycode = keys[0].keycode; 438 msg.group = keys[0].group; 441 g_free(keys); 449 DLOG(WARNING) << "Found no keys for value " << keyval;
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
resource_metadata_storage_unittest.cc | 139 std::vector<std::string> keys; local 141 keys.push_back("entry1"); 142 keys.push_back("entry2"); 143 keys.push_back("entry3"); 144 keys.push_back("entry4"); 146 for (size_t i = 0; i < keys.size(); ++i) { 148 entry.set_local_id(keys[i]); 154 cache_entries[keys[0]].set_md5("aaaaaa"); 155 cache_entries[keys[1]].set_md5("bbbbbb"); 175 EXPECT_EQ(keys.size(), found_entries.size()) [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_pref_value_map.cc | 133 std::set<std::string> keys; // keys set by this extension 134 GetExtensionControlledKeys(*(i->second), &keys); 139 NotifyPrefValueChanged(keys); 151 std::set<std::string> keys; // keys set by this extension 152 GetExtensionControlledKeys(*(i->second), &keys); 154 NotifyPrefValueChanged(keys); 331 // Collect all currently used keys and notify the new observer. 332 std::set<std::string> keys; local [all...] |
/external/chromium_org/chrome/browser/ssl/ |
ssl_blocking_page.cc | 422 const char* keys[5] = { local 427 strings->SetString(keys[i], extra_info[i]); 430 strings->SetString(keys[i], std::string());
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
autofill_helper.cc | 177 void AddKeys(int profile, const std::set<AutofillKey>& keys) { 179 for (std::set<AutofillKey>::const_iterator i = keys.begin(); 180 i != keys.end(); 216 std::set<AutofillEntry> keys = GetAllKeys(profile); local 217 for (std::set<AutofillEntry>::const_iterator it = keys.begin(); 218 it != keys.end(); ++it) {
|
/external/chromium_org/chrome/common/extensions/manifest_handlers/ |
content_scripts_handler.cc | 28 namespace keys = extensions::manifest_keys; 79 if (content_script->HasKey(keys::kRunAt)) { 81 if (!content_script->GetString(keys::kRunAt, &run_location)) { 103 if (content_script->HasKey(keys::kAllFrames)) { 105 if (!content_script->GetBoolean(keys::kAllFrames, &all_frames)) { 115 if (!content_script->GetList(keys::kMatches, &matches)) { 176 if (content_script->HasKey(keys::kExcludeMatches)) { // optional 178 if (!content_script->GetList(keys::kExcludeMatches, &exclude_matches)) { 214 if (!LoadGlobsHelper(content_script, definition_index, keys::kIncludeGlobs, 219 if (!LoadGlobsHelper(content_script, definition_index, keys::kExcludeGlobs 377 static const char* keys[] = { local [all...] |
/external/chromium_org/chrome/common/mac/ |
mock_launchd.cc | 130 const void *keys[] = { env_var }; local 132 COMPILE_ASSERT(arraysize(keys) == arraysize(values), array_sizes_must_match); 134 keys, 136 arraysize(keys), 151 const void *keys[] = { program, program_pid }; local 158 COMPILE_ASSERT(arraysize(keys) == arraysize(values), array_sizes_must_match); 160 keys, 162 arraysize(keys), 178 const void *keys[] = { program, program_args }; local 180 COMPILE_ASSERT(arraysize(keys) == arraysize(values) 242 const void *keys[] = { program, program_args, socket_key }; local [all...] |
/external/chromium_org/chrome_frame/test/ |
simulate_input.cc | 143 INPUT keys[kMaxInputs] = {0}; // Keyboard events local 147 keys[key_count].type = INPUT_KEYBOARD; 148 keys[key_count].ki.wVk = VK_SHIFT; 149 keys[key_count].ki.wScan = MapVirtualKey(VK_SHIFT, 0); 154 keys[key_count].type = INPUT_KEYBOARD; 155 keys[key_count].ki.wVk = VK_CONTROL; 156 keys[key_count].ki.wScan = MapVirtualKey(VK_CONTROL, 0); 161 keys[key_count].type = INPUT_KEYBOARD; 162 keys[key_count].ki.wVk = VK_MENU; 163 keys[key_count].ki.wScan = MapVirtualKey(VK_MENU, 0) [all...] |
/external/chromium_org/components/policy/core/common/ |
preg_parser_win.cc | 193 std::vector<std::string> keys; local 194 Tokenize(DecodePRegStringValue(data), ";", &keys); local 195 for (std::vector<std::string>::const_iterator key(keys.begin()); 196 key != keys.end(); ++key) {
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_leveldb_coding_unittest.cc | 738 std::vector<IndexedDBKey> keys; local 740 keys.push_back(IndexedDBKey(-10, WebIDBKeyTypeNumber)); 741 keys.push_back(IndexedDBKey(0, WebIDBKeyTypeNumber)); 742 keys.push_back(IndexedDBKey(3.14, WebIDBKeyTypeNumber)); 744 keys.push_back(IndexedDBKey(0, WebIDBKeyTypeDate)); 745 keys.push_back(IndexedDBKey(100, WebIDBKeyTypeDate)); 746 keys.push_back(IndexedDBKey(100000, WebIDBKeyTypeDate)); 748 keys.push_back(IndexedDBKey(ASCIIToUTF16(""))); 749 keys.push_back(IndexedDBKey(ASCIIToUTF16("a"))); 750 keys.push_back(IndexedDBKey(ASCIIToUTF16("b"))) 818 std::vector<std::string> keys; local [all...] |
/external/chromium_org/media/cdm/ |
aes_decryptor.cc | 24 // Keeps track of the session IDs and DecryptionKeys. The keys are ordered by 266 KeyIdAndKeyPairs keys; local 267 if (!ExtractKeysFromJWKSet(key_string, &keys)) { 273 if (keys.empty()) { 278 for (KeyIdAndKeyPairs::iterator it = keys.begin(); it != keys.end(); ++it) { 441 // Remove all keys associated with |session_id|. Since the data is optimized
|
/external/chromium_org/net/disk_cache/ |
stress_cache.cc | 144 std::string keys[kNumKeys]; local 148 keys[i] = GenerateStressKey(); 165 rv = cache->OpenEntry(keys[key], &entries[slot], cb.callback()); 167 rv = cache->CreateEntry(keys[key], &entries[slot], cb.callback()); 181 rv = cache->DoomEntry(keys[key], cb2.callback());
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBObjectStore.cpp | 190 exceptionState.throwDOMException(DataError, "The object store uses in-line keys and the key parameter was provided."); 194 exceptionState.throwDOMException(DataError, "The object store uses out-of-line keys and has no key generator and the key parameter was not provided."); 224 IndexKeys keys; local 225 generateIndexKeysForValue(&requestState, it->value, value, &keys); 227 indexKeys.append(keys); 297 // This class creates the index keys for a given index by extracting
|
/external/chromium_org/third_party/icu/source/i18n/ |
uspoof_conf.cpp | 52 // 3. Build a list of keys (UChar32s) from the four mapping tables. Sort the 402 // While copying the keys to the runtime array, 406 int32_t *keys = local 417 keys[i] = key; 421 rawData->fCFUKeys = (int32_t)((char *)keys - (char *)rawData); 423 fSpoofImpl->fSpoofData->fCFUKeys = keys;
|
/external/chromium_org/third_party/leveldatabase/src/db/ |
skiplist_test.cc | 51 std::set<Key> keys; local 57 if (keys.insert(key).second) { 64 ASSERT_EQ(keys.count(i), 1); 66 ASSERT_EQ(keys.count(i), 0); 77 ASSERT_EQ(*(keys.begin()), iter.key()); 81 ASSERT_EQ(*(keys.begin()), iter.key()); 85 ASSERT_EQ(*(keys.rbegin()), iter.key()); 94 std::set<Key>::iterator model_iter = keys.lower_bound(i); 96 if (model_iter == keys.end()) { 114 for (std::set<Key>::reverse_iterator model_iter = keys.rbegin() [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
es_generator.py | 145 for key in VersionSpecificValues.keys(): 177 keys = apiutil.GetAllFunctions(functionList, version) variable 226 for funcName in keys: [all...] |