Searched refs:Lookup (Results 1 - 25 of 103) sorted by relevance

12345

/external/webkit/Source/WebCore/ForwardingHeaders/runtime/
H A DLookup.h3 #include <JavaScriptCore/Lookup.h>
/external/chromium/net/ftp/
H A Dftp_auth_cache_unittest.cc37 // Lookup non-existent entry.
38 EXPECT_TRUE(cache.Lookup(origin1) == NULL);
42 FtpAuthCache::Entry* entry1 = cache.Lookup(origin1);
50 FtpAuthCache::Entry* entry2 = cache.Lookup(origin2);
57 EXPECT_EQ(entry1, cache.Lookup(origin1));
61 FtpAuthCache::Entry* entry3 = cache.Lookup(origin1);
69 EXPECT_TRUE(cache.Lookup(origin1) == NULL);
73 EXPECT_TRUE(cache.Lookup(origin1) == NULL);
87 EXPECT_NE(cache.Lookup(origin1), cache.Lookup(origin
[all...]
H A Dftp_auth_cache.cc29 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) { function in class:net::FtpAuthCache
42 Entry* entry = Lookup(origin);
61 DCHECK(!Lookup(origin));
H A Dftp_auth_cache.h43 Entry* Lookup(const GURL& origin);
/external/chromium/net/base/
H A Dssl_client_auth_cache_unittest.cc32 // Lookup non-existent client certificate.
34 EXPECT_FALSE(cache.Lookup(server1, &cached_cert));
39 EXPECT_TRUE(cache.Lookup(server1, &cached_cert));
45 EXPECT_TRUE(cache.Lookup(server1, &cached_cert));
48 EXPECT_TRUE(cache.Lookup(server2, &cached_cert));
54 EXPECT_TRUE(cache.Lookup(server1, &cached_cert));
57 EXPECT_TRUE(cache.Lookup(server2, &cached_cert));
63 EXPECT_FALSE(cache.Lookup(server1, &cached_cert));
65 EXPECT_TRUE(cache.Lookup(server2, &cached_cert));
71 EXPECT_FALSE(cache.Lookup(server
[all...]
H A Dhost_cache_unittest.cc41 EXPECT_TRUE(cache.Lookup(Key("foobar.com"), base::TimeTicks()) == NULL);
43 entry1 = cache.Lookup(Key("foobar.com"), base::TimeTicks());
51 EXPECT_TRUE(cache.Lookup(Key("foobar2.com"), base::TimeTicks()) == NULL);
53 entry2 = cache.Lookup(Key("foobar2.com"), base::TimeTicks());
61 EXPECT_EQ(entry1, cache.Lookup(Key("foobar.com"), now));
62 EXPECT_EQ(entry2, cache.Lookup(Key("foobar2.com"), now));
67 EXPECT_TRUE(cache.Lookup(Key("foobar.com"), now) == NULL);
68 EXPECT_EQ(entry2, cache.Lookup(Key("foobar2.com"), now));
73 EXPECT_EQ(entry1, cache.Lookup(Key("foobar.com"), now));
77 EXPECT_EQ(entry1, cache.Lookup(Ke
[all...]
H A Dssl_client_auth_cache.cc20 bool SSLClientAuthCache::Lookup( function in class:net::SSLClientAuthCache
H A Dssl_client_auth_cache.h36 bool Lookup(const std::string& server,
/external/chromium/sdch/open-vcdiff/src/
H A Dinstruction_map.h70 return first_instruction_map_.Lookup(inst, size, mode);
86 return second_instruction_map_.Lookup(first_opcode, inst, size, mode);
109 OpcodeOrNone Lookup(unsigned char inst, function in class:open_vcdiff::VCDiffInstructionMap::FirstInstructionMap
116 // Lookup specific-sized opcode
169 OpcodeOrNone Lookup(unsigned char first_opcode,
/external/valgrind/tsan/
H A Dthread_sanitizer_test.cc143 EXPECT_FALSE(c.Lookup(123, &val));
150 EXPECT_TRUE(c.Lookup(0, &val));
152 EXPECT_TRUE(c.Lookup(1, &val));
154 EXPECT_TRUE(c.Lookup(2, &val));
156 EXPECT_TRUE(c.Lookup(3, &val));
159 EXPECT_FALSE(c.Lookup(256, &val));
160 EXPECT_FALSE(c.Lookup(257, &val));
161 EXPECT_FALSE(c.Lookup(258, &val));
162 EXPECT_FALSE(c.Lookup(259, &val));
167 EXPECT_TRUE(c.Lookup(
[all...]
H A Dts_simple_cache.h56 bool Lookup(uintptr_t ptr, bool *val) { function in class:PtrToBoolCache
90 bool Lookup(uint32_t a, uint32_t b, bool *val) { function in class:IntPairToBoolCache
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-2.cpp72 struct Lookup {
78 enum Junk { is = B ? Lookup<B>::more : Lookup<Lookup<B+1>::more>::val };
89 struct Lookup {}; struct in namespace:N6
93 typedef Lookup<B ? sizeof(T) : sizeof(E)> True;
94 typedef Lookup<!B ? sizeof(T) : sizeof(E)> False;
101 Lookup<1> const &L1(False());
102 Lookup<sizeof(int)> const &L2(True());
109 struct Lookup {}; struct in namespace:N7
[all...]
/external/icu4c/common/
H A Ducmndata.h77 * p->vFuncs.Lookup(p, tocEntryName, pErrorCode);
91 LookupFn Lookup; member in struct:__anon4660
/external/v8/src/
H A Dcompilation-cache.cc171 Handle<SharedFunctionInfo> CompilationCacheScript::Lookup(Handle<String> source, function in class:v8::internal::CompilationCacheScript
183 Handle<Object> probe(table->Lookup(*source), isolate());
254 Handle<SharedFunctionInfo> CompilationCacheEval::Lookup( function in class:v8::internal::CompilationCacheEval
314 Handle<FixedArray> CompilationCacheRegExp::Lookup(Handle<String> source, function in class:v8::internal::CompilationCacheRegExp
388 return script_.Lookup(source, name, line_offset, column_offset);
403 result = eval_global_.Lookup(source, context, strict_mode);
405 result = eval_contextual_.Lookup(source, context, strict_mode);
417 return reg_exp_.Lookup(source, flags);
477 return EagerOptimizingSet()->Lookup(key, hash, false) != NULL;
484 EagerOptimizingSet()->Lookup(ke
[all...]
H A Dhashmap.h73 // If an entry with matching key is found, Lookup()
78 Entry* Lookup(void* key, uint32_t hash, bool insert);
H A Dscopes.h57 Variable* Lookup(Handle<String> name);
128 // Lookup a variable in this scope. Returns the variable or NULL if not found.
131 // Lookup a variable in this scope or outer scopes.
133 virtual Variable* Lookup(Handle<String> name);
319 return variables_.Lookup(name) != NULL;
473 virtual Variable* Lookup(Handle<String> name) { return NULL; } function in class:v8::internal::DummyScope
H A Dserialize.h94 return *Lookup(key);
100 Address* Lookup(uint32_t key) const { function in class:v8::internal::ExternalReferenceDecoder
108 *Lookup(key) = value;
366 return serialization_map_->Lookup(Key(obj), Hash(obj), false) != NULL;
372 serialization_map_->Lookup(Key(obj), Hash(obj), false)->value));
378 serialization_map_->Lookup(Key(obj), Hash(obj), true);
H A Dhashmap.cc64 HashMap::Entry* HashMap::Lookup(void* key, uint32_t hash, bool insert) { function in class:v8::internal::HashMap
93 // Lookup the entry for the key to remove.
220 Lookup(p->key, p->hash, true)->value = p->value;
/external/chromium/net/http/
H A Dhttp_auth_cache_unittest.cc127 entry = cache.Lookup(origin, kRealm5, HttpAuth::AUTH_SCHEME_BASIC);
131 entry = cache.Lookup(GURL("https://www.google.com"), kRealm3,
136 entry = cache.Lookup
141 entry = cache.Lookup(
152 entry = cache.Lookup(
162 entry = cache.Lookup(origin, kRealm2, HttpAuth::AUTH_SCHEME_BASIC);
171 HttpAuthCache::Entry* realm2_entry = cache.Lookup(
173 HttpAuthCache::Entry* realm4_entry = cache.Lookup(
201 cache.Lookup(origin, kRealm3, HttpAuth::AUTH_SCHEME_DIGEST);
212 cache.Lookup(origi
[all...]
H A Dhttp_auth_cache.h48 Entry* Lookup(const GURL& origin,
H A Dhttp_auth_cache.cc69 HttpAuthCache::Entry* HttpAuthCache::Lookup(const GURL& origin, function in class:net::HttpAuthCache
122 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme);
221 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme);
/external/chromium/base/
H A Did_map_unittest.cc36 EXPECT_EQ(&obj1, map.Lookup(id1));
42 EXPECT_EQ(&obj1, map.Lookup(id1));
43 EXPECT_EQ(&obj2, map.Lookup(id2));
55 EXPECT_EQ(&obj1, map.Lookup(1));
56 EXPECT_EQ(&obj2, map.Lookup(2));
/external/webkit/Source/WebCore/bindings/js/
H A DDOMObjectHashTableMap.h25 #include <runtime/Lookup.h>
/external/v8/test/cctest/
H A Dtest-hashmap.cc50 HashMap::Entry* p = map_.Lookup(reinterpret_cast<void*>(x), hash_(x), true);
63 map_.Lookup(reinterpret_cast<void*>(x), hash_(x), false);
/external/clang/lib/Sema/
H A DSemaAttr.cpp16 #include "clang/Sema/Lookup.h"
280 LookupResult Lookup(*this, Name, IdTok.getLocation(), LookupOrdinaryName);
281 LookupParsedName(Lookup, curScope, NULL, true);
283 if (Lookup.empty()) {
289 VarDecl *VD = Lookup.getAsSingle<VarDecl>();

Completed in 1650 milliseconds

12345