/third_party/libevdev/libevdev/ |
D | libevdev-names.c | 25 const struct name_lookup *lookup = vlookup; in cmp_entry() local 29 r = strncmp(lookup->name, entry->name, lookup->len); in cmp_entry() 31 if (entry->name[lookup->len]) in cmp_entry() 42 struct name_lookup *lookup) in lookup_name() argument 46 entry = bsearch(lookup, array, asize, sizeof(*array), cmp_entry); in lookup_name() 62 struct name_lookup lookup; in libevdev_event_type_from_name_n() local 65 lookup.name = name; in libevdev_event_type_from_name_n() 66 lookup.len = len; in libevdev_event_type_from_name_n() 68 entry = lookup_name(ev_names, ARRAY_LENGTH(ev_names), &lookup); in libevdev_event_type_from_name_n() 111 struct name_lookup lookup; in libevdev_event_code_from_name_n() local [all …]
|
/third_party/python/Lib/test/ |
D | test_symtable.py | 106 self.assertTrue(self.spam.lookup("glob").is_global()) 107 self.assertFalse(self.spam.lookup("glob").is_declared_global()) 108 self.assertTrue(self.spam.lookup("bar").is_global()) 109 self.assertTrue(self.spam.lookup("bar").is_declared_global()) 110 self.assertFalse(self.internal.lookup("x").is_global()) 111 self.assertFalse(self.Mine.lookup("instance_var").is_global()) 112 self.assertTrue(self.spam.lookup("bar").is_global()) 114 self.assertTrue(self.top.lookup("some_non_assigned_global_var").is_global()) 115 self.assertTrue(self.top.lookup("some_assigned_global_var").is_global()) 118 self.assertFalse(self.spam.lookup("some_var").is_nonlocal()) [all …]
|
/third_party/skia/third_party/externals/swiftshader/tests/SystemUnitTests/ |
D | LRUCacheTests.cpp | 47 ASSERT_EQ(cache.lookup(""), ""); in TEST() 48 ASSERT_EQ(cache.lookup("123"), ""); in TEST() 70 ASSERT_EQ(cache.lookup("1"), "one"); in TEST() 71 ASSERT_EQ(cache.lookup("2"), "two"); in TEST() 72 ASSERT_EQ(cache.lookup("3"), "three"); in TEST() 73 ASSERT_EQ(cache.lookup("4"), "four"); in TEST() 94 ASSERT_EQ(cache.lookup("1"), ""); in TEST() 95 ASSERT_EQ(cache.lookup("2"), ""); in TEST() 96 ASSERT_EQ(cache.lookup("3"), "three"); in TEST() 97 ASSERT_EQ(cache.lookup("4"), "four"); in TEST() [all …]
|
/third_party/vk-gl-cts/modules/glshared/ |
D | glsTextureTestUtil.cpp | 181 const char* lookup = DE_NULL; in getProgram() local 187 …case PROGRAM_2D_FLOAT: sampler = "sampler2D"; lookup = "texture(u_sampler, v_texCoord)"; … in getProgram() 188 …case PROGRAM_2D_INT: sampler = "isampler2D"; lookup = "vec4(texture(u_sampler, v_texCoord))";… in getProgram() 189 …case PROGRAM_2D_UINT: sampler = "usampler2D"; lookup = "vec4(texture(u_sampler, v_texCoord))"… in getProgram() 190 …case PROGRAM_2D_SHADOW: sampler = "sampler2DShadow"; lookup = "vec4(texture(u_sampler, vec3(v_t… in getProgram() 191 …case PROGRAM_2D_FLOAT_BIAS: sampler = "sampler2D"; lookup = "texture(u_sampler, v_texCoord, u_… in getProgram() 192 …case PROGRAM_2D_INT_BIAS: sampler = "isampler2D"; lookup = "vec4(texture(u_sampler, v_texCoord… in getProgram() 193 …case PROGRAM_2D_UINT_BIAS: sampler = "usampler2D"; lookup = "vec4(texture(u_sampler, v_texCoor… in getProgram() 194 …case PROGRAM_2D_SHADOW_BIAS: sampler = "sampler2DShadow"; lookup = "vec4(texture(u_sampler, vec3(… in getProgram() 195 …case PROGRAM_1D_FLOAT: sampler = "sampler1D"; lookup = "texture(u_sampler, v_texCoord)"; … in getProgram() [all …]
|
/third_party/node/test/parallel/ |
D | test-dns-lookup.js | 22 assert.throws(() => dns.lookup(1, {}), err); 23 assert.throws(() => dnsPromises.lookup(1, {}), err); 40 dns.lookup(false, 'cb'); 47 dns.lookup(false, 'options', 'cb'); 65 assert.throws(() => { dnsPromises.lookup(false, options); }, err); 67 dns.lookup(false, options, common.mustNotCall()); 84 assert.throws(() => { dnsPromises.lookup(false, options); }, err); 86 dns.lookup(false, options, common.mustNotCall()); 94 assert.throws(() => { dnsPromises.lookup(false, options); }, err); 96 dns.lookup(false, options, common.mustNotCall()); [all …]
|
D | test-dns.js | 176 assert.throws(() => dns.lookup({}, common.mustNotCall()), errorReg); 178 assert.throws(() => dns.lookup([], common.mustNotCall()), errorReg); 180 assert.throws(() => dns.lookup(true, common.mustNotCall()), errorReg); 182 assert.throws(() => dns.lookup(1, common.mustNotCall()), errorReg); 184 assert.throws(() => dns.lookup(common.mustNotCall(), common.mustNotCall()), 187 assert.throws(() => dnsPromises.lookup({}), errorReg); 188 assert.throws(() => dnsPromises.lookup([]), errorReg); 189 assert.throws(() => dnsPromises.lookup(true), errorReg); 190 assert.throws(() => dnsPromises.lookup(1), errorReg); 191 assert.throws(() => dnsPromises.lookup(common.mustNotCall()), errorReg); [all …]
|
D | test-dns-set-default-order.js | 55 await allowFailed(promisify(dns.lookup)('example.org')); 57 await allowFailed(dnsPromises.lookup('example.org')); 59 await allowFailed(promisify(dns.lookup)('example.org', {})); 61 await allowFailed(dnsPromises.lookup('example.org', {})); 65 await allowFailed(promisify(dns.lookup)('example.org')); 67 await allowFailed(dnsPromises.lookup('example.org')); 69 await allowFailed(promisify(dns.lookup)('example.org', {})); 71 await allowFailed(dnsPromises.lookup('example.org', {})); 75 await allowFailed(promisify(dns.lookup)('example.org')); 77 await allowFailed(dnsPromises.lookup('example.org')); [all …]
|
D | test-dns-lookup-promises.js | 37 factory: () => dnsPromises.lookup('example.com'), 42 factory: () => dnsPromises.lookup('example.com'), 47 factory: () => dnsPromises.lookup('example.com'), 52 factory: () => dnsPromises.lookup('example.com'), 57 factory: () => dnsPromises.lookup('example.com', { family: 6 }), 73 return assert.rejects(dnsPromises.lookup('example.com'), expected); 80 factory: () => dnsPromises.lookup('example', { all: true }), 88 factory: () => dnsPromises.lookup('example', { all: true, family: 4 }), 96 factory: () => dnsPromises.lookup('example', { all: true }), 104 factory: () => dnsPromises.lookup('example', { all: true, family: 6 }), [all …]
|
D | test-dgram-custom-lookup.js | 9 const lookup = common.mustCall((host, family, callback) => { constant 10 dns.lookup(host, family, callback); 13 const socket = dgram.createSocket({ type: 'udp4', lookup }); field 22 const originalLookup = dns.lookup; 24 dns.lookup = common.mustCall((host, family, callback) => { 25 dns.lookup = originalLookup; 40 dgram.createSocket({ type: 'udp4', lookup: value }); property
|
/third_party/openssl/crypto/x509/ |
D | x509_d2.c | 18 X509_LOOKUP *lookup; in X509_STORE_set_default_paths_ex() local 20 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file()); in X509_STORE_set_default_paths_ex() 21 if (lookup == NULL) in X509_STORE_set_default_paths_ex() 23 X509_LOOKUP_load_file_ex(lookup, NULL, X509_FILETYPE_DEFAULT, libctx, propq); in X509_STORE_set_default_paths_ex() 25 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir()); in X509_STORE_set_default_paths_ex() 26 if (lookup == NULL) in X509_STORE_set_default_paths_ex() 28 X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT); in X509_STORE_set_default_paths_ex() 30 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_store()); in X509_STORE_set_default_paths_ex() 31 if (lookup == NULL) in X509_STORE_set_default_paths_ex() 33 X509_LOOKUP_add_store_ex(lookup, NULL, libctx, propq); in X509_STORE_set_default_paths_ex() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
D | x509_d2.c | 18 X509_LOOKUP *lookup; in X509_STORE_set_default_paths_ex() local 20 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file()); in X509_STORE_set_default_paths_ex() 21 if (lookup == NULL) in X509_STORE_set_default_paths_ex() 23 X509_LOOKUP_load_file_ex(lookup, NULL, X509_FILETYPE_DEFAULT, libctx, propq); in X509_STORE_set_default_paths_ex() 25 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir()); in X509_STORE_set_default_paths_ex() 26 if (lookup == NULL) in X509_STORE_set_default_paths_ex() 28 X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT); in X509_STORE_set_default_paths_ex() 30 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_store()); in X509_STORE_set_default_paths_ex() 31 if (lookup == NULL) in X509_STORE_set_default_paths_ex() 33 X509_LOOKUP_add_store_ex(lookup, NULL, libctx, propq); in X509_STORE_set_default_paths_ex() [all …]
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/ |
D | Context.java | 20 private static void unpackLookupTable(int[] lookup, String map, String rle) { in unpackLookupTable() argument 23 lookup[i] = i & 0x3F; in unpackLookupTable() 24 lookup[512 + i] = i >> 2; in unpackLookupTable() 25 lookup[1792 + i] = 2 + (i >> 6); in unpackLookupTable() 29 lookup[1024 + i] = 4 * (map.charAt(i) - 32); in unpackLookupTable() 32 lookup[1152 + i] = i & 1; in unpackLookupTable() 33 lookup[1216 + i] = 2 + (i & 1); in unpackLookupTable() 40 lookup[offset++] = value; in unpackLookupTable() 45 lookup[1792 + i] = 1; in unpackLookupTable() 46 lookup[2032 + i] = 6; in unpackLookupTable() [all …]
|
/third_party/node/lib/internal/ |
D | dgram.js | 23 function lookup4(lookup, address, callback) { argument 24 return lookup(address || '127.0.0.1', 4, callback); 28 function lookup6(lookup, address, callback) { argument 29 return lookup(address || '::1', 6, callback); 32 function newHandle(type, lookup) { argument 33 if (lookup === undefined) { 38 lookup = dns.lookup; 40 validateFunction(lookup, 'lookup'); 46 handle.lookup = FunctionPrototypeBind(lookup4, handle, lookup); 53 handle.lookup = FunctionPrototypeBind(lookup6, handle, lookup);
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/localedistance/ |
D | PartitionInfoTest.java | 71 byte[] lookup = info.getPartitionLookupArray(); in testPartitionInfo() 72 assertThat(lookup[LSR.indexForRegion("CA")]).isEqualTo(1); in testPartitionInfo() 73 assertThat(lookup[LSR.indexForRegion("VI")]).isEqualTo(1); in testPartitionInfo() 74 assertThat(lookup[LSR.indexForRegion("DE")]).isEqualTo(2); in testPartitionInfo() 75 assertThat(lookup[LSR.indexForRegion("FR")]).isEqualTo(2); in testPartitionInfo() 76 assertThat(lookup[LSR.indexForRegion("GB")]).isEqualTo(3); in testPartitionInfo() 77 assertThat(lookup[LSR.indexForRegion("PR")]).isEqualTo(4); in testPartitionInfo() 78 assertThat(lookup[LSR.indexForRegion("US")]).isEqualTo(4); in testPartitionInfo() 79 assertThat(lookup[LSR.indexForRegion("001")]).isEqualTo(5); in testPartitionInfo() 80 assertThat(lookup[LSR.indexForRegion("003")]).isEqualTo(6); in testPartitionInfo() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | es2018IntlAPIs.types | 11 const options = { localeMatcher: 'lookup' } as const; 12 >options : { readonly localeMatcher: "lookup"; } 13 >{ localeMatcher: 'lookup' } as const : { readonly localeMatcher: "lookup"; } 14 >{ localeMatcher: 'lookup' } : { readonly localeMatcher: "lookup"; } 15 >localeMatcher : "lookup" 16 >'lookup' : "lookup" 26 …tedLocalesOf : (locales: string | string[], options?: { localeMatcher?: "lookup" | "best fit"; }) … 27 …portedLocalesOf(locales: string | string[], options?: { localeMatcher?: "lookup" | "best fit"; }):… 29 …portedLocalesOf(locales: string | string[], options?: { localeMatcher?: "lookup" | "best fit"; }):… 30 >supportedLocalesOf : (locales: string | string[], options?: { localeMatcher?: "lookup" | "best fit… [all …]
|
/third_party/protobuf/ruby/tests/ |
D | basic_proto2.rb | 25 BadFieldNames = pool.lookup("BadFieldNames").msgclass 39 assert !TestMessage.descriptor.lookup('optional_int32').has?(m) 41 assert !TestMessage.descriptor.lookup('optional_int64').has?(m) 43 assert !TestMessage.descriptor.lookup('optional_uint32').has?(m) 45 assert !TestMessage.descriptor.lookup('optional_uint64').has?(m) 47 assert !TestMessage.descriptor.lookup('optional_bool').has?(m) 49 assert !TestMessage.descriptor.lookup('optional_float').has?(m) 51 assert !TestMessage.descriptor.lookup('optional_double').has?(m) 53 assert !TestMessage.descriptor.lookup('optional_string').has?(m) 55 assert !TestMessage.descriptor.lookup('optional_bytes').has?(m) [all …]
|
/third_party/nghttp2/src/ |
D | shrpx_tls_test.cc | 61 CU_ASSERT(0 == tree->lookup(hostnames[0])); in test_shrpx_tls_create_lookup_tree() 62 CU_ASSERT(1 == tree->lookup(hostnames[1])); in test_shrpx_tls_create_lookup_tree() 63 CU_ASSERT(2 == tree->lookup(StringRef::from_lit("2www.example.org"))); in test_shrpx_tls_create_lookup_tree() 64 CU_ASSERT(-1 == tree->lookup(StringRef::from_lit("www2.example.org"))); in test_shrpx_tls_create_lookup_tree() 65 CU_ASSERT(3 == tree->lookup(StringRef::from_lit("xy1.host.domain"))); in test_shrpx_tls_create_lookup_tree() 68 CU_ASSERT(-1 == tree->lookup(StringRef::from_lit("yy.host.domain"))); in test_shrpx_tls_create_lookup_tree() 69 CU_ASSERT(4 == tree->lookup(StringRef::from_lit("xyy.host.domain"))); in test_shrpx_tls_create_lookup_tree() 70 CU_ASSERT(-1 == tree->lookup(StringRef{})); in test_shrpx_tls_create_lookup_tree() 71 CU_ASSERT(5 == tree->lookup(hostnames[5])); in test_shrpx_tls_create_lookup_tree() 72 CU_ASSERT(6 == tree->lookup(hostnames[6])); in test_shrpx_tls_create_lookup_tree() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/shaders/ |
D | Swizzle11.hlsl | 22 float lookup[6] = { sample[0], sample[1], sample[2], sample[3], 0.0f, 1.0f }; 23 …return float4(lookup[SwizzleIndices[0]], lookup[SwizzleIndices[1]], lookup[SwizzleIndices[2]], loo… 28 int lookup[6] = { sample[0], sample[1], sample[2], sample[3], 0.0f, 1.0f }; 29 …return int4(lookup[SwizzleIndices[0]], lookup[SwizzleIndices[1]], lookup[SwizzleIndices[2]], looku… 34 uint lookup[6] = { sample[0], sample[1], sample[2], sample[3], 0.0f, 1.0f }; 35 …return uint4(lookup[SwizzleIndices[0]], lookup[SwizzleIndices[1]], lookup[SwizzleIndices[2]], look…
|
/third_party/libphonenumber/java/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/ |
D | PhonePrefixMapTest.java | 99 assertEquals("New York", phonePrefixMapForUS.lookup(number)); in testLookupInvalidNumber_US() 104 assertEquals("Westwood, NJ", phonePrefixMapForUS.lookup(number)); in testLookupNumber_NJ() 109 assertEquals("New York", phonePrefixMapForUS.lookup(number)); in testLookupNumber_NY() 114 assertEquals("San Mateo, CA", phonePrefixMapForUS.lookup(number)); in testLookupNumber_CA_1() 119 assertEquals("California", phonePrefixMapForUS.lookup(number)); in testLookupNumber_CA_2() 124 assertEquals("Richardson, TX", phonePrefixMapForUS.lookup(number)); in testLookupNumberFound_TX() 129 assertNull(phonePrefixMapForUS.lookup(number)); in testLookupNumberNotFound_TX() 134 assertNull(phonePrefixMapForUS.lookup(number)); in testLookupNumber_CH() 139 assertEquals("Milan", phonePrefixMapForIT.lookup(number)); in testLookupNumber_IT() 142 assertEquals("Rome", phonePrefixMapForIT.lookup(number)); in testLookupNumber_IT() [all …]
|
/third_party/rust/crates/syn/codegen/src/ |
D | parse.rs | 33 let mut lookup = Lookup { in parse() localVariable 39 load_file(SYN_CRATE_ROOT, &[], &mut lookup)?; in parse() 43 let types = lookup in parse() 46 .map(|item| introspect_item(item, &lookup)) in parse() 49 let tokens = lookup in parse() 68 fn introspect_item(item: &AstItem, lookup: &Lookup) -> types::Node { in introspect_item() 75 data: types::Data::Enum(introspect_enum(data, lookup)), in introspect_item() 84 types::Data::Struct(introspect_struct(data, lookup)) in introspect_item() 95 fn introspect_enum(item: &DataEnum, lookup: &Lookup) -> types::Variants { in introspect_enum() 106 .map(|field| introspect_type(&field.ty, lookup)) in introspect_enum() [all …]
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_wm_iz.cpp | 130 int lookup = key->iz_lookup; in setup_fs_payload_gfx4() local 132 assert(lookup < BRW_WM_IZ_BIT_MAX); in setup_fs_payload_gfx4() 140 (lookup & BRW_WM_IZ_PS_KILL_ALPHATEST_BIT) && in setup_fs_payload_gfx4() 141 wm_iz_table[lookup].mode == P) { in setup_fs_payload_gfx4() 147 if (wm_iz_table[lookup].sd_present || prog_data->uses_src_depth || in setup_fs_payload_gfx4() 153 if (wm_iz_table[lookup].sd_to_rt || kill_stats_promoted_workaround) in setup_fs_payload_gfx4() 156 if (wm_iz_table[lookup].ds_present || key->line_aa != BRW_WM_AA_NEVER) { in setup_fs_payload_gfx4() 159 !wm_iz_table[lookup].ds_present && key->line_aa == BRW_WM_AA_SOMETIMES; in setup_fs_payload_gfx4() 163 if (wm_iz_table[lookup].dd_present) { in setup_fs_payload_gfx4()
|
/third_party/skia/tests/graphite/ |
D | ProgramCacheTest.cpp | 30 sk_sp<ProgramCache::ProgramInfo> lookup = cache->lookup(pi1->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() local 31 REPORTER_ASSERT(reporter, lookup->id() == pi1->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 43 sk_sp<ProgramCache::ProgramInfo> lookup = cache->lookup(pi2->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() local 44 REPORTER_ASSERT(reporter, lookup->id() == pi2->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 59 sk_sp<ProgramCache::ProgramInfo> lookup = cache->lookup(pi3->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() local 60 REPORTER_ASSERT(reporter, lookup->id() == pi3->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
|
D | UniformCacheTest.cpp | 57 sk_sp<UniformData> lookup = cache->lookup(result1->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() local 58 REPORTER_ASSERT(reporter, lookup->id() == result1->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 70 sk_sp<UniformData> lookup = cache->lookup(result2->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() local 71 REPORTER_ASSERT(reporter, lookup->id() == result2->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 83 sk_sp<UniformData> lookup = cache->lookup(result3->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() local 84 REPORTER_ASSERT(reporter, lookup->id() == result3->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
|
/third_party/node/test/internet/ |
D | test-dns-ipv4.js | 91 validateResult(await dnsPromises.lookup(addresses.INET4_HOST, 4)); 93 const req = dns.lookup( 109 validateResult(await dnsPromises.lookup(addresses.INET4_HOST)); 111 const req = dns.lookup( 127 validateResult(await dnsPromises.lookup(addresses.INET4_HOST, { family: 4 })); 129 const req = dns.lookup(addresses.INET4_HOST, { 145 validateResult(await dnsPromises.lookup(addresses.INET4_HOST, { 149 const req = dns.lookup(addresses.INET4_HOST, { 165 validateResult(await dnsPromises.lookup('127.0.0.1')); 167 const req = dns.lookup('127.0.0.1', [all …]
|
/third_party/libphonenumber/cpp/src/phonenumbers/base/strings/ |
D | string_piece.cc | 112 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_of() local 113 BuildLookupTable(s, lookup); in find_first_of() 115 if (lookup[static_cast<unsigned char>(ptr_[i])]) { in find_first_of() 134 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_not_of() local 135 BuildLookupTable(s, lookup); in find_first_not_of() 137 if (!lookup[static_cast<unsigned char>(ptr_[i])]) { in find_first_not_of() 164 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_of() local 165 BuildLookupTable(s, lookup); in find_last_of() 167 if (lookup[static_cast<unsigned char>(ptr_[i])]) in find_last_of() 188 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_not_of() local [all …]
|