Home
last modified time | relevance | path

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

12345678910>>...13

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
Dtest_ec2object.py59 taggedEC2Object.add_tags({"key1": "value1", "key2": "value2"})
64 'Tag.1.Key': 'key1',
74 "key1": "value1",
88 taggedEC2Object.tags["key1"] = "value1"
91 taggedEC2Object.remove_tag("key1", "value1")
96 'Tag.1.Key': 'key1',
108 taggedEC2Object.tags["key1"] = "value1"
111 taggedEC2Object.remove_tag("key1")
116 'Tag.1.Key': 'key1'},
127 taggedEC2Object.tags["key1"] = "value1"
[all …]
/external/guice/core/test/com/google/inject/internal/
DWeakKeySetTest.java112 Key<Integer> key1 = Key.get(Integer.class); in testEviction_keyOverlap_2x() local
117 set.add(key1, state1, source1); in testEviction_keyOverlap_2x()
118 assertInSet(set, key1, 1, source1); in testEviction_keyOverlap_2x()
123 WeakReference<Key<Integer>> weakKey1Ref = new WeakReference<Key<Integer>>(key1); in testEviction_keyOverlap_2x()
128 Key<Integer> key = key1 = key2 = Key.get(Integer.class); in testEviction_keyOverlap_2x()
139 // Key1 will be referenced as the key in the sources backingSet and won't be in testEviction_keyOverlap_2x()
153 // Now that the backing set is emptied, key1 is released. in testEviction_keyOverlap_2x()
160 Key<Integer> key1 = Key.get(Integer.class); in testNoEviction_keyOverlap_2x() local
165 set.add(key1, state1, source1); in testNoEviction_keyOverlap_2x()
166 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.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.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/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.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.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-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/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.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-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.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/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 …]
/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/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/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.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/branches/1.x_Branch/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 …]
/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/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/selinux/libsepol/cil/src/
Dcil_symtab.c152 intptr_t sum = ckey->key1 + ckey->key2 + ckey->key3 + ckey->key4; in cil_complex_symtab_hash()
184 if (ckey->key1 == curr->ckey->key1 && in cil_complex_symtab_insert()
191 if (ckey->key1 == curr->ckey->key1 && in cil_complex_symtab_insert()
196 if (ckey->key1 == curr->ckey->key1 && in cil_complex_symtab_insert()
202 if (ckey->key1 == curr->ckey->key1 && in cil_complex_symtab_insert()
232 if (ckey->key1 == curr->ckey->key1 && in cil_complex_symtab_search()
240 if (ckey->key1 == curr->ckey->key1 && in cil_complex_symtab_search()
245 if (ckey->key1 == curr->ckey->key1 && in cil_complex_symtab_search()
251 if (ckey->key1 == curr->ckey->key1 && in cil_complex_symtab_search()

12345678910>>...13