Home
last modified time | relevance | path

Searched refs:lookup (Results 1 – 25 of 151) sorted by relevance

1234567

/external/webkit/V8Binding/v8/src/
Dic.cc275 LookupResult* lookup) { in LookupForRead() argument
281 object->Lookup(name, lookup); in LookupForRead()
285 if (lookup->IsNotFound() || lookup->type() != INTERCEPTOR || in LookupForRead()
286 !lookup->IsCacheable()) { in LookupForRead()
290 JSObject* holder = lookup->holder(); in LookupForRead()
295 holder->LocalLookupRealNamedProperty(name, lookup); in LookupForRead()
296 if (lookup->IsValid()) { in LookupForRead()
297 ASSERT(lookup->type() != INTERCEPTOR); in LookupForRead()
303 lookup->NotFound(); in LookupForRead()
356 LookupResult lookup; in LoadFunction() local
[all …]
Dic.h190 void UpdateCaches(LookupResult* lookup,
233 void UpdateCaches(LookupResult* lookup,
279 void UpdateCaches(LookupResult* lookup,
328 void UpdateCaches(LookupResult* lookup,
371 void UpdateCaches(LookupResult* lookup,
/external/openssl/crypto/x509/
Dx509_d2.c67 X509_LOOKUP *lookup; in X509_STORE_set_default_paths() local
69 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file()); in X509_STORE_set_default_paths()
70 if (lookup == NULL) return(0); in X509_STORE_set_default_paths()
71 X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT); in X509_STORE_set_default_paths()
73 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_hash_dir()); in X509_STORE_set_default_paths()
74 if (lookup == NULL) return(0); in X509_STORE_set_default_paths()
75 X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT); in X509_STORE_set_default_paths()
86 X509_LOOKUP *lookup; in X509_STORE_load_locations() local
90 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file()); in X509_STORE_load_locations()
91 if (lookup == NULL) return(0); in X509_STORE_load_locations()
[all …]
/external/e2fsprogs/resize/
Dtest_extent.in21 lookup 10
23 lookup 11
25 lookup 12
27 lookup 13
29 lookup 14
31 lookup 15
33 lookup 16
35 lookup 1
37 lookup 50
41 lookup 18
[all …]
/external/skia/src/animator/
DSkGetCondensedInfo.cpp62 int lookup = _searchByType(type); in GetMembers() local
63 if (lookup < 0) in GetMembers()
66 *infoCountPtr = gInfoCounts[lookup]; in GetMembers()
67 return gInfoTables[lookup]; in GetMembers()
77 static const SkMemberInfo* _lookup(int lookup, const char** matchPtr) { in _lookup() argument
78 int count = gInfoCounts[lookup]; in _lookup()
79 const SkMemberInfo* info = gInfoTables[lookup]; in _lookup()
91 const char* strings = gInfoNames[lookup]; in _lookup()
99 int count = gInfoCounts[lookup]; in Find()
100 const SkMemberInfo* info = gInfoTables[lookup]; in Find()
[all …]
/external/webkit/V8Binding/v8/test/mjsunit/
Ddebug-backtrace.js72 ParsedResponse.prototype.lookup = function(handle) { method in ParsedResponse
109 assertEquals("f", response.lookup(frames[0].func.ref).name);
111 assertEquals("", response.lookup(frames[1].func.ref).name);
112 assertEquals("m", response.lookup(frames[1].func.ref).inferredName);
114 assertEquals("g", response.lookup(frames[2].func.ref).name);
116 assertEquals("", response.lookup(frames[3].func.ref).name);
131 assertEquals("", response.lookup(frames[0].func.ref).name);
132 assertEquals("m", response.lookup(frames[0].func.ref).inferredName);
134 assertEquals("g", response.lookup(frames[1].func.ref).name);
149 assertEquals("g", response.lookup(frames[0].func.ref).name);
[all …]
Dmirror-array.js39 MirrorRefCache.prototype.lookup = function(handle) { method in MirrorRefCache
80 …assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected construct…
81 …assertEquals('Array', refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor …
90 …assertEquals('number', refs.lookup(fromJSON.properties[i].ref).type, "Unexpected type of the lengt…
91 …assertEquals(a.length, refs.lookup(fromJSON.properties[i].ref).value, "Length mismatch in parsed J…
101 …assertEquals(indexedProperties[index].value().type(), refs.lookup(fromJSON.properties[i].ref).type…
Dmirror-unresolved-function.js39 MirrorRefCache.prototype.lookup = function(handle) { method in MirrorRefCache
73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected construct…
75 assertEquals('undefined', refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type…
77 assertEquals('undefined', refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype obj…
Dmirror-object.js39 MirrorRefCache.prototype.lookup = function(handle) { method in MirrorRefCache
96 …assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected construct…
97 …assertEquals(ctor_name, refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructo…
99 …assertEquals(mirror.protoObject().type(), refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected …
101 …assertEquals(mirror.prototypeObject().type(), refs.lookup(fromJSON.prototypeObject.ref).type, 'Une…
134 var o = refs.lookup(fromJSON.properties[i].ref);
Dmirror-function.js39 MirrorRefCache.prototype.lookup = function(handle) { method in MirrorRefCache
76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type);
77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name);
Dmirror-error.js39 MirrorRefCache.prototype.lookup = function(handle) { method in MirrorRefCache
73 assertEquals(e.message, refs.lookup(p.ref).value);
/external/icu4c/common/
Ducnv_bld.c679 ucnv_loadSharedData(const char *converterName, UConverterLookupData *lookup, UErrorCode * err) { in ucnv_loadSharedData() argument
690 if(lookup == NULL) { in ucnv_loadSharedData()
691 lookup = &stackLookup; in ucnv_loadSharedData()
694 lookup->locale[0] = 0; in ucnv_loadSharedData()
695 lookup->options = 0; in ucnv_loadSharedData()
700 lookup->realName = ucnv_getDefaultName(); in ucnv_loadSharedData()
701 if (lookup->realName == NULL) { in ucnv_loadSharedData()
723 … parseConverterOptions(converterName, lookup->cnvName, lookup->locale, &lookup->options, err); in ucnv_loadSharedData()
730lookup->realName = ucnv_io_getConverterName(lookup->cnvName, &mayContainOption, &internalErrorCode… in ucnv_loadSharedData()
731 if (U_FAILURE(internalErrorCode) || lookup->realName == NULL) { in ucnv_loadSharedData()
[all …]
/external/openssl/apps/
Dcrl.c114 X509_LOOKUP *lookup = NULL; in MAIN() local
238 lookup=X509_STORE_add_lookup(store,X509_LOOKUP_file()); in MAIN()
239 if (lookup == NULL) goto end; in MAIN()
240 if (!X509_LOOKUP_load_file(lookup,CAfile,X509_FILETYPE_PEM)) in MAIN()
241 X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT); in MAIN()
243 lookup=X509_STORE_add_lookup(store,X509_LOOKUP_hash_dir()); in MAIN()
244 if (lookup == NULL) goto end; in MAIN()
245 if (!X509_LOOKUP_add_dir(lookup,CApath,X509_FILETYPE_PEM)) in MAIN()
246 X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT); in MAIN()
Dverify.c88 X509_LOOKUP *lookup=NULL; in MAIN() local
171 lookup=X509_STORE_add_lookup(cert_ctx,X509_LOOKUP_file()); in MAIN()
172 if (lookup == NULL) abort(); in MAIN()
174 i=X509_LOOKUP_load_file(lookup,CAfile,X509_FILETYPE_PEM); in MAIN()
180 } else X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT); in MAIN()
182 lookup=X509_STORE_add_lookup(cert_ctx,X509_LOOKUP_hash_dir()); in MAIN()
183 if (lookup == NULL) abort(); in MAIN()
185 i=X509_LOOKUP_add_dir(lookup,CApath,X509_FILETYPE_PEM); in MAIN()
191 } else X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT); in MAIN()
/external/webkit/V8Binding/v8/src/x64/
Dstub-cache-x64.cc376 LookupResult* lookup) { in LookupPostInterceptor() argument
377 holder->LocalLookupRealNamedProperty(name, lookup); in LookupPostInterceptor()
378 if (lookup->IsNotFound()) { in LookupPostInterceptor()
381 proto->Lookup(name, lookup); in LookupPostInterceptor()
398 LookupResult* lookup, in CompileCacheable() argument
406 if (lookup->type() == FIELD) { in CompileCacheable()
408 } else if (lookup->type() == CALLBACKS) { in CompileCacheable()
409 Object* callback_object = lookup->GetCallbackObject(); in CompileCacheable()
424 if (lookup->type() == CALLBACKS) { in CompileCacheable()
445 if (lookup->type() == CALLBACKS) { in CompileCacheable()
[all …]
/external/icu4c/layout/
DLookupProcessor.cpp60 le_uint16 lookup = lookupOrderArray[order]; in process() local
61 FeatureMask selectMask = lookupSelectArray[lookup]; in process()
64 const LookupTable *lookupTable = lookupListTable->getLookupTable(lookup); in process()
96 for (le_uint16 lookup = 0; lookup < lookupCount; lookup += 1) { in selectLookups() local
97 le_uint16 lookupListIndex = SWAPW(featureTable->lookupListIndexArray[lookup]); in selectLookups()
/external/webkit/V8Binding/v8/src/ia32/
Dstub-cache-ia32.cc317 LookupResult* lookup, in CompileLoadInterceptor() argument
334 if (lookup->IsValid() && lookup->IsCacheable()) { in CompileLoadInterceptor()
342 lookup, in CompileLoadInterceptor()
358 LookupResult* lookup) { in LookupPostInterceptor() argument
359 holder->LocalLookupRealNamedProperty(name, lookup); in LookupPostInterceptor()
360 if (lookup->IsNotFound()) { in LookupPostInterceptor()
363 proto->Lookup(name, lookup); in LookupPostInterceptor()
380 LookupResult* lookup, in CompileCacheable() argument
388 if (lookup->type() == FIELD) { in CompileCacheable()
390 } else if (lookup->type() == CALLBACKS) { in CompileCacheable()
[all …]
/external/elfutils/lib/
Ddynamicsizehash.c32 lookup (htab, hval, val) in lookup() function
133 lookup (htab, first->hashval, first->data), in insert_entry_2()
143 lookup (htab, runp->hashval, runp->data), runp->data); in insert_entry_2()
150 lookup (htab, table[idx].hashval, table[idx].data), in insert_entry_2()
210 idx = lookup (htab, hval, data);
237 idx = lookup (htab, hval, data);
260 idx = lookup (htab, hval, val);
/external/srec/doc/logs/uapi/
Drun_robustness1.log31 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
50 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
69 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
88 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
107 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
126 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
145 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
164 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
183 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
202 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
[all …]
Drun_robustness2.log34 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Andy Wyatt literal:lookup
60 …ion.test.contacts.CLRecognizer:result 1 semantic: Dennis Velasco literal:lookup Dennis Velasco sco…
86 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
112 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Andy Wyatt literal:lookup
138 …ion.test.contacts.CLRecognizer:result 1 semantic: Dennis Velasco literal:lookup Dennis Velasco sco…
164 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
190 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Andy Wyatt literal:lookup
216 …ion.test.contacts.CLRecognizer:result 1 semantic: Dennis Velasco literal:lookup Dennis Velasco sco…
242 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup
268 android.speech.recognition.test.contacts.CLRecognizer:result 1 semantic: Andy Wyatt literal:lookup
[all …]
/external/webkit/V8Binding/v8/test/mjsunit/regress/
Dregress-1081309.js58 ParsedResponse.prototype.lookup = function(handle) { method in ParsedResponse
82 assertEquals("g", response.lookup(backtrace.frames[0].func.ref).name);
83 assertEquals("", response.lookup(backtrace.frames[1].func.ref).name);
/external/icu4c/i18n/
Drbt_data.cpp79 TransliterationRuleData::lookup(UChar32 standIn) const { in lookup() function in TransliterationRuleData
86 UnicodeFunctor *f = lookup(standIn); in lookupMatcher()
92 UnicodeFunctor *f = lookup(standIn); in lookupReplacer()
/external/apache-http/src/org/apache/http/protocol/
DHttpRequestHandlerRegistry.java71 public HttpRequestHandler lookup(final String requestURI) { in lookup() method in HttpRequestHandlerRegistry
72 return (HttpRequestHandler) matcher.lookup(requestURI); in lookup()
/external/bluetooth/glib/gio/
Dgdesktopappinfo.h83 GAppInfo * (* get_default_for_uri_scheme) (GDesktopAppInfoLookup *lookup,
89 GAppInfo *g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *lookup,
/external/e2fsprogs/misc/
Dblkid.c137 int lookup = 0, gc = 0; in main() local
151 lookup++; in main()
217 } else if (lookup) { in main()

1234567