Searched defs:key2 (Results 1 - 25 of 113) sorted by relevance

12345

/external/v8/test/mjsunit/es6/
H A Dcomputed-property-names-object-literals-methods.js88 var key2 = {
98 [key2]() { return 'D'; },
H A Dcomputed-property-names-classes.js158 var key2 = {
168 [key2]() { return 'D'; }
190 var key2 = {
202 [key2]() { return 'D'; }
H A Dcomputed-property-names.js69 var key2 = {
79 [key2]: 'D',
99 var key2 = {
111 [key2]: 'D',
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
H A DEncodedKeySpec2Test.java62 private boolean isEqual(Key key1, Key key2) { argument
63 if (key1 instanceof DSAPublicKey && key2 instanceof DSAPublicKey) {
65 DSAPublicKey dsa2 = ((DSAPublicKey) key2);
72 && key2 instanceof DSAPrivateKey) {
74 DSAPrivateKey dsa2 = ((DSAPrivateKey) key2);
/external/curl/tests/unit/
H A Dunit1602.c54 int key2 = 25; variable
76 Curl_hash_add(&hash_static, &key2, klen, value2);
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dhandle.c53 compare(void *key1, void *key2) argument
55 if (key1 < key2)
57 else if (key1 > key2)
/external/mesa3d/src/gallium/tests/unit/
H A Du_cache_test.c61 cache_test_compare(const void *key1, const void *key2) { argument
62 return !(key1 == key2);
/external/selinux/libsepol/src/
H A Dsymtab.c31 hashtab_key_t key2)
36 keyp2 = (char *)key2;
29 symcmp(hashtab_t h __attribute__ ((unused)), hashtab_key_t key1, hashtab_key_t key2) argument
/external/icu/icu4c/source/test/intltest/
H A Duvectest.cpp70 UVectorTest_compareInt32(UElement key1, UElement key2) { argument
71 if (key1.integer > key2.integer) {
74 else if (key1.integer < key2.integer) {
82 UVectorTest_compareCstrings(const UElement key1, const UElement key2) { argument
83 return !strcmp((const char *)key1.pointer, (const char *)key2.pointer);
164 static UBool U_CALLCONV neverTRUE(const UElement /*key1*/, const UElement /*key2*/) {
/external/libdrm/amdgpu/
H A Dutil_hash_table.c59 int (*compare)(void *key1, void *key2);
77 int (*compare)(void *key1, void *key2))
76 util_hash_table_create(unsigned (*hash)(void *key), int (*compare)(void *key1, void *key2)) argument
H A Damdgpu_device.c59 static int handle_compare(void *key1, void *key2) argument
61 return PTR_TO_UINT(key1) != PTR_TO_UINT(key2);
82 static int fd_compare(void *key1, void *key2) argument
85 int fd2 = PTR_TO_UINT(key2);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_hash_table.c58 int (*compare)(void *key1, void *key2);
80 int (*compare)(void *key1, void *key2))
79 util_hash_table_create(unsigned (*hash)(void *key), int (*compare)(void *key1, void *key2)) argument
/external/selinux/libsepol/cil/src/
H A Dcil_strpool.c60 static int cil_strpool_compare(hashtab_t h __attribute__ ((unused)), hashtab_key_t key1, hashtab_key_t key2) argument
63 char *keyp2 = (char*)key2;
H A Dcil_symtab.h51 intptr_t key2; member in struct:cil_complex_symtab_key
/external/skia/tests/
H A DGpuDrawPathTest.cpp107 GrUniqueKey key1, key2; local
110 GrPath::ComputeKey(path2, stroke, &key2, &isVolatile);
111 REPORTER_ASSERT(reporter, key1 != key2);
/external/boringssl/src/decrepit/xts/
H A Dxts.c60 void *key1, *key2; member in struct:xts128_context
78 (*ctx->block2)(tweak.c, tweak.c, ctx->key2);
202 xctx->xts.key2 = &xctx->ks2;
213 !xctx->xts.key2 ||
234 if (xctx->xts.key2) {
235 if (xctx->xts.key2 != &xctx->ks2) {
238 xctx_out->xts.key2 = &xctx_out->ks2;
244 /* key1 and key2 are used as an indicator both key and IV are set */
246 xctx->xts.key2 = NULL;
/external/icu/icu4c/source/common/
H A Dunistr_case.cpp169 uhash_compareCaselessUnicodeString(const UElement key1, const UElement key2) { argument
172 const UnicodeString *str2 = (const UnicodeString*) key2.pointer;
/external/icu/icu4c/source/test/cintltst/
H A Dchashtst.c28 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) { argument
328 (key2.pointer != NULL) &&
329 (uprv_strcmp((const char*)key1.pointer, (const char*)key2.pointer) == 0));
/external/mesa3d/src/mesa/program/
H A Dhash_table.c232 hash_table_pointer_compare(const void *key1, const void *key2) argument
234 return key1 == key2 ? 0 : 1;
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
H A DAbstractCommandHandlerTestCase.java108 * @param key2 - the expected key2
112 String key2, Object value2) {
117 assertEqualsAllTypes("value2:" + value2, value2, invocationRecord.getObject(key2));
111 verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, String key2, Object value2) argument
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
H A DAbstractCommandHandlerTest.java115 * @param key2 - the expected key2
119 String key2, Object value2) {
124 assertEqualsAllTypes("value2:" + value2, value2, invocationRecord.getObject(key2));
118 verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, String key2, Object value2) argument
/external/mockftpserver/tags/1.0/src/test/java/org/mockftpserver/stub/command/
H A DAbstractCommandHandlerTest.java115 * @param key2 - the expected key2
119 String key2, Object value2) {
124 assertEqualsAllTypes("value2:" + value2, value2, invocationRecord.getObject(key2));
118 verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, String key2, Object value2) argument
/external/mockftpserver/tags/1.1/src/test/java/org/mockftpserver/stub/command/
H A DAbstractCommandHandlerTest.java115 * @param key2 - the expected key2
119 String key2, Object value2) {
124 assertEqualsAllTypes("value2:" + value2, value2, invocationRecord.getObject(key2));
118 verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, String key2, Object value2) argument
/external/mockftpserver/tags/1.2/src/test/java/org/mockftpserver/stub/command/
H A DAbstractCommandHandlerTest.java115 * @param key2 - the expected key2
119 String key2, Object value2) {
124 assertEqualsAllTypes("value2:" + value2, value2, invocationRecord.getObject(key2));
118 verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, String key2, Object value2) argument
/external/mockftpserver/tags/1.2.1/src/test/java/org/mockftpserver/stub/command/
H A DAbstractCommandHandlerTest.java115 * @param key2 - the expected key2
119 String key2, Object value2) {
124 assertEqualsAllTypes("value2:" + value2, value2, invocationRecord.getObject(key2));
118 verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, String key2, Object value2) argument

Completed in 922 milliseconds

12345