/external/selinux/libsepol/cil/src/ |
D | cil_symtab.c | 152 intptr_t sum = ckey->key1 + ckey->key2 + ckey->key3 + ckey->key4; in cil_complex_symtab_hash() 186 ckey->key3 == curr->ckey->key3 && in cil_complex_symtab_insert() 198 ckey->key3 < curr->ckey->key3) { in cil_complex_symtab_insert() 204 ckey->key3 == curr->ckey->key3 && in cil_complex_symtab_insert() 234 ckey->key3 == curr->ckey->key3 && in cil_complex_symtab_search() 247 ckey->key3 < curr->ckey->key3) { in cil_complex_symtab_search() 253 ckey->key3 == curr->ckey->key3 && in cil_complex_symtab_search()
|
/external/google-breakpad/src/client/mac/testapp/ |
D | Controller.m | 175 BreakpadSetKeyValue(breakpad_,@"key3", @"value3"); 209 test = BreakpadKeyValue(breakpad_, @"key3"); 211 NSLog(@"Can't find BreakpadKeyValue (key3)"); 219 BreakpadRemoveKeyValue(breakpad_, @"key3"); 222 test = BreakpadKeyValue(breakpad_, @"key3"); 224 NSLog(@"Shouldn't find BreakpadKeyValue (key3)"); 228 BreakpadRemoveKeyValue(breakpad_, @"key3");
|
/external/libbrillo/brillo/ |
D | map_utils_unittest.cc | 17 {"key1", 1}, {"key2", 2}, {"key3", 3}, {"key4", 4}, {"key5", 5}, in SetUp() 28 EXPECT_EQ((std::set<std::string>{"key1", "key2", "key3", "key4", "key5"}), in TEST_F() 34 EXPECT_EQ((std::vector<std::string>{"key1", "key2", "key3", "key4", "key5"}), in TEST_F() 46 {"key1", 1}, {"key2", 2}, {"key3", 3}, {"key4", 4}, {"key5", 5}, in TEST_F()
|
D | url_utils_unittest.cc | 78 EXPECT_EQ("", url::GetQueryStringValue(url, "key3")); in TEST() 83 EXPECT_EQ("", url::GetQueryStringValue(params, "key3")); in TEST()
|
/external/v8/test/mjsunit/harmony/ |
D | proxies-get.js | 60 assertEquals("value", proxy.key3); 72 assertEquals("value", proxy.key3); 83 assertEquals("value", proxy.key3); 87 Object.defineProperty(target, "key3", { 94 assertThrows(function(){ proxy.key3 }, TypeError);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
D | DESedeEngine.java | 65 byte[] key3 = new byte[8]; in init() 66 System.arraycopy(keyMaster, 16, key3, 0, key3.length); in init() 67 workingKey3 = generateWorkingKey(encrypting, key3); in init()
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-10-10.data | 4 ? explicit key3, # Empty value 7 simple key3, # Empty value
|
D | spec-10-10.canonical | 8 ? !!str "explicit key3" 14 ? !!str "simple key3"
|
D | spec-10-11.data | 4 ? explicit key3, # Implicit empty
|
D | spec-10-11.canonical | 13 ? !!str "explicit key3"
|
/external/llvm/test/YAMLParser/ |
D | spec-10-10.test | 6 ? explicit key3, # Empty value 9 simple key3, # Empty value
|
D | spec-10-11.test | 6 ? explicit key3, # Implicit empty
|
/external/libvncserver/libvncserver/ |
D | websockets.c | 169 void webSocketsGenMd5(char * target, char *key1, char *key2, char *key3); 255 char *key1 = NULL, *key2 = NULL, *key3 = NULL; in webSocketsHandshake() local 306 rfbLog("Got key3\n"); in webSocketsHandshake() 307 key3 = buf+len; in webSocketsHandshake() 397 if (!(key1 && key2 && key3)) { in webSocketsHandshake() 404 webSocketsGenMd5(trailer, key1, key2, key3); in webSocketsHandshake() 438 webSocketsGenMd5(char * target, char *key1, char *key2, char *key3) in webSocketsGenMd5() argument 476 strncpy((char *)buf+8, key3, 8); in webSocketsGenMd5()
|
/external/google-breakpad/src/common/ |
D | simple_string_dictionary_unittest.cc | 70 dict.SetKeyValue("key3", "value3"); in TEST() 74 EXPECT_NE(dict.GetValueForKey("key3"), "value3"); in TEST() 80 dict.RemoveKey("key3"); in TEST() 83 EXPECT_FALSE(dict.GetValueForKey("key3")); in TEST()
|
/external/skia/tests/ |
D | ResourceCacheTest.cpp | 870 GrUniqueKey key3; in test_duplicate_unique_key() local 871 make_unique_key<0>(&key3, 0); in test_duplicate_unique_key() 872 SkAutoTUnref<GrGpuResource> d2(cache->findAndRefUniqueResource(key3)); in test_duplicate_unique_key() 881 GrUniqueKey key1, key2, key3; in test_purge_invalidated() local 884 make_unique_key<0>(&key3, 3); in test_purge_invalidated() 893 c->resourcePriv().setUniqueKey(key3); in test_purge_invalidated() 900 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3)); in test_purge_invalidated() 914 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3)); in test_purge_invalidated() 917 Bus::Post(Msg(key3)); in test_purge_invalidated() 921 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key3)); in test_purge_invalidated() [all …]
|
D | ImageFilterCacheTest.cpp | 65 SkImageFilter::Cache::Key key3(0, SkMatrix::I(), clip2, image->uniqueID(), image->subset()); in test_dont_find_if_diff_key() local 74 REPORTER_ASSERT(reporter, !cache->get(key3, &foundOffset)); in test_dont_find_if_diff_key()
|
/external/webrtc/webrtc/base/ |
D | linux_unittest.cc | 75 "Key3:Value3\n" in TEST() 84 EXPECT_EQ("Value3", key_val_pairs[0]["Key3"]); in TEST()
|
/external/guice/core/test/com/google/inject/internal/ |
D | WeakKeySetTest.java | 280 Key<Integer> key3 = Key.get(Integer.class); in testEviction_keyOverlap_3x() local 291 set.add(key3, state3, source3); in testEviction_keyOverlap_3x() 296 WeakReference<Key<Integer>> weakKey3Ref = new WeakReference<Key<Integer>>(key3); in testEviction_keyOverlap_3x() 301 Key<Integer> key = key1 = key2 = key3 = Key.get(Integer.class); in testEviction_keyOverlap_3x()
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
D | ClassWriter.java | 278 final Item key3; field in ClassWriter 541 key3 = new Item(); in ClassWriter() 977 key3.set(FIELD, owner, name, desc); in newFieldItem() 978 Item result = get(key3); in newFieldItem() 981 result = new Item(index++, key3); in newFieldItem() 1020 key3.set(type, owner, name, desc); in newMethodItem() 1021 Item result = get(key3); in newMethodItem() 1024 result = new Item(index++, key3); in newMethodItem()
|
/external/guice/core/test/com/google/inject/util/ |
D | OverrideModuleTest.java | 65 private static final Key<String> key3 = Key.get(String.class, named("3")); field in OverrideModuleTest 160 bind(key3).toInstance("A3"); in testOverrideOfOverride() 176 bind(key3).toInstance("C3"); in testOverrideOfOverride() 183 assertEquals("C3", injector.getInstance(key3)); in testOverrideOfOverride()
|
/external/clang/test/ARCMT/ |
D | objcmt-subscripting-literals.m.result | 115 @"value3", @"key3", 139 @"key3"
|
D | objcmt-subscripting-literals.m | 115 @"value3", @"key3", 139 @"key3"
|
/external/snakeyaml/src/test/resources/examples/ |
D | map-recursive-2.yaml | 2 key3: *id001
|
D | map-recursive-4.yaml | 2 key3: *id001
|
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/ |
D | agent-subst-test.properties | 4 key3=${user.home}}} key
|