Home
last modified time | relevance | path

Searched full:key1 (Results 1 – 25 of 465) sorted by relevance

12345678910>>...19

/external/boringssl/src/crypto/cmac/
Dcavp_3des_cmac_tests.txt13 Key1 = 3bb96170d5df4cce
24 Key1 = 9413d38685688f58
29 Result = F (4 - Key or Key1 changed)
35 Key1 = 101a2f13fbb69473
46 Key1 = 2f8a238552c1e367
57 Key1 = c1bafb5dc7100758
68 Key1 = c82c29f1cb5851b6
79 Key1 = 6b455116f4f883d5
90 Key1 = c873d5bc4598d0b0
101 Key1 = 45ce943bd31fe9b5
[all …]
/external/grpc-grpc-java/context/src/test/java/io/grpc/
DPersistentHashArrayMappedTrieTest.java51 Key key1 = new Key(0); in leaf_collision() local
55 Leaf<Key, Object> leaf = new Leaf<Key, Object>(key1, value1); in leaf_collision()
58 assertSame(value1, ret.get(key1, key1.hashCode(), 0)); in leaf_collision()
61 assertSame(value1, leaf.get(key1, key1.hashCode(), 0)); in leaf_collision()
70 Key key1 = new Key(0); in leaf_insert() local
74 Leaf<Key, Object> leaf = new Leaf<Key, Object>(key1, value1); in leaf_insert()
77 assertSame(value1, ret.get(key1, key1.hashCode(), 0)); in leaf_insert()
80 assertSame(value1, leaf.get(key1, key1.hashCode(), 0)); in leaf_insert()
89 Key key1 = new Key(0); in collisionLeaf_assertKeysDifferent() local
90 new CollisionLeaf<Key, Object>(key1, new Object(), key1, new Object()); in collisionLeaf_assertKeysDifferent()
[all …]
/external/curl/tests/unit/
Dunit1603.c52 char key1[] = "key1"; variable
63 if(Curl_hash_str(key1, strlen(key1), slots) != 1 ||
70 nodep = Curl_hash_add(&hash_static, &key1, strlen(key1), &key1);
72 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
73 fail_unless(nodep == key1, "hash retrieval failed");
92 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
93 fail_unless(nodep == key1, "hash retrieval failed");
104 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
105 fail_unless(nodep == key1, "hash retrieval failed");
116 rc = Curl_hash_delete(&hash_static, &key1, strlen(key1));
[all …]
/external/python/cpython2/Lib/test/
Dtest_shelve.py16 s['key1'] = [1,2,3,4]
17 self.assertEqual(s['key1'], [1,2,3,4])
22 s['key1']
31 s['key1'] = (1,2,3,4)
32 self.assertEqual(s['key1'], (1,2,3,4))
41 s['key1'] = (1,2,3,4)
42 self.assertEqual(s['key1'], (1,2,3,4))
51 s['key1'] = (1,2,3,4)
52 self.assertEqual(s['key1'], (1,2,3,4))
61 s['key1'] = (1,2,3,4)
[all …]
/external/python/cpython3/Lib/test/
Dtest_shelve.py53 s['key1'] = [1,2,3,4]
54 self.assertEqual(s['key1'], [1,2,3,4])
59 s['key1']
68 s['key1'] = (1,2,3,4)
69 self.assertEqual(s['key1'], (1,2,3,4))
76 s['key1'] = (1,2,3,4)
77 self.assertEqual(s['key1'], (1,2,3,4))
84 s['key1'] = (1,2,3,4)
85 self.assertEqual(s['key1'], (1,2,3,4))
92 s['key1'] = (1,2,3,4)
[all …]
/external/guice/core/test/com/google/inject/internal/
DWeakKeySetTest.java110 Key<Integer> key1 = Key.get(Integer.class); in testEviction_keyOverlap_2x() local
115 set.add(key1, state1, source1); in testEviction_keyOverlap_2x()
116 assertInSet(set, key1, 1, source1); in testEviction_keyOverlap_2x()
121 WeakReference<Key<Integer>> weakKey1Ref = new WeakReference<>(key1); in testEviction_keyOverlap_2x()
126 Key<Integer> key = key1 = key2 = Key.get(Integer.class); in testEviction_keyOverlap_2x()
137 // Key1 will be referenced as the key in the sources backingSet and won't be in testEviction_keyOverlap_2x()
151 // Now that the backing set is emptied, key1 is released. in testEviction_keyOverlap_2x()
158 Key<Integer> key1 = Key.get(Integer.class); in testNoEviction_keyOverlap_2x() local
163 set.add(key1, state1, source1); in testNoEviction_keyOverlap_2x()
164 assertInSet(set, key1, 1, source1); in testNoEviction_keyOverlap_2x()
[all …]
/external/mockftpserver/tags/2.1/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java37 private static final String KEY1 = "key1"; field in InvocationRecordTest
76 invocationRecord.set(KEY1, null); in testSet_NullValue()
77 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
84 invocationRecord.set(KEY1, STRING); in testContainsKey()
85 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
107 invocationRecord.set(KEY1, STRING); in testGetString()
108 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
129 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
131 invocationRecord.getString(KEY1); in testGetString_NotAString()
144 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.5/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java38 private static final String KEY1 = "key1"; field in InvocationRecordTest
77 invocationRecord.set(KEY1, null); in testSet_NullValue()
78 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
85 invocationRecord.set(KEY1, STRING); in testContainsKey()
86 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
108 invocationRecord.set(KEY1, STRING); in testGetString()
109 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
130 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
132 invocationRecord.getString(KEY1); in testGetString_NotAString()
145 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.2/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java37 private static final String KEY1 = "key1"; field in InvocationRecordTest
76 invocationRecord.set(KEY1, null); in testSet_NullValue()
77 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
84 invocationRecord.set(KEY1, STRING); in testContainsKey()
85 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
107 invocationRecord.set(KEY1, STRING); in testGetString()
108 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
129 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
131 invocationRecord.getString(KEY1); in testGetString_NotAString()
144 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.4/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java38 private static final String KEY1 = "key1"; field in InvocationRecordTest
77 invocationRecord.set(KEY1, null); in testSet_NullValue()
78 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
85 invocationRecord.set(KEY1, STRING); in testContainsKey()
86 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
108 invocationRecord.set(KEY1, STRING); in testGetString()
109 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
130 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
132 invocationRecord.getString(KEY1); in testGetString_NotAString()
145 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java37 private static final String KEY1 = "key1"; field in InvocationRecordTest
76 invocationRecord.set(KEY1, null); in testSet_NullValue()
77 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
84 invocationRecord.set(KEY1, STRING); in testContainsKey()
85 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
107 invocationRecord.set(KEY1, STRING); in testGetString()
108 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
129 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
131 invocationRecord.getString(KEY1); in testGetString_NotAString()
144 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.0.1/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java37 private static final String KEY1 = "key1"; field in InvocationRecordTest
76 invocationRecord.set(KEY1, null); in testSet_NullValue()
77 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
84 invocationRecord.set(KEY1, STRING); in testContainsKey()
85 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
107 invocationRecord.set(KEY1, STRING); in testGetString()
108 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
129 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
131 invocationRecord.getString(KEY1); in testGetString_NotAString()
144 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java38 private static final String KEY1 = "key1"; field in InvocationRecordTest
77 invocationRecord.set(KEY1, null); in testSet_NullValue()
78 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
85 invocationRecord.set(KEY1, STRING); in testContainsKey()
86 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
108 invocationRecord.set(KEY1, STRING); in testGetString()
109 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
130 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
132 invocationRecord.getString(KEY1); in testGetString_NotAString()
145 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java37 private static final String KEY1 = "key1"; field in InvocationRecordTest
76 invocationRecord.set(KEY1, null); in testSet_NullValue()
77 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
84 invocationRecord.set(KEY1, STRING); in testContainsKey()
85 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
107 invocationRecord.set(KEY1, STRING); in testGetString()
108 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
129 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
131 invocationRecord.getString(KEY1); in testGetString_NotAString()
144 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.0/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java37 private static final String KEY1 = "key1"; field in InvocationRecordTest
76 invocationRecord.set(KEY1, null); in testSet_NullValue()
77 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
84 invocationRecord.set(KEY1, STRING); in testContainsKey()
85 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
107 invocationRecord.set(KEY1, STRING); in testGetString()
108 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
129 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
131 invocationRecord.getString(KEY1); in testGetString_NotAString()
144 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.0.2/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java37 private static final String KEY1 = "key1"; field in InvocationRecordTest
76 invocationRecord.set(KEY1, null); in testSet_NullValue()
77 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
84 invocationRecord.set(KEY1, STRING); in testContainsKey()
85 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
107 invocationRecord.set(KEY1, STRING); in testGetString()
108 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
129 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
131 invocationRecord.getString(KEY1); in testGetString_NotAString()
144 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java37 private static final String KEY1 = "key1"; field in InvocationRecordTest
76 invocationRecord.set(KEY1, null); in testSet_NullValue()
77 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
84 invocationRecord.set(KEY1, STRING); in testContainsKey()
85 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
107 invocationRecord.set(KEY1, STRING); in testGetString()
108 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
129 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
131 invocationRecord.getString(KEY1); in testGetString_NotAString()
144 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/1.1/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java40 private static final String KEY1 = "key1"; field in InvocationRecordTest
79 invocationRecord.set(KEY1, null); in testSet_NullValue()
80 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
87 invocationRecord.set(KEY1, STRING); in testContainsKey()
88 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
110 invocationRecord.set(KEY1, STRING); in testGetString()
111 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
132 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
134 invocationRecord.getString(KEY1); in testGetString_NotAString()
147 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java40 private static final String KEY1 = "key1"; field in InvocationRecordTest
79 invocationRecord.set(KEY1, null); in testSet_NullValue()
80 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
87 invocationRecord.set(KEY1, STRING); in testContainsKey()
88 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
110 invocationRecord.set(KEY1, STRING); in testGetString()
111 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
132 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
134 invocationRecord.getString(KEY1); in testGetString_NotAString()
147 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/1.2.3/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java40 private static final String KEY1 = "key1"; field in InvocationRecordTest
79 invocationRecord.set(KEY1, null); in testSet_NullValue()
80 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
87 invocationRecord.set(KEY1, STRING); in testContainsKey()
88 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
110 invocationRecord.set(KEY1, STRING); in testGetString()
111 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
132 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
134 invocationRecord.getString(KEY1); in testGetString_NotAString()
147 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/vboot_reference/tests/
Dvb20_common2_tests.c24 static void test_unpack_key(const struct vb2_packed_key *key1) in test_unpack_key() argument
32 uint32_t size = key1->key_offset + key1->key_size; in test_unpack_key()
36 memcpy(key, key1, size); in test_unpack_key()
45 memcpy(key, key1, size); in test_unpack_key()
51 memcpy(key, key1, size); in test_unpack_key()
57 memcpy(key, key1, size); in test_unpack_key()
63 memcpy(key, key1, size); in test_unpack_key()
69 memcpy(key, key1, size); in test_unpack_key()
77 static void test_verify_data(const struct vb2_packed_key *key1, in test_verify_data() argument
84 uint32_t pubkey_size = key1->key_offset + key1->key_size; in test_verify_data()
[all …]
/external/mockftpserver/tags/1.2/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java40 private static final String KEY1 = "key1"; field in InvocationRecordTest
79 invocationRecord.set(KEY1, null); in testSet_NullValue()
80 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
87 invocationRecord.set(KEY1, STRING); in testContainsKey()
88 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
110 invocationRecord.set(KEY1, STRING); in testGetString()
111 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
132 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
134 invocationRecord.getString(KEY1); in testGetString_NotAString()
147 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/2.0-rc1/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java40 private static final String KEY1 = "key1"; field in InvocationRecordTest
79 invocationRecord.set(KEY1, null); in testSet_NullValue()
80 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
87 invocationRecord.set(KEY1, STRING); in testContainsKey()
88 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
110 invocationRecord.set(KEY1, STRING); in testGetString()
111 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
132 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
134 invocationRecord.getString(KEY1); in testGetString_NotAString()
147 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/1.2.2/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java40 private static final String KEY1 = "key1"; field in InvocationRecordTest
79 invocationRecord.set(KEY1, null); in testSet_NullValue()
80 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
87 invocationRecord.set(KEY1, STRING); in testContainsKey()
88 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
110 invocationRecord.set(KEY1, STRING); in testGetString()
111 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
132 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
134 invocationRecord.getString(KEY1); in testGetString_NotAString()
147 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]
/external/mockftpserver/tags/1.2.4/src/test/java/org/mockftpserver/core/command/
DInvocationRecordTest.java40 private static final String KEY1 = "key1"; field in InvocationRecordTest
79 invocationRecord.set(KEY1, null); in testSet_NullValue()
80 assertNull(KEY1, invocationRecord.getObject(KEY1)); in testSet_NullValue()
87 invocationRecord.set(KEY1, STRING); in testContainsKey()
88 assertTrue(KEY1, invocationRecord.containsKey(KEY1)); in testContainsKey()
110 invocationRecord.set(KEY1, STRING); in testGetString()
111 assertEquals(KEY1, STRING, invocationRecord.getString(KEY1)); in testGetString()
132 invocationRecord.set(KEY1, INT); in testGetString_NotAString()
134 invocationRecord.getString(KEY1); in testGetString_NotAString()
147 invocationRecord.set(KEY1, STRING); in testGetObject()
[all …]

12345678910>>...19