/external/chromium_org/v8/src/ |
hashmap.h | 41 typedef bool (*MatchFun) (void* key1, void* key2);
|
profile-generator.h | 59 static bool StringsMatch(void* key1, void* key2);
|
profile-generator.cc | 44 bool StringsStorage::StringsMatch(void* key1, void* key2) { 46 reinterpret_cast<char*>(key2)) == 0;
|
/external/openssl/crypto/modes/ |
xts128.c | 73 (*ctx->block2)(tweak.c,tweak.c,ctx->key2);
|
/external/stlport/test/unit/ |
unordered_test.cpp | 595 Key key1(1), key2(2), key3(3), key4(4); 597 cont.insert(&key2); 636 Key key1(1), key2(2), key3(3), key4(4); 638 cont.insert(&key2);
|
/external/v8/src/ |
hashmap.h | 41 typedef bool (*MatchFun) (void* key1, void* key2);
|
debug.h | 186 static bool ScriptMatch(void* key1, void* key2) { return key1 == key2; } [all...] |
d8.h | 113 static bool Match(void* key1, void* key2);
|
/ndk/tests/device/test-gnustl-full/unit/ |
unordered_test.cpp | 595 Key key1(1), key2(2), key3(3), key4(4); 597 cont.insert(&key2); 636 Key key1(1), key2(2), key3(3), key4(4); 638 cont.insert(&key2);
|
/ndk/tests/device/test-stlport/unit/ |
unordered_test.cpp | 595 Key key1(1), key2(2), key3(3), key4(4); 597 cont.insert(&key2); 636 Key key1(1), key2(2), key3(3), key4(4); 638 cont.insert(&key2);
|
/external/chromium/net/disk_cache/ |
backend_unittest.cc | 990 std::string key2("Another key"); 991 ASSERT_EQ(net::OK, CreateEntry(key2, &entry2)); 1001 EXPECT_EQ(key2, entry->GetKey()); 1750 char key2[2000]; local [all...] |
/external/chromium/chrome/browser/chromeos/input_method/ |
input_method_util.cc | 292 const string16 key2 = local 294 return l10n_util::StringComparator<string16>(collator_)(key1, key2);
|
/external/chromium_org/net/spdy/ |
spdy_session_pool_unittest.cc | 173 SpdySessionKey key2(test_host_port_pair2, ProxyServer::Direct(), 176 CreateInsecureSpdySession(http_session_, key2, BoundNetLog());
|
/external/icu4c/common/ |
stringtriebuilder.cpp | 29 equalStringTrieNodes(const UHashTok key1, const UHashTok key2) { 30 return icu::StringTrieBuilder::equalNodes(key1.pointer, key2.pointer);
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
DatabaseTestBase.java | 465 long key2 = database.insert("auto_table", null, values); local 466 assertThat(key2, not(equalTo(key)));
|
/external/chromium_org/third_party/openssl/openssl/crypto/aes/ |
aes_ige.c | 215 const AES_KEY *key2, const unsigned char *ivec,
|
/external/libsepol/src/ |
hashtab.c | 39 const hashtab_key_t key2),
|
/external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/ |
TocUpdator.pm | 90 my ($key1, $value1, $key2, $value2, $result);
|
TocGenerator.pm | 148 my ($key1, $value1, $key2, $value2, $result); 152 HASH2: while (($key2, $value2) = each %$aHash2) { 155 $value1 = $aHash1->{$key2}; [all...] |
/external/openssl/crypto/aes/ |
aes_ige.c | 215 const AES_KEY *key2, const unsigned char *ivec,
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
HashMapTest.java | 243 map2.put("key2", "value3"); 244 Set key2 = map2.keySet(); local 245 assertTrue("keySet() is identical", key2 != keys); 247 "key2", key2.iterator().next());
|
LinkedHashMapTest.java | 368 map2.put("key2", "value3"); 369 Set key2 = map2.keySet(); local 370 assertTrue("keySet() is identical", key2 != keys); 372 "key2", key2.iterator().next());
|
/external/chromium_org/third_party/bintrees/bintrees/ |
ctrees.c | 79 ct_compare(PyObject *key1, PyObject *key2) 83 res = PyObject_RichCompareBool(key1, key2, Py_LT); 91 +1 if key1 > key2 95 return PyObject_RichCompareBool(key1, key2, Py_GT);
|
/external/smack/src/org/jivesoftware/smack/util/collections/ |
AbstractHashedMap.java | 377 * @param key2 the second key extracted from the entry via <code>entry.key</code> 380 protected boolean isEqualKey(Object key1, Object key2) { 381 return (key1 == key2 || ((key1 != null) && key1.equals(key2))); [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
LinkedHashMapTest.java | 389 map2.put("key2", "value3"); 390 Set key2 = map2.keySet(); local 391 assertTrue("keySet() is identical", key2 != keys); 393 "key2", key2.iterator().next());
|