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

1234567891011>>

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dapi_schema_graph_test.py62 # A few assertions to make sure that Lookup works on empty sets.
66 empty_graph.Lookup('tabs', 'properties',
69 empty_graph.Lookup('tabs', 'functions', 'get',
72 empty_graph.Lookup('tabs', 'functions', 'get',
75 empty_graph.Lookup('tabs', 'events', 'onActivated',
78 empty_graph.Lookup('tabs', 'events', 'onUpdated',
87 api_schema_graph.Lookup('tabs', 'properties',
90 api_schema_graph.Lookup('tabs', 'types', 'Tab'))
92 api_schema_graph.Lookup('tabs', 'functions', 'get',
95 api_schema_graph.Lookup('tab
[all...]
H A Davailability_finder_test.py238 availability_graph.Lookup('tabs', 'properties',
242 availability_graph.Lookup('tabs', 'events', 'onActivated',
247 availability_graph.Lookup('tabs', 'events', 'onUpdated', 'parameters',
251 availability_graph.Lookup('tabs', 'events','onActivated'))
254 availability_graph.Lookup('tabs', 'functions', 'get', 'parameters',
258 availability_graph.Lookup('tabs', 'types', 'InjectDetails',
262 availability_graph.Lookup('tabs', 'types', 'InjectDetails',
266 availability_graph.Lookup('tabs', 'types', 'InjectDetails'))
272 availability_graph.Lookup('tabs', 'types', 'Tab', 'properties',
276 availability_graph.Lookup('tab
[all...]
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcache_test.cc48 int Lookup(int key) { function in class:leveldb::CacheTest
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(10
[all...]
/external/chromium_org/net/dns/
H A Dhost_cache_unittest.cc42 EXPECT_FALSE(cache.Lookup(key1, now));
44 EXPECT_TRUE(cache.Lookup(key1, now));
45 EXPECT_TRUE(cache.Lookup(key1, now)->error == entry.error);
53 EXPECT_FALSE(cache.Lookup(key2, now));
55 EXPECT_TRUE(cache.Lookup(key2, now));
62 EXPECT_TRUE(cache.Lookup(key1, now));
63 EXPECT_TRUE(cache.Lookup(key2, now));
64 EXPECT_NE(cache.Lookup(key1, now), cache.Lookup(key2, now));
69 EXPECT_FALSE(cache.Lookup(key
[all...]
/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_org/net/ftp/
H A Dftp_auth_cache_unittest.cc38 // Lookup non-existent entry.
39 EXPECT_TRUE(cache.Lookup(origin1) == NULL);
43 FtpAuthCache::Entry* entry1 = cache.Lookup(origin1);
51 FtpAuthCache::Entry* entry2 = cache.Lookup(origin2);
58 EXPECT_EQ(entry1, cache.Lookup(origin1));
62 FtpAuthCache::Entry* entry3 = cache.Lookup(origin1);
70 EXPECT_TRUE(cache.Lookup(origin1) == NULL);
74 EXPECT_TRUE(cache.Lookup(origin1) == NULL);
88 EXPECT_NE(cache.Lookup(origin1), cache.Lookup(origin
[all...]
H A Dftp_auth_cache.cc27 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) { function in class:net::FtpAuthCache
39 Entry* entry = Lookup(origin);
56 DCHECK(!Lookup(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_org/net/ssl/
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...]
/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/chromium_org/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/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/v8/test/cctest/
H A Dtest-dictionary.cc50 CHECK_EQ(table->Lookup(*a), *b);
51 CHECK_EQ(table->Lookup(*b), HEAP->undefined_value());
56 CHECK_EQ(table->Lookup(*a), *b);
57 CHECK_EQ(table->Lookup(*b), HEAP->undefined_value());
62 CHECK_NE(table->Lookup(*a), *b);
68 CHECK_EQ(table->Lookup(*a), HEAP->undefined_value());
78 CHECK_EQ(table->Lookup(*key), *value);
88 CHECK_EQ(table->Lookup(*key), HEAP->undefined_value());
96 CHECK_EQ(table->Lookup(*key), HEAP->undefined_value());
136 // Calling Lookup() shoul
[all...]
/external/chromium_org/content/renderer/
H A Dactive_notification_tracker.cc32 WebNotification* lookup = notification_table_.Lookup(id);
55 scoped_ptr<WebNotification> notification(notification_table_.Lookup(id));
71 return callback_table_.Lookup(id);
/external/smack/src/org/jivesoftware/smack/util/dns/
H A DDNSJavaResolver.java21 import org.xbill.DNS.Lookup;
46 Lookup lookup = new Lookup(name, Type.SRV);
/external/chromium_org/v8/test/cctest/
H A Dtest-dictionary.cc52 CHECK_EQ(table->Lookup(*a), *b);
53 CHECK_EQ(table->Lookup(*b), CcTest::heap()->the_hole_value());
58 CHECK_EQ(table->Lookup(*a), *b);
59 CHECK_EQ(table->Lookup(*b), CcTest::heap()->the_hole_value());
64 CHECK_NE(table->Lookup(*a), *b);
70 CHECK_EQ(table->Lookup(*a), CcTest::heap()->the_hole_value());
80 CHECK_EQ(table->Lookup(*key), *value);
90 CHECK_EQ(table->Lookup(*key), CcTest::heap()->the_hole_value());
98 CHECK_EQ(table->Lookup(*key), CcTest::heap()->the_hole_value());
113 return Smi::cast(Lookup(Sm
[all...]
/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/smack/src/org/xbill/DNS/spi/
H A DDNSJavaNameService.java14 import org.xbill.DNS.Lookup;
67 Lookup.setDefaultResolver(res);
77 Lookup.setDefaultSearchPath(new String[] {domain});
141 records = new Lookup(name, Type.AAAA).run();
143 records = new Lookup(name, Type.A).run();
145 records = new Lookup(name, Type.AAAA).run();
171 Record [] records = new Lookup(name, Type.PTR).run();
/external/chromium_org/content/renderer/media/
H A Daudio_message_filter_unittest.cc85 EXPECT_EQ(&delegate, filter->delegates_.Lookup(kStreamId));
117 filter->delegates_.Lookup(kStreamId));
137 EXPECT_EQ(&delegate1, filter->delegates_.Lookup(kStreamId1));
138 EXPECT_EQ(&delegate2, filter->delegates_.Lookup(kStreamId2));
164 filter->delegates_.Lookup(kStreamId1));
166 filter->delegates_.Lookup(kStreamId2));
/external/chromium_org/content/renderer/media/android/
H A Drenderer_demuxer_android.cc91 MediaSourceDelegate* delegate = delegates_.Lookup(demuxer_client_id);
100 MediaSourceDelegate* delegate = delegates_.Lookup(demuxer_client_id);
106 MediaSourceDelegate* delegate = delegates_.Lookup(demuxer_client_id);

Completed in 2883 milliseconds

1234567891011>>