Home
last modified time | relevance | path

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

12345678910>>...43

/external/boringssl/src/crypto/fipsmodule/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/cronet/third_party/boringssl/src/crypto/fipsmodule/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/sdv/vsomeip/third_party/boost/spirit/test/x3/
Dfusion_map.cpp18 std::string key1; member
27 (std::string, key1, class key1_attr)
49 auto const key1 = lit("key1") >> attr(key1_attr()); in main() local
50 auto const kv1 = key1 >> lit("=") >> +char_; in main()
54 BOOST_TEST(test_attr("key1=ABC", kv1, attr_)); in main()
59 BOOST_TEST(test_attr("key1=ABC", kv1, attr_)); in main()
60 BOOST_TEST(attr_.key1 == "ABC"); in main()
66 auto const key1 = lit("key1") >> attr(key1_attr()); in main() local
67 auto const kv1 = key1 >> lit("=") >> +~char_(';'); in main()
70 BOOST_TEST(test_attr("key1=ABC", eps >> (kv1 % ';') , attr_)); in main()
[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<>(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<>(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()
90 Key key1 = new Key(0); in collisionLeaf_assertKeysDifferent() local
92 new CollisionLeaf<>(key1, new Object(), key1, new Object()); in collisionLeaf_assertKeysDifferent()
[all …]
/external/curl/tests/unit/
Dunit1603.c55 char key1[] = "key1"; variable
66 if(Curl_hash_str(key1, strlen(key1), slots) != 1 ||
73 nodep = Curl_hash_add(&hash_static, &key1, strlen(key1), &key1);
75 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
76 fail_unless(nodep == key1, "hash retrieval failed");
95 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
96 fail_unless(nodep == key1, "hash retrieval failed");
107 nodep = Curl_hash_pick(&hash_static, &key1, strlen(key1));
108 fail_unless(nodep == key1, "hash retrieval failed");
119 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/lottie/snapshot-tests/src/main/assets/lottiefiles/
Dhardware.json1key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }…
/external/openscreen/discovery/dnssd/impl/
Dinstance_key_unittest.cc18 InstanceKey key1("instance", "_service._udp", "domain"); in TEST() local
20 EXPECT_TRUE(key1 == key2); in TEST()
21 EXPECT_FALSE(key1 != key2); in TEST()
23 key1 = InstanceKey("instance", "_service2._udp", "domain"); in TEST()
24 EXPECT_FALSE(key1 == key2); in TEST()
25 EXPECT_TRUE(key1 != key2); in TEST()
27 EXPECT_TRUE(key1 == key2); in TEST()
28 EXPECT_FALSE(key1 != key2); in TEST()
30 key1 = InstanceKey("instance", "_service2._udp", "domain2"); in TEST()
31 EXPECT_FALSE(key1 == key2); in TEST()
[all …]
Dservice_key_unittest.cc17 ServiceKey key1("_service._udp", "domain"); in TEST() local
19 EXPECT_TRUE(key1 == key2); in TEST()
20 EXPECT_FALSE(key1 != key2); in TEST()
22 key1 = ServiceKey("_service2._udp", "domain"); in TEST()
23 EXPECT_FALSE(key1 == key2); in TEST()
24 EXPECT_TRUE(key1 != key2); in TEST()
26 EXPECT_TRUE(key1 == key2); in TEST()
27 EXPECT_FALSE(key1 != key2); in TEST()
29 key1 = ServiceKey("_service._udp", "domain2"); in TEST()
30 EXPECT_FALSE(key1 == key2); in TEST()
[all …]
/external/sdv/vsomeip/third_party/boost/fusion/test/sequence/
Dmap_construction.cpp13 struct key1 {}; struct
68 map<pair<key1, int> > t1; in test()
71 map<pair<key1, float> > t2(5.5f); in test()
74 map<pair<key1, foo> > t3(foo(12)); in test()
77 map<pair<key1, double> > t4(t2); in test()
80 map<pair<key1, int>, pair<key2, float> > t5; in test()
84 map<pair<key1, int>, pair<key2, float> > t6(12, 5.5f); in test()
88 map<pair<key1, int>, pair<key2, float> > t7(t6); in test()
92 map<pair<key1, long>, pair<key2, double> > t8(t6); in test()
99 pair<key1, no_def_constructor>, in test()
[all …]
/external/cronet/net/ssl/
Dssl_client_session_cache_unittest.cc86 EXPECT_EQ(nullptr, cache.Lookup(MakeTestKey("key1")).get()); in TEST_F()
90 cache.Insert(MakeTestKey("key1"), bssl::UpRef(session1)); in TEST_F()
91 EXPECT_EQ(session1.get(), cache.Lookup(MakeTestKey("key1")).get()); in TEST_F()
96 EXPECT_EQ(session1.get(), cache.Lookup(MakeTestKey("key1")).get()); in TEST_F()
100 cache.Insert(MakeTestKey("key1"), bssl::UpRef(session3)); in TEST_F()
101 EXPECT_EQ(session3.get(), cache.Lookup(MakeTestKey("key1")).get()); in TEST_F()
106 EXPECT_EQ(nullptr, cache.Lookup(MakeTestKey("key1")).get()); in TEST_F()
121 EXPECT_EQ(nullptr, cache.Lookup(MakeTestKey("key1")).get()); in TEST_F()
125 cache.Insert(MakeTestKey("key1"), bssl::UpRef(session1)); in TEST_F()
126 EXPECT_EQ(session1.get(), cache.Lookup(MakeTestKey("key1")).get()); in TEST_F()
[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/cronet/net/base/
Dnetwork_isolation_key_unittest.cc321 NetworkIsolationKey key1 = kKeys[first]; in TEST_P() local
322 SCOPED_TRACE(key1.ToDebugString()); in TEST_P()
324 EXPECT_TRUE(key1 == key1); in TEST_P()
325 EXPECT_FALSE(key1 != key1); in TEST_P()
326 EXPECT_FALSE(key1 < key1); in TEST_P()
330 NetworkIsolationKey key1_copy = key1; in TEST_P()
331 EXPECT_TRUE(key1 == key1_copy); in TEST_P()
332 EXPECT_FALSE(key1 < key1_copy); in TEST_P()
333 EXPECT_FALSE(key1_copy < key1); in TEST_P()
339 EXPECT_TRUE(key1 < key2); in TEST_P()
[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/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.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.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/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.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.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.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/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.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.0/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>>...43