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

1234567891011>>

/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509_d2.c65 X509_LOOKUP *lookup; local
67 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file());
68 if (lookup == NULL) return(0);
69 X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT);
71 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_hash_dir());
72 if (lookup == NULL) return(0);
73 X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT);
84 X509_LOOKUP *lookup; local
88 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file());
89 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.java49 HttpRequestHandler lookup(String requestURI); method in interface:HttpRequestHandlerResolver
H A DHttpRequestHandlerRegistry.java76 public HttpRequestHandler lookup(final String requestURI) { method in class:HttpRequestHandlerRegistry
77 return (HttpRequestHandler) matcher.lookup(requestURI);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-119609.js38 function lookup(name) {
42 assertEquals(3, lookup("e"));
43 assertEquals(4, lookup("f"));
44 assertEquals(1, lookup("a"));
47 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/bindings/core/v8/
H A DV8EventListenerList.cpp40 PassRefPtr<EventListener> V8EventListenerList::getEventListener(ScriptState* scriptState, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup) argument
43 if (lookup == ListenerFindOnly) {
/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(nullptr, S.lookup(3));
40 EXPECT_EQ(nullptr, 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/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp112 LookupInfo lookup; local
113 lookup.name.SetCString(method);
114 lookup.lookup_name = lookup.name;
115 lookup.name_type_mask = eFunctionNameTypeMethod;
116 lookup.match_name_after_lookup = false;
117 m_lookups.push_back (lookup);
134 LookupInfo lookup; local
135 lookup.name = name;
136 lookup
144 LookupInfo lookup; local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-ordered-hash-table.cc121 Object* lookup = ordered_map->Lookup(obj); local
122 CHECK(lookup->SameValue(*val));
140 lookup = ordered_map->Lookup(obj1);
141 CHECK(lookup->SameValue(*val1));
142 lookup = ordered_map->Lookup(obj2);
143 CHECK(lookup->SameValue(*val2));
144 lookup = ordered_map->Lookup(obj3);
145 CHECK(lookup->SameValue(*val3));
152 lookup = ordered_map->Lookup(obj);
153 CHECK(lookup
[all...]
/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/deqp/modules/gles3/scripts/
H A Dgen-invalid-texture-funcs.py43 lookup = self.funcname + "(s"
45 lookup += ", %s" % getValueExpr(arg)
46 lookup += ")"
48 params = { "NAME": self.name, "SAMPLERTYPE": samplerType, "LOOKUP": lookup }
51 # Invalid lookup cases
/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/prefixmapper/
H A DPhonePrefixMapTest.java99 assertEquals("New York", phonePrefixMapForUS.lookup(number));
104 assertEquals("Westwood, NJ", phonePrefixMapForUS.lookup(number));
109 assertEquals("New York", phonePrefixMapForUS.lookup(number));
114 assertEquals("San Mateo, CA", phonePrefixMapForUS.lookup(number));
119 assertEquals("California", phonePrefixMapForUS.lookup(number));
124 assertEquals("Richardson, TX", phonePrefixMapForUS.lookup(number));
129 assertNull(phonePrefixMapForUS.lookup(number));
134 assertNull(phonePrefixMapForUS.lookup(number));
139 assertEquals("Milan", phonePrefixMapForIT.lookup(number));
142 assertEquals("Rome", phonePrefixMapForIT.lookup(numbe
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMediaSource.h50 static HTMLMediaSource* lookup(const String& url) { return s_registry ? static_cast<HTMLMediaSource*>(s_registry->lookup(url)) : 0; } function in class:blink::HTMLMediaSource

Completed in 2439 milliseconds

1234567891011>>