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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/icu/source/common/
uhash.c 937 uhash_compareUChars(const UHashTok key1, const UHashTok key2) {
939 const UChar *p2 = (const UChar*) key2.pointer;
954 uhash_compareChars(const UHashTok key1, const UHashTok key2) {
956 const char *p2 = (const char*) key2.pointer;
971 uhash_compareIChars(const UHashTok key1, const UHashTok key2) {
973 const char *p2 = (const char*) key2.pointer;
997 uhash_compareLong(const UHashTok key1, const UHashTok key2) {
998 return (UBool)(key1.integer == key2.integer);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_cache.c 71 int (*compare)(const void *key1, const void *key2);
91 int (*compare)(const void *key1, const void *key2),
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
hash_table.h 50 typedef int (*hash_compare_func_t)(const void *key1, const void *key2);
182 hash_table_pointer_compare(const void *key1, const void *key2);
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
read2pwd.c 129 int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt,
136 DES_string_to_2keys(buf,key1,key2);
  /external/chromium_org/v8/src/
allocation-tracker.cc 143 static bool AddressesMatch(void* key1, void* key2) {
144 return key1 == key2;
interface.cc 35 static bool Match(void* key1, void* key2) {
37 String* name2 = *static_cast<String**>(key2);
  /external/chromium_org/v8/src/third_party/vtune/
vtune-jit.cc 116 bool operator () (void* key1, void* key2) const {
117 return key1 == key2;
  /external/icu4c/common/
uhash.c 911 uhash_compareUChars(const UHashTok key1, const UHashTok key2) {
913 const UChar *p2 = (const UChar*) key2.pointer;
928 uhash_compareChars(const UHashTok key1, const UHashTok key2) {
930 const char *p2 = (const char*) key2.pointer;
945 uhash_compareIChars(const UHashTok key1, const UHashTok key2) {
947 const char *p2 = (const char*) key2.pointer;
971 uhash_compareLong(const UHashTok key1, const UHashTok key2) {
972 return (UBool)(key1.integer == key2.integer);
  /external/icu4c/i18n/
scriptset.cpp 245 uhash_equalsScriptSet(const UElement key1, const UElement key2) {
247 icu::ScriptSet *s2 = static_cast<icu::ScriptSet *>(key2.pointer);
  /external/mesa3d/src/gallium/auxiliary/util/
u_cache.c 71 int (*compare)(const void *key1, const void *key2);
91 int (*compare)(const void *key1, const void *key2),
  /external/mesa3d/src/mesa/program/
hash_table.h 50 typedef int (*hash_compare_func_t)(const void *key1, const void *key2);
182 hash_table_pointer_compare(const void *key1, const void *key2);
  /external/openssl/crypto/des/
read2pwd.c 129 int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt,
136 DES_string_to_2keys(buf,key1,key2);
  /external/v8/src/
interface.cc 35 static bool Match(void* key1, void* key2) {
37 String* name2 = *static_cast<String**>(key2);
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerSubtype.java 114 * example: key0,key1=value1,key2,key3,key4=value4
124 * example: key0,key1=value1,key2,key3,key4=value4
  /frameworks/base/tools/obbtool/
mkobb.sh 117 hidden_prompt "Encryption key (again): " key2
119 if [ "${key}x" != "${key2}x" ]; then \
  /cts/tests/tests/os/src/android/os/cts/
BundleTest.java 47 private static final String KEY2 = "key2";
251 assertNull(mBundle.getCharSequence(KEY2));
253 mBundle.putCharSequence(KEY2, mSpannable);
255 assertSpannableEquals(mSpannable, mBundle.getCharSequence(KEY2));
258 assertSpannableEquals(mSpannable, mBundle.getCharSequence(KEY2));
  /external/icu4c/test/intltest/
regcoll.cpp 1136 uint8_t key1[100], key2[100]; local
1144 len2 = calcKeyIncremental(coll, text2[i], -1, key2, sizeof(key2), status);
1150 if (len1 == len2 && uprv_memcmp(key1, key2, len1) == 0) {
1153 logln(UnicodeString("Keys produced -\n") + " text1: " + text1[i] + "\n" + " key1 : " + TestUtility::hex(key1, len1) + "\n" + " text2: " + text2[i] + "\n" + " key2 : "
1154 + TestUtility::hex(key2, len2));
1192 CollationKey key1, key2; local
    [all...]
  /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/leveldatabase/src/doc/
index.html 65 moves the value stored under key1 to key2.
69 if (s.ok()) s = db-&gt;Put(leveldb::WriteOptions(), key2, value);
75 Note that if the process dies after the Put of key2 but before the
88 batch.Put(key2, value);
94 called <code>Delete</code> before <code>Put</code> so that if <code>key1</code> is identical to <code>key2</code>,
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_types.cpp 489 const glsl_type *const key2 = (glsl_type *) b; local
494 if (strcmp(key1->name, key2->name) != 0)
497 if (key1->length != key2->length)
501 if (key1->fields.structure[i].type != key2->fields.structure[i].type)
504 key2->fields.structure[i].name) != 0)
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
KnownHosts.java 484 private boolean matchKeys(Object key1, Object key2)
486 if ((key1 instanceof RSAPublicKey) && (key2 instanceof RSAPublicKey))
489 RSAPublicKey remoteRSAKey = (RSAPublicKey) key2;
504 if ((key1 instanceof DSAPublicKey) && (key2 instanceof DSAPublicKey))
507 DSAPublicKey remoteDSAKey = (DSAPublicKey) key2;
  /external/mesa3d/src/glsl/
glsl_types.cpp 489 const glsl_type *const key2 = (glsl_type *) b; local
494 if (strcmp(key1->name, key2->name) != 0)
497 if (key1->length != key2->length)
501 if (key1->fields.structure[i].type != key2->fields.structure[i].type)
504 key2->fields.structure[i].name) != 0)
  /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());
  /external/chromium/net/disk_cache/
entry_unittest.cc 641 std::string key2("Second key");
642 ASSERT_EQ(net::OK, CreateEntry(key2, &entry));
648 ASSERT_EQ(net::OK, OpenEntry(key2, &entry));
657 ASSERT_EQ(net::OK, OpenEntry(key2, &entry));
665 ASSERT_EQ(net::OK, OpenEntry(key2, &entry));
673 ASSERT_EQ(net::OK, OpenEntry(key2, &entry));
    [all...]

Completed in 1028 milliseconds

1 2 3 4 5 6 78 91011>>