HomeSort by relevance Sort by last modified time
    Searched defs:lookup (Results 1 - 25 of 390) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/openssl/openssl/crypto/x509/
x509_d2.c 67 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 == NULL) return(0)
    [all...]
  /external/chromium_org/v8/test/mjsunit/
codegen-coverage.js 34 function lookup(w, a) { function
140 lookup(w, x);
141 lookup(w, x);
142 lookup(w, x);
mirror-error.js 39 MirrorRefCache.prototype.lookup = function(handle) {
73 assertEquals(e.message, refs.lookup(p.ref).value);
mirror-function.js 39 MirrorRefCache.prototype.lookup = function(handle) {
76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type);
77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name);
mirror-array.js 39 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');
mirror-object.js 39 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');
140 // Lookup the serialized object from the handle reference.
141 var o = refs.lookup(fromJSON.properties[i].ref);
mirror-unresolved-function.js 39 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/openssl/crypto/x509/
x509_d2.c 67 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 == NULL) return(0)
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestHandlerResolver.java 44 HttpRequestHandler lookup(String requestURI); method in interface:HttpRequestHandlerResolver
HttpRequestHandlerRegistry.java 71 public HttpRequestHandler lookup(final String requestURI) { method in class:HttpRequestHandlerRegistry
72 return (HttpRequestHandler) matcher.lookup(requestURI);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-119609.js 37 function lookup(name) {
41 assertEquals(3, lookup("e"));
42 assertEquals(4, lookup("f"));
43 assertEquals(1, lookup("a"));
46 assertEquals(2, lookup("b"));
regress-1081309.js 58 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/valgrind/main/none/tests/x86/
bug125959-x86.c 6 static int lookup ( int i ) function
33 printf("%08x\n", lookup(j));
  /external/chromium_org/extensions/renderer/resources/
utils.js 28 * lookup(array_of_dictionaries, 'id', 2) to get the dictionary with id == 2.
33 function lookup(array_of_dictionaries, field, value) { function
41 throw new Error("Failed lookup of field '" + field + "' with value '" +
138 exports.lookup = lookup;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaSource.h 49 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/
MediaSourceRegistry.cpp 69 URLRegistrable* MediaSourceRegistry::lookup(const String& url) function in class:WebCore::MediaSourceRegistry
  /external/chromium_org/v8/test/mjsunit/es6/
mirror-promises.js 16 MirrorRefCache.prototype.lookup = function(handle) {
49 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type);
50 assertEquals('Promise', refs.lookup(fromJSON.constructorFunction.ref).name);
52 assertEquals(value, refs.lookup(fromJSON.promiseValue.ref).value);
  /external/javassist/src/main/javassist/compiler/
KeywordTable.java 21 public int lookup(String name) { method in class:KeywordTable
SymbolTable.java 33 public Declarator lookup(String name) { method in class:SymbolTable
36 return parent.lookup(name);
  /frameworks/av/media/libmediaplayerservice/
SharedLibrary.cpp 43 void *SharedLibrary::lookup(const char *symbol) const { function in class:android::SharedLibrary
  /developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 38 public static String lookup(String uuid, String defaultName) { method in class:SampleGattAttributes
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 38 public static String lookup(String uuid, String defaultName) { method in class:SampleGattAttributes
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
SampleGattAttributes.java 38 public static String lookup(String uuid, String defaultName) { method in class:SampleGattAttributes
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
BcDefaultDigestProvider.java 37 private static final Map lookup = createTable(); field in class:BcDefaultDigestProvider
143 BcDigestProvider extProv = (BcDigestProvider)lookup.get(digestAlgorithmIdentifier.getAlgorithm());
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table.cc 40 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;

Completed in 1091 milliseconds

1 2 3 4 5 6 7 8 91011>>