Searched refs:lookup (Results 1 - 25 of 463) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/openssl/openssl/crypto/x509/
H A Dx509_d2.c67 X509_LOOKUP *lookup; local
69 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file());
70 if (lookup == NULL) return(0);
71 X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT);
73 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_hash_dir());
74 if (lookup == NULL) return(0);
75 X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT);
86 X509_LOOKUP *lookup; local
90 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file());
91 if (lookup
[all...]
/external/openssl/crypto/x509/
H A Dx509_d2.c67 X509_LOOKUP *lookup; local
69 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file());
70 if (lookup == NULL) return(0);
71 X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT);
73 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_hash_dir());
74 if (lookup == NULL) return(0);
75 X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT);
86 X509_LOOKUP *lookup; local
90 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file());
91 if (lookup
[all...]
/external/chromium_org/content/common/gpu/
H A Dgpu_surface_lookup.cc21 void GpuSurfaceLookup::InitInstance(GpuSurfaceLookup* lookup) { argument
22 DCHECK(!g_instance || !lookup);
23 g_instance = lookup;
H A Dgpu_surface_lookup.h20 static void InitInstance(GpuSurfaceLookup* lookup);
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandlerResolver.java44 HttpRequestHandler lookup(String requestURI); method in interface:HttpRequestHandlerResolver
H A DHttpRequestHandlerRegistry.java71 public HttpRequestHandler lookup(final String requestURI) { method in class:HttpRequestHandlerRegistry
72 return (HttpRequestHandler) matcher.lookup(requestURI);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-119609.js37 function lookup(name) {
41 assertEquals(3, lookup("e"));
42 assertEquals(4, lookup("f"));
43 assertEquals(1, lookup("a"));
46 assertEquals(2, lookup("b"));
/external/dhcpcd/
H A Ddhcpcd.conf21 # A hook script is provided to lookup the hostname if not set by the DHCP
23 nohook lookup-hostname
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_wm_iz.c121 * \param lookup bitmask of IZ_* flags
128 int lookup = c->key.iz_lookup; local
132 assert (lookup < IZ_BIT_MAX);
140 (lookup & IZ_PS_KILL_ALPHATEST_BIT) &&
141 wm_iz_table[lookup].mode == P) {
145 if (lookup & IZ_PS_COMPUTES_DEPTH_BIT)
148 if (wm_iz_table[lookup].sd_present || uses_depth ||
154 if (wm_iz_table[lookup].sd_to_rt || kill_stats_promoted_workaround)
157 if (wm_iz_table[lookup].ds_present || c->key.line_aa != AA_NEVER) {
159 c->runtime_check_aads_emit = (!wm_iz_table[lookup]
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_wm_iz.c121 * \param lookup bitmask of IZ_* flags
128 int lookup = c->key.iz_lookup; local
132 assert (lookup < IZ_BIT_MAX);
140 (lookup & IZ_PS_KILL_ALPHATEST_BIT) &&
141 wm_iz_table[lookup].mode == P) {
145 if (lookup & IZ_PS_COMPUTES_DEPTH_BIT)
148 if (wm_iz_table[lookup].sd_present || uses_depth ||
154 if (wm_iz_table[lookup].sd_to_rt || kill_stats_promoted_workaround)
157 if (wm_iz_table[lookup].ds_present || c->key.line_aa != AA_NEVER) {
159 c->runtime_check_aads_emit = (!wm_iz_table[lookup]
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkGetCondensedInfo.cpp54 int lookup = _searchByType(type); local
55 if (lookup < 0)
58 *infoCountPtr = gInfoCounts[lookup];
59 return gInfoTables[lookup];
69 static const SkMemberInfo* _lookup(int lookup, const char** matchPtr) { argument
70 int count = gInfoCounts[lookup];
71 const SkMemberInfo* info = gInfoTables[lookup];
83 const char* strings = gInfoNames[lookup];
91 int count = gInfoCounts[lookup];
92 const SkMemberInfo* info = gInfoTables[lookup];
111 int lookup = _searchByType(type); local
[all...]
/external/skia/src/animator/
H A DSkGetCondensedInfo.cpp54 int lookup = _searchByType(type); local
55 if (lookup < 0)
58 *infoCountPtr = gInfoCounts[lookup];
59 return gInfoTables[lookup];
69 static const SkMemberInfo* _lookup(int lookup, const char** matchPtr) { argument
70 int count = gInfoCounts[lookup];
71 const SkMemberInfo* info = gInfoTables[lookup];
83 const char* strings = gInfoNames[lookup];
91 int count = gInfoCounts[lookup];
92 const SkMemberInfo* info = gInfoTables[lookup];
111 int lookup = _searchByType(type); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleCustomFilterProgramCache.h49 StyleCustomFilterProgram* lookup(StyleCustomFilterProgram*) const;
50 StyleCustomFilterProgram* lookup(const CustomFilterProgramInfo&) const;
/external/valgrind/main/none/tests/x86/
H A Dbug125959-x86.c6 static int lookup ( int i ) function
33 printf("%08x\n", lookup(j));
/external/qemu/android/utils/
H A Drefset.c72 void** lookup; local
77 lookup = _arefSet_lookup(s, item);
78 return (*lookup == item);
95 void** lookup = _arefSet_lookup(&newSet, item); local
96 *lookup = item;
109 void** lookup; local
120 lookup = _arefSet_lookupInsert(s, item);
121 if (*lookup == item)
124 *lookup = item;
136 void** lookup; local
[all...]
/external/llvm/unittests/ADT/
H A DImmutableMapTest.cpp39 EXPECT_EQ(0, S.lookup(3));
40 EXPECT_EQ(0, S.lookup(9));
42 EXPECT_EQ(10, *S2.lookup(3));
43 EXPECT_EQ(11, *S2.lookup(4));
44 EXPECT_EQ(12, *S2.lookup(5));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8EventListenerList.cpp40 PassRefPtr<EventListener> V8EventListenerList::getEventListener(v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup) argument
46 if (lookup == ListenerFindOnly) {
/external/javassist/src/main/javassist/compiler/
H A DSymbolTable.java33 public Declarator lookup(String name) { method in class:SymbolTable
36 return parent.lookup(name);
H A DKeywordTable.java21 public int lookup(String name) { method in class:KeywordTable
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-backtrace.js77 ParsedResponse.prototype.lookup = function(handle) {
115 assertEquals("f", response.lookup(frames[0].func.ref).name);
117 assertEquals("", response.lookup(frames[1].func.ref).name);
118 assertEquals("m", response.lookup(frames[1].func.ref).inferredName);
120 assertEquals("g", response.lookup(frames[2].func.ref).name);
122 assertEquals("", response.lookup(frames[3].func.ref).name);
138 assertEquals("", response.lookup(frames[0].func.ref).name);
139 assertEquals("m", response.lookup(frames[0].func.ref).inferredName);
141 assertEquals("g", response.lookup(frames[1].func.ref).name);
156 assertEquals("g", response.lookup(frame
[all...]
/external/v8/test/mjsunit/
H A Ddebug-backtrace.js77 ParsedResponse.prototype.lookup = function(handle) {
115 assertEquals("f", response.lookup(frames[0].func.ref).name);
117 assertEquals("", response.lookup(frames[1].func.ref).name);
118 assertEquals("m", response.lookup(frames[1].func.ref).inferredName);
120 assertEquals("g", response.lookup(frames[2].func.ref).name);
122 assertEquals("", response.lookup(frames[3].func.ref).name);
138 assertEquals("", response.lookup(frames[0].func.ref).name);
139 assertEquals("m", response.lookup(frames[0].func.ref).inferredName);
141 assertEquals("g", response.lookup(frames[1].func.ref).name);
156 assertEquals("g", response.lookup(frame
[all...]
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_proto_util_unittest.cc144 ScopedDirLookup lookup(setter_upper_.manager(), setter_upper_.name());
145 ASSERT_TRUE(lookup.good());
148 EXPECT_TRUE(lookup->store_birthday().empty());
150 EXPECT_FALSE(SyncerProtoUtil::VerifyResponseBirthday(lookup, &response));
154 EXPECT_TRUE(SyncerProtoUtil::VerifyResponseBirthday(lookup, &response));
155 EXPECT_EQ(lookup->store_birthday(), "flan");
159 EXPECT_TRUE(SyncerProtoUtil::VerifyResponseBirthday(lookup, &response));
160 EXPECT_EQ(lookup->store_birthday(), "flan");
164 EXPECT_FALSE(SyncerProtoUtil::VerifyResponseBirthday(lookup, &response));
167 EXPECT_FALSE(SyncerProtoUtil::VerifyResponseBirthday(lookup,
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DObjectStreamClassTest.java54 ObjectStreamClass osc = ObjectStreamClass.lookup(DummyClass.class);
63 ObjectStreamClass osc = ObjectStreamClass.lookup(DummyClass.class);
74 ObjectStreamClass osc = ObjectStreamClass.lookup(DummyClass.class);
85 ObjectStreamClass osc = ObjectStreamClass.lookup(DummyClass.class);
96 ObjectStreamClass osc = ObjectStreamClass.lookup(DummyClass.class);
118 ObjectStreamClass osc1 = ObjectStreamClass.lookup(SyntheticTest.class);
121 ObjectStreamClass osc2 = ObjectStreamClass.lookup(SyntheticTest.X.class);
134 ObjectStreamClass osc1 = ObjectStreamClass.lookup(cl1);
140 ObjectStreamClass osc2 = ObjectStreamClass.lookup(cl2);
147 * @tests java.io.ObjectStreamClass#lookup(jav
[all...]
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Ddatabase_string_table.cc40 std::map<std::string, int64>::const_iterator lookup = local
42 if (lookup != value_to_id_.end()) {
43 *id = lookup->second;
70 // lookup to find the old value.
86 std::map<int64, std::string>::const_iterator lookup = local
88 if (lookup != id_to_value_.end()) {
89 *value = lookup->second;
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/geocoding/
H A DAreaCodeMapTest.java99 assertEquals("New York", areaCodeMapForUS.lookup(number));
104 assertEquals("Westwood, NJ", areaCodeMapForUS.lookup(number));
109 assertEquals("New York", areaCodeMapForUS.lookup(number));
114 assertEquals("San Mateo, CA", areaCodeMapForUS.lookup(number));
119 assertEquals("California", areaCodeMapForUS.lookup(number));
124 assertEquals("Richardson, TX", areaCodeMapForUS.lookup(number));
129 assertNull(areaCodeMapForUS.lookup(number));
134 assertNull(areaCodeMapForUS.lookup(number));
139 assertEquals("Milan", areaCodeMapForIT.lookup(number));
142 assertEquals("Rome", areaCodeMapForIT.lookup(numbe
[all...]

Completed in 849 milliseconds

1234567891011>>