HomeSort by relevance Sort by last modified time
    Searched full:key1 (Results 126 - 150 of 386) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
pubsubtasks_unittest.cc 110 " <item id='key1'>"
123 EXPECT_EQ("key1", listener->items[1].itemid);
157 " <item id='key1'>"
176 EXPECT_EQ("key1", listener->items[1].itemid);
  /external/icu4c/i18n/
scriptset.h 68 uhash_compareScriptSet(const UElement key1, const UElement key2);
  /external/icu4c/test/cintltst/
chashtst.c 28 static UBool U_EXPORT2 U_CALLCONV isEqualChars(const UHashTok key1, const UHashTok key2);
326 static UBool U_EXPORT2 U_CALLCONV isEqualChars(const UHashTok key1, const UHashTok key2) {
327 return (UBool)((key1.pointer != NULL) &&
329 (uprv_strcmp((const char*)key1.pointer, (const char*)key2.pointer) == 0));
  /libcore/luni/src/test/java/libcore/java/util/
OldLinkedHashMapTest.java 31 map.put("key1", "value1");
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESKeySpecTest.java 177 byte[] key1 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0};
179 ks = new DESKeySpec(key1, 2);
186 + "as specified in a constructor.", key1, res);
188 System.arraycopy(key1, 2, exp, 0, 8);
  /external/chromium_org/third_party/icu/source/common/
uhash.c 917 const UHashTok key1 = elem1->key; local
923 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1));
937 uhash_compareUChars(const UHashTok key1, const UHashTok key2) {
938 const UChar *p1 = (const UChar*) key1.pointer;
954 uhash_compareChars(const UHashTok key1, const UHashTok key2) {
955 const char *p1 = (const char*) key1.pointer;
971 uhash_compareIChars(const UHashTok key1, const UHashTok key2) {
972 const char *p1 = (const char*) key1.pointer;
997 uhash_compareLong(const UHashTok key1, const UHashTok key2)
    [all...]
unistr_case.cpp 235 uhash_compareCaselessUnicodeString(const UHashTok key1, const UHashTok key2) {
237 const UnicodeString *str1 = (const UnicodeString*) key1.pointer;
  /external/icu4c/common/
uhash.c 891 const UHashTok key1 = elem1->key; local
897 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1));
911 uhash_compareUChars(const UHashTok key1, const UHashTok key2) {
912 const UChar *p1 = (const UChar*) key1.pointer;
928 uhash_compareChars(const UHashTok key1, const UHashTok key2) {
929 const char *p1 = (const char*) key1.pointer;
945 uhash_compareIChars(const UHashTok key1, const UHashTok key2) {
946 const char *p1 = (const char*) key1.pointer;
971 uhash_compareLong(const UHashTok key1, const UHashTok key2)
    [all...]
unistr_case.cpp 169 uhash_compareCaselessUnicodeString(const UElement key1, const UElement key2) {
171 const UnicodeString *str1 = (const UnicodeString*) key1.pointer;
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_data_source_test.py 202 "key1": {
235 "key1": {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_hash_table.c 58 int (*compare)(void *key1, void *key2);
80 int (*compare)(void *key1, void *key2))
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
hash_table.c 232 hash_table_pointer_compare(const void *key1, const void *key2)
234 return key1 == key2 ? 0 : 1;
  /external/mesa3d/src/gallium/auxiliary/util/
u_hash_table.c 58 int (*compare)(void *key1, void *key2);
80 int (*compare)(void *key1, void *key2))
  /external/mesa3d/src/mesa/program/
hash_table.c 232 hash_table_pointer_compare(const void *key1, const void *key2)
234 return key1 == key2 ? 0 : 1;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DynamicGridKeyboard.java 59 final Key key1 = getTemplateKey(TEMPLATE_KEY_CODE_1); local
60 mHorizontalStep = Math.abs(key1.getX() - key0.getX());
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
e_aes.c 93 const AES_KEY *key1, const AES_KEY *key2,
136 size_t len, const AES_KEY *key1,
139 size_t len, const AES_KEY *key1,
149 const AES_KEY *key1, const AES_KEY *key2,
152 const AES_KEY *key1, const AES_KEY *key2,
206 const AES_KEY *key1, const AES_KEY *key2,
212 const AES_KEY *key1, const AES_KEY *key2,
373 xctx->xts.key1 = &xctx->ks1;
1046 /* key1 and key2 are used as an indicator both key and IV are set */
1047 xctx->xts.key1 = NULL
    [all...]
  /external/openssl/crypto/evp/
e_aes.c 93 const AES_KEY *key1, const AES_KEY *key2,
136 size_t len, const AES_KEY *key1,
139 size_t len, const AES_KEY *key1,
149 const AES_KEY *key1, const AES_KEY *key2,
152 const AES_KEY *key1, const AES_KEY *key2,
206 const AES_KEY *key1, const AES_KEY *key2,
212 const AES_KEY *key1, const AES_KEY *key2,
373 xctx->xts.key1 = &xctx->ks1;
1046 /* key1 and key2 are used as an indicator both key and IV are set */
1047 xctx->xts.key1 = NULL
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeMapTest.java 286 Integer key1 = 1; local
288 assertNull(tm.put(key1, o));
292 assertSame(tm.get(key1), tm.get(key2));
293 assertSame(o, tm.put(key1, o2));
294 assertSame(o2, tm.get(key1));
578 treeMapWithNull.put("key1", "value1"); //$NON-NLS-1$ //$NON-NLS-2$
581 "key1"); //$NON-NLS-1$
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/doc/
index.html 65 moves the value stored under key1 to key2.
68 leveldb::Status s = db-&gt;Get(leveldb::ReadOptions(), key1, &amp;value);
70 if (s.ok()) s = db-&gt;Delete(leveldb::WriteOptions(), key1);
76 delete of key1, the same value may be left stored under multiple keys.
84 leveldb::Status s = db-&gt;Get(leveldb::ReadOptions(), key1, &amp;value);
87 batch.Delete(key1);
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/icu/source/i18n/unicode/
sortkey.h 215 * . CollationKey key1, key2;
217 * . myCollation->getCollationKey("abc", key1, status1);
221 * . // key1.hashCode() != key2.hashCode()
  /external/chromium_org/third_party/smhasher/src/
KeysetTest.cpp 104 uint8_t * key1 = &buffer1[pad]; local
110 memcpy(key2,key1,len);
112 hash(key1,len,0,hash1);
  /external/icu4c/i18n/unicode/
sortkey.h 217 * . CollationKey key1, key2;
219 * . myCollation->getCollationKey("abc", key1, status1);
223 * . // key1.hashCode() != key2.hashCode()
  /external/chromium/third_party/libjingle/source/talk/base/
linux.h 48 // std::string val1 = key_val_pairs[section_num][key1];
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
user_image_source.cc 27 // "chrome://userimage/user@host?key1=value1&...&key_n=value_n",
  /external/chromium_org/remoting/host/
client_session_unittest.cc 426 protocol::KeyEvent key1; local
427 key1.set_pressed(true);
428 key1.set_usb_keycode(1);
454 InjectKeyEvent(connection_, key1),

Completed in 728 milliseconds

1 2 3 4 56 7 8 91011>>