Searched defs:lookup (Results 1 - 25 of 205) sorted by relevance

123456789

/external/chromium_org/v8/test/mjsunit/
H A Dcodegen-coverage.js34 function lookup(w, a) { function
140 lookup(w, x);
141 lookup(w, x);
142 lookup(w, x);
H A Dmirror-error.js39 MirrorRefCache.prototype.lookup = function(handle) {
73 assertEquals(e.message, refs.lookup(p.ref).value);
H A Dmirror-function.js39 MirrorRefCache.prototype.lookup = function(handle) {
76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type);
77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name);
H A Dmirror-array.js39 MirrorRefCache.prototype.lookup = function(handle) {
80 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
81 assertEquals('Array', refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
90 assertEquals('number', refs.lookup(fromJSON.properties[i].ref).type, "Unexpected type of the length property");
91 assertEquals(a.length, refs.lookup(fromJSON.properties[i].ref).value, "Length mismatch in parsed JSON");
101 assertEquals(indexedProperties[index].value().type(), refs.lookup(fromJSON.properties[i].ref).type, 'Unexpected serialized type');
H A Dmirror-object.js39 MirrorRefCache.prototype.lookup = function(handle) {
103 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
104 assertEquals(ctor_name, refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
106 assertEquals(mirror.protoObject().type(), refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type in JSON');
108 assertEquals(mirror.prototypeObject().type(), refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype object type in JSON');
141 var o = refs.lookup(fromJSON.properties[i].ref);
H A Dmirror-unresolved-function.js39 MirrorRefCache.prototype.lookup = function(handle) {
73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
75 assertEquals('undefined', refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type in JSON');
77 assertEquals('undefined', refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype object type in JSON');
/external/v8/test/mjsunit/
H A Dcodegen-coverage.js34 function lookup(w, a) { function
140 lookup(w, x);
141 lookup(w, x);
142 lookup(w, x);
H A Dmirror-error.js39 MirrorRefCache.prototype.lookup = function(handle) {
73 assertEquals(e.message, refs.lookup(p.ref).value);
H A Dmirror-function.js39 MirrorRefCache.prototype.lookup = function(handle) {
76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type);
77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name);
H A Dmirror-object.js39 MirrorRefCache.prototype.lookup = function(handle) {
96 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
97 assertEquals(ctor_name, refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
99 assertEquals(mirror.protoObject().type(), refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type in JSON');
101 assertEquals(mirror.prototypeObject().type(), refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype object type in JSON');
134 var o = refs.lookup(fromJSON.properties[i].ref);
H A Dmirror-array.js39 MirrorRefCache.prototype.lookup = function(handle) {
80 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
81 assertEquals('Array', refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
90 assertEquals('number', refs.lookup(fromJSON.properties[i].ref).type, "Unexpected type of the length property");
91 assertEquals(a.length, refs.lookup(fromJSON.properties[i].ref).value, "Length mismatch in parsed JSON");
101 assertEquals(indexedProperties[index].value().type(), refs.lookup(fromJSON.properties[i].ref).type, 'Unexpected serialized type');
H A Dmirror-unresolved-function.js39 MirrorRefCache.prototype.lookup = function(handle) {
73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
75 assertEquals('undefined', refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type in JSON');
77 assertEquals('undefined', refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype object type in JSON');
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dutils.js20 // lookup(array_of_dictionaries, 'id', 2) to get the dictionary with id == 2.
21 function lookup(array_of_dictionaries, field, value) { function
29 throw new Error("Failed lookup of field '" + field + "' with value '" +
56 exports.lookup = lookup;
/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;
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandlerResolver.java44 HttpRequestHandler lookup(String requestURI); method in interface:HttpRequestHandlerResolver
/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
45 if (lookup == ListenerFindOnly)
/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/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"));
H A Dregress-1081309.js58 ParsedResponse.prototype.lookup = function(handle) {
82 assertEquals("g", response.lookup(backtrace.frames[0].func.ref).name);
83 assertEquals("", response.lookup(backtrace.frames[1].func.ref).name);
/external/javassist/src/main/javassist/compiler/
H A DKeywordTable.java21 public int lookup(String name) { method in class:KeywordTable
/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/valgrind/main/none/tests/x86/
H A Dbug125959-x86.c6 static int lookup ( int i ) function
33 printf("%08x\n", lookup(j));
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
H A DBcDefaultDigestProvider.java39 private static final Map lookup = createTable(); field in class:BcDefaultDigestProvider
147 BcDigestProvider extProv = (BcDigestProvider)lookup.get(digestAlgorithmIdentifier.getAlgorithm());
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMediaSource.h46 static HTMLMediaSource* lookup(const String& url) { return s_registry ? static_cast<HTMLMediaSource*>(s_registry->lookup(url)) : 0; } function in class:WebCore::HTMLMediaSource
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
H A DMediaSourceRegistry.cpp69 URLRegistrable* MediaSourceRegistry::lookup(const String& url) function in class:WebCore::MediaSourceRegistry

Completed in 557 milliseconds

123456789