HomeSort by relevance Sort by last modified time
    Searched refs:lookup (Results 1 - 25 of 702) 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/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/content/common/gpu/
gpu_surface_lookup.cc 21 void GpuSurfaceLookup::InitInstance(GpuSurfaceLookup* lookup) {
22 DCHECK(!g_instance || !lookup);
23 g_instance = lookup;
gpu_surface_lookup.h 20 static void InitInstance(GpuSurfaceLookup* lookup);
  /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/third_party/WebKit/Source/core/rendering/style/
StyleCustomFilterProgramCache.h 49 StyleCustomFilterProgram* lookup(StyleCustomFilterProgram*) const;
50 StyleCustomFilterProgram* lookup(const CustomFilterProgramInfo&) const;
  /external/dhcpcd/
dhcpcd.conf 21 # 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/
brw_wm_iz.c 121 * \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].ds_present &
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_iz.c 121 * \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].ds_present &
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkGetCondensedInfo.cpp 54 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) {
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/
SkGetCondensedInfo.cpp 54 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) {
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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_symtable.py 98 self.assertTrue(self.spam.lookup("glob").is_global())
99 self.assertFalse(self.spam.lookup("glob").is_declared_global())
100 self.assertTrue(self.spam.lookup("bar").is_global())
101 self.assertTrue(self.spam.lookup("bar").is_declared_global())
102 self.assertFalse(self.internal.lookup("x").is_global())
103 self.assertFalse(self.Mine.lookup("instance_var").is_global())
106 self.assertTrue(self.spam.lookup("x").is_local())
107 self.assertFalse(self.internal.lookup("x").is_local())
110 self.assertTrue(self.internal.lookup("x").is_referenced())
111 self.assertTrue(self.spam.lookup("internal").is_referenced()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_symtable.py 98 self.assertTrue(self.spam.lookup("glob").is_global())
99 self.assertFalse(self.spam.lookup("glob").is_declared_global())
100 self.assertTrue(self.spam.lookup("bar").is_global())
101 self.assertTrue(self.spam.lookup("bar").is_declared_global())
102 self.assertFalse(self.internal.lookup("x").is_global())
103 self.assertFalse(self.Mine.lookup("instance_var").is_global())
106 self.assertTrue(self.spam.lookup("x").is_local())
107 self.assertFalse(self.internal.lookup("x").is_local())
110 self.assertTrue(self.internal.lookup("x").is_referenced())
111 self.assertTrue(self.spam.lookup("internal").is_referenced()
    [all...]
  /external/valgrind/main/none/tests/x86/
bug125959-x86.c 6 static int lookup ( int i ) function
33 printf("%08x\n", lookup(j));
  /external/qemu/android/utils/
refset.c 72 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/
ImmutableMapTest.cpp 39 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/
V8EventListenerList.cpp 40 PassRefPtr<EventListener> V8EventListenerList::getEventListener(v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup)
46 if (lookup == ListenerFindOnly) {
  /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
URLRegistry.h 56 virtual URLRegistrable* lookup(const String&) { ASSERT_NOT_REACHED(); return 0; } function in class:WebCore::URLRegistry
  /external/javassist/src/main/javassist/compiler/
SymbolTable.java 33 public Declarator lookup(String name) { method in class:SymbolTable
36 return parent.lookup(name);
  /cts/tests/tests/text/src/android/text/method/cts/
DialerKeyListenerTest.java 42 assertEquals(keyChar, mockDialerKeyListener.lookup(keyEvent, span));
49 mockDialerKeyListener.lookup(null, span);
84 * {@link android.text.method.DialerKeyListener#lookup(KeyEvent, Spannable)}.
93 protected int lookup(KeyEvent event, Spannable content) { method in class:DialerKeyListenerTest.MockDialerKeyListener
94 return super.lookup(event, content);
  /external/chromium/chrome/browser/sync/engine/
syncer_proto_util_unittest.cc 144 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, &response))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
MediaSourceRegistry.h 52 virtual URLRegistrable* lookup(const String&) OVERRIDE;
  /external/chromium_org/third_party/icu/source/common/unicode/
symtable.h 18 * \brief C++ API: An interface that defines both lookup protocol and parsing of
30 * An interface that defines both lookup protocol and parsing of
37 * "$start=alpha"), then the call lookup("start") will return the
70 * Lookup the characters associated with this string and return it.
73 * @param s the symbolic name to lookup
78 virtual const UnicodeString* lookup(const UnicodeString& s) const = 0;
81 * Lookup the UnicodeMatcher associated with the given character, and

Completed in 1488 milliseconds

1 2 3 4 5 6 7 8 91011>>