/dalvik/dx/src/com/android/dx/io/instructions/ |
SparseSwitchPayloadDecodedInstruction.java | 26 private final int[] keys; field in class:SparseSwitchPayloadDecodedInstruction 38 int opcode, int[] keys, int[] targets) { 41 if (keys.length != targets.length) { 42 throw new IllegalArgumentException("keys/targets length mismatch"); 45 this.keys = keys; 55 return keys;
|
/external/webkit/LayoutTests/storage/domstorage/localstorage/resources/ |
clearLocalStorage.js | 3 var keys = new Array(); 5 keys.push(key); 7 for (key in keys) 8 localStorage.removeItem(keys[key]);
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/resources/ |
clearSessionStorage.js | 3 var keys = new Array(); 5 keys.push(key); 7 for (key in keys) 8 sessionStorage.removeItem(keys[key]);
|
/external/webkit/LayoutTests/http/tests/ssl/resources/ |
no-http-referer.cgi | 8 foreach (keys %ENV) {
|
/external/webkit/Source/WebCore/platform/android/ |
SSLKeyGeneratorAndroid.cpp | 33 void getSupportedKeySizes(Vector<String>& keys) 35 keys = PlatformBridge::getSupportedKeyStrengthList();
|
/external/v8/test/cctest/ |
test-platform-tls.cc | 15 static Thread::LocalStorageKey keys[kValueCount]; variable 23 CHECK(!Thread::HasThreadLocal(keys[i])); 26 Thread::SetThreadLocal(keys[i], GetValue(i)); 29 CHECK(Thread::HasThreadLocal(keys[i])); 32 CHECK_EQ(GetValue(i), Thread::GetThreadLocal(keys[i])); 33 CHECK_EQ(GetValue(i), Thread::GetExistingThreadLocal(keys[i])); 36 Thread::SetThreadLocal(keys[i], GetValue(kValueCount - i - 1)); 39 CHECK(Thread::HasThreadLocal(keys[i])); 43 Thread::GetThreadLocal(keys[i])); 45 Thread::GetExistingThreadLocal(keys[i])) [all...] |
/external/skia/src/core/ |
SkScalar.cpp | 19 SkScalar SkScalarInterpFunc(SkScalar searchKey, const SkScalar keys[], 22 SkASSERT(keys != NULL); 26 SkASSERT(keys[i] >= keys[i-1]); 29 while (right < length && searchKey > keys[right]) 38 SkScalar rightKey = keys[right]; 39 SkScalar leftKey = keys[right-1];
|
/libcore/luni/src/main/java/java/io/ |
SerializationHandleMap.java | 28 private Object[] keys; field in class:SerializationHandleMap 45 Object[] oldKeys = keys; 48 this.keys = new Object[newSize]; 55 int index = findIndex(key, keys); 56 keys[index] = key; 63 int index = findIndex(key, keys); 64 if (keys[index] == key) { 99 int index = findIndex(_key, keys); 102 if (keys[index] != _key) { 105 index = findIndex(_key, keys); [all...] |
/external/qemu/android/utils/ |
intmap.c | 20 * One array for the integer keys, and the other one 31 int* keys; member in struct:AIntMap 47 map->keys = map->keys0; 57 if (map->keys != map->keys0) 58 AFREE(map->keys); 85 int* keys = map->keys; local 89 if (keys[index] == key) 101 void* keys = map->keys; local 128 int* keys; local 161 int* keys; local [all...] |
/external/webkit/Source/WebKit2/Shared/API/c/ |
WKDictionary.cpp | 52 RefPtr<ImmutableArray> keys = toImpl(dictionaryRef)->keys(); local 53 return toAPI(keys.release().releaseRef());
|
/external/chromium/chrome/browser/ |
accessibility_events.cc | 14 namespace keys = extension_accessibility_api_constants; 36 dict->SetString(keys::kNameKey, name_); 37 dict->SetString(keys::kTypeKey, type()); 46 return keys::kTypeWindow; 55 return keys::kTypeButton; 63 return keys::kTypeLink; 79 return keys::kTypeRadioButton; 85 dict->SetBoolean(keys::kCheckedKey, checked_); 86 dict->SetInteger(keys::kItemIndexKey, item_index_); 87 dict->SetInteger(keys::kItemCountKey, item_count_) [all...] |
/bootable/bootloader/legacy/libboot/ |
gpio_keypad.c | 50 unsigned long long keys; local 54 keys = 0; 68 keys = (keys << 1) | (gpio_get(keypad->input_gpios[in]) ^ npolarity); 69 if(((unsigned)(keypad->state >> shift) ^ (unsigned)keys) & 1) { 75 // shift, mapped_key, keys & 1); 77 key_changed(mapped_key, keys & 1); 85 if(keys != keypad->state) { 86 keypad->state = keys; 87 //dprintf("gpio_keypad_scan_keys: %x %x\n", (unsigned long)(keys >> 32), (unsigned long)keys) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
ExtendedKeyUsage.java | 46 private List<String> keys; field in class:ExtendedKeyUsage 60 if (keys == null) { 61 keys = (List<String>) ASN1.decode(getEncoded()); 63 return keys; 68 encoding = ASN1.encode(keys); 75 if (keys == null) { 77 keys = getExtendedKeyUsage(); 85 for (Iterator<?> it = keys.iterator(); it.hasNext();) {
|
/external/webkit/Tools/Scripts/ |
report-include-statistics | 71 for my $include (keys %{ $includes{$file} }) { 74 for my $i (keys %{ $totalIncludes{$include} }) { 81 for my $file (keys %includes) { 86 for my $file (keys %sources) { 87 for my $include (keys %{ $totalIncludes{$file} }) { 92 for my $file (sort mostincludedcmp keys %includes) { 95 my $numIncludes = keys %{ $includes{$file} }; 96 my $numTotalIncludes = keys %{ $totalIncludes{$file} }; 109 my $ta = keys %{ $totalIncludes{$filea} }; 110 my $tb = keys %{ $totalIncludes{$fileb} } [all...] |
/external/wpa_supplicant_8/hostapd/logwatch/ |
hostapd | 40 if (keys %hostapd) { 41 foreach my $iface (sort keys %hostapd) { 43 foreach my $mac (sort keys %{$hostapd{$iface}}) { 45 foreach my $layer (sort keys %{$hostapd{$iface}->{$mac}}) { 47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) {
|
/external/chromium/chrome/browser/extensions/ |
extension_processes_api.cc | 27 namespace keys = extension_processes_api_constants; 36 result->SetInteger(keys::kIdKey, process_id); 37 result->SetString(keys::kTypeKey, type); 38 result->SetDouble(keys::kCpuKey, cpu); 39 result->SetDouble(keys::kNetworkKey, static_cast<double>(net)); 40 result->SetDouble(keys::kPrivateMemoryKey, static_cast<double>(pr_mem)); 41 result->SetDouble(keys::kSharedMemoryKey, static_cast<double>(sh_mem)); 79 std::string type = keys::kProcessTypeOther; 83 type = keys::kProcessTypeBrowser; 86 type = keys::kProcessTypeRenderer [all...] |
extension_proxy_api_helpers.cc | 27 namespace keys = extension_proxy_api_constants; 40 std::string(keys::kPACDataUrlPrefix) + pac_script_base64_encoded; 47 if (pac_script_url_base64_encoded.find(keys::kPACDataUrlPrefix) != 0) 52 pac_script_url_base64_encoded.substr(strlen(keys::kPACDataUrlPrefix)); 67 proxy_config->GetStringASCII(keys::kProxyConfigMode, &proxy_mode); 79 proxy_config->GetDictionary(keys::kProxyConfigPacScript, &pac_dict); 85 if (pac_dict->HasKey(keys::kProxyConfigPacScriptUrl) && 86 !pac_dict->GetString(keys::kProxyConfigPacScriptUrl, &pac_url16)) { 103 proxy_config->GetDictionary(keys::kProxyConfigPacScript, &pac_dict); 108 if (pac_dict->HasKey(keys::kProxyConfigPacScriptData) & [all...] |
extension_bookmark_helpers.cc | 12 namespace keys = extension_bookmarks_module_constants; 21 dict->SetString(keys::kIdKey, base::Int64ToString(node->id())); 25 dict->SetString(keys::kParentIdKey, base::Int64ToString(parent->id())); 26 dict->SetInteger(keys::kIndexKey, parent->GetIndexOf(node)); 30 dict->SetString(keys::kUrlKey, node->GetURL().spec()); 36 dict->SetDouble(keys::kDateFolderModifiedKey, 40 dict->SetString(keys::kTitleKey, node->GetTitle()); 44 dict->SetDouble(keys::kDateAddedKey, 58 dict->Set(keys::kChildrenKey, children); 90 *error = keys::kNoNodeError [all...] |
execute_code_in_tab_function.cc | 26 namespace keys = extension_tabs_module_constants; 42 error_ = keys::kNoCodeOrFileToExecuteError; 45 bool has_code = script_info->HasKey(keys::kCodeKey); 46 bool has_file = script_info->HasKey(keys::kFileKey); 48 error_ = keys::kMoreThanOneValuesError; 51 error_ = keys::kNoCodeOrFileToExecuteError; 67 error_ = keys::kNoCurrentWindowError; 90 if (script_info->HasKey(keys::kAllFramesKey)) { 91 if (!script_info->GetBoolean(keys::kAllFramesKey, &all_frames_)) 96 if (script_info->HasKey(keys::kCodeKey)) [all...] |
/external/webkit/Tools/TestResultServer/model/ |
datastorefile.py | 61 # keys to the data store entries that can be reused for new data. 68 def delete_data(self, keys=None): 69 if not keys: 70 keys = self.data_keys 72 for key in keys: 94 keys = self.new_data_keys 98 if keys: 99 key = keys[0] 112 if keys: 113 self.delete_data(keys) [all...] |
/libcore/luni/src/test/java/tests/security/interfaces/ |
DSAPublicKeyTest.java | 39 KeyPair keys = null; local 48 keys = keyGen.generateKeyPair(); 49 priv = (DSAPrivateKey) keys.getPrivate(); 50 publ = (DSAPublicKey) keys.getPublic(); 56 keys = keyGen.generateKeyPair(); 57 priv = (DSAPrivateKey) keys.getPrivate(); 58 publ = (DSAPublicKey) keys.getPublic();
|
/external/icu4c/samples/legacy/ |
legacy.cpp | 25 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxLen, uint8_t keys[][32]); 26 extern "C" void test_legacy(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[][32]); 49 void printKeys(const char *comment, uint8_t keys[][32], int32_t keySize) { 54 currentKey = keys[i]; 88 static uint8_t keys[4][32]; local 96 test_current(uTest, 4, 5, keys); 98 printKeys("Current keys", keys, 4); 104 test_legacy(uTest, 4, 5, keys); 106 printKeys("Legacy keys", keys, 4) [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_common/ |
ikev2_common.c | 41 { ENCR_AES_CBC, 16, 16 }, /* only 128-bit keys supported for now */ 438 struct ikev2_keys *keys, int initiator, 447 const u8 *SK_p = initiator ? keys->SK_pi : keys->SK_pr; 461 if (ikev2_prf_hash(prf->id, SK_p, keys->SK_prf_len, 496 struct ikev2_keys *keys, int initiator, 507 const u8 *SK_e = initiator ? keys->SK_ei : keys->SK_er; 508 const u8 *SK_a = initiator ? keys->SK_ai : keys->SK_ar [all...] |
/external/wpa_supplicant_8/src/eap_common/ |
ikev2_common.c | 42 { ENCR_AES_CBC, 16, 16 }, /* only 128-bit keys supported for now */ 439 struct ikev2_keys *keys, int initiator, 448 const u8 *SK_p = initiator ? keys->SK_pi : keys->SK_pr; 462 if (ikev2_prf_hash(prf->id, SK_p, keys->SK_prf_len, 497 struct ikev2_keys *keys, int initiator, 508 const u8 *SK_e = initiator ? keys->SK_ei : keys->SK_er; 509 const u8 *SK_a = initiator ? keys->SK_ai : keys->SK_ar [all...] |
/external/webkit/Source/WebKit2/Shared/ |
ImmutableDictionary.cpp | 47 PassRefPtr<ImmutableArray> ImmutableDictionary::keys() const function in class:WebKit::ImmutableDictionary 55 MapType::const_iterator::Keys it = m_map.begin().keys(); 56 MapType::const_iterator::Keys end = m_map.end().keys();
|