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

1 2 3 4

  /art/compiler/utils/
scoped_hashtable.h 38 V Lookup(K k) const {
  /external/chromium_org/net/ssl/
ssl_client_auth_cache.cc 20 bool SSLClientAuthCache::Lookup(
  /development/host/windows/usb/api/
adb_object_handle.cpp 148 AdbObjectHandle* AdbObjectHandle::Lookup(ADBAPIHANDLE adb_hndl) {
  /external/chromium_org/content/browser/service_worker/
service_worker_script_cache_map.cc 25 int64 ServiceWorkerScriptCacheMap::Lookup(const GURL& url) {
34 DCHECK_EQ(kInvalidServiceWorkerResponseId, Lookup(url));
43 DCHECK_NE(kInvalidServiceWorkerResponseId, Lookup(url));
47 context_->storage()->DoomUncommittedResponse(Lookup(url));
  /external/chromium_org/net/ftp/
ftp_auth_cache.cc 27 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
39 Entry* entry = Lookup(origin);
56 DCHECK(!Lookup(origin));
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
symbol.py 16 def Lookup(self, exec_file_rel_path, offset):
memory_map.py 23 def Lookup(self, addr):
  /external/chromium_org/net/dns/
host_cache.cc 43 const HostCache::Entry* HostCache::Lookup(const Key& key,
  /external/chromium_org/sdch/open-vcdiff/src/
instruction_map.h 70 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,
116 // Lookup specific-sized opcode
169 OpcodeOrNone Lookup(unsigned char first_opcode,
instruction_map.cc 127 OpcodeOrNone VCDiffInstructionMap::SecondInstructionMap::Lookup(
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
area_code_map.cc 42 const char* AreaCodeMap::Lookup(const PhoneNumber& number) const {
  /external/chromium_org/tools/findit/
chromium_deps.py 26 def Lookup(self, var_name):
37 'Var': var.Lookup,
  /external/chromium_org/v8/src/
dateparser.cc 140 int DateParser::KeywordTable::Lookup(const uint32_t* pre, int len) {
interface.cc 12 Interface* Interface::Lookup(Handle<String> name, Zone* zone) {
17 ZoneHashMap::Entry* p = map->Lookup(name.location(), name->Hash(), false,
68 (*map)->Lookup(const_cast<void*>(name), hash, !IsFrozen(), allocator);
  /external/icu/icu4c/source/common/
ucmndata.h 76 * "Virtual" functions for data lookup.
78 * p->vFuncs.Lookup(p, tocEntryName, pErrorCode);
94 LookupFn Lookup;
  /external/chromium_org/android_webview/buildbot/
deps_whitelist.py 115 def Lookup(self, var_name):
128 'Var': var.Lookup,
  /external/chromium_org/chrome/browser/
icon_loader_chromeos.cc 45 // Lookup icon resource ID for a given filename |extension| and
48 int Lookup(const std::string& extension, IconLoader::IconSize icon_size);
133 int IconMapper::Lookup(const std::string& extension,
202 int idr = icon_mapper.Get().Lookup(group_, icon_size_);
  /external/chromium_org/components/policy/core/common/
policy_test_utils.cc 31 return base::Bind(&PolicyDetailsMap::Lookup, base::Unretained(this));
39 const PolicyDetails* PolicyDetailsMap::Lookup(const std::string& policy) const {
  /external/chromium_org/third_party/icu/source/common/
ucmndata.h 90 * "Virtual" functions for data lookup.
92 * p->vFuncs.Lookup(p, tocEntryName, pErrorCode);
108 LookupFn Lookup;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramStateTrait.h 73 static lookup_type Lookup(data_type B, key_type K) {
74 return B.lookup(K);
  /external/chromium_org/base/debug/
trace_event_synthetic_delay.cc 46 TraceEventSyntheticDelay* TraceEventSyntheticDelay::Lookup(
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_schema_graph.py 12 '''Returned from APISchemaGraph.Lookup(), and relays whether or not
96 return self._node_availabilities.Lookup(self._namespace_name,
138 '''Runs all the lookup checks on |lookup_path| and
141 for lookup in (self._LookupNodeAvailability,
144 node_availability = lookup(lookup_path)
166 # lookup paths like
181 for lookup in (self._LookupNodeAvailability,
183 node_availability = lookup(deprecated_path)
368 def Lookup(self, *path):
  /external/chromium_org/content/browser/indexed_db/
indexed_db_dispatcher_host.h 126 RefCountedType* Lookup(KeyType id) {
127 scoped_refptr<RefCountedType>* ptr = map_.Lookup(id);
  /external/chromium_org/net/http/
http_auth_cache.cc 80 HttpAuthCache::Entry* HttpAuthCache::Lookup(const GURL& origin,
147 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme);
260 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme);
  /external/chromium_org/third_party/leveldatabase/src/util/
cache_test.cc 48 int Lookup(int key) {
49 Cache::Handle* handle = cache_->Lookup(EncodeKey(key));
69 ASSERT_EQ(-1, Lookup(100));
72 ASSERT_EQ(101, Lookup(100));
73 ASSERT_EQ(-1, Lookup(200));
74 ASSERT_EQ(-1, Lookup(300));
77 ASSERT_EQ(101, Lookup(100));
78 ASSERT_EQ(201, Lookup(200));
79 ASSERT_EQ(-1, Lookup(300));
82 ASSERT_EQ(102, Lookup(100))
    [all...]

Completed in 763 milliseconds

1 2 3 4