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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/server2/
api_schema_graph_test.py 62 # 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('tabs', 'functions', 'get'
    [all...]
availability_finder_test.py 238 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('tabs', 'types', 'Tab', 'properties'
    [all...]
  /art/compiler/utils/
scoped_hashtable_test.cc 36 EXPECT_TRUE(NULL == sht.Lookup(1));
40 EXPECT_TRUE(NULL == sht.Lookup(1));
48 EXPECT_EQ(sht.Lookup(1)->value_, 1);
51 EXPECT_EQ(sht.Lookup(1)->value_, 2);
54 EXPECT_EQ(sht.Lookup(1)->value_, 2);
57 EXPECT_EQ(sht.Lookup(1)->value_, 3);
60 EXPECT_EQ(sht.Lookup(1)->value_, 3);
61 EXPECT_EQ(sht.Lookup(2)->value_, 4);
64 EXPECT_EQ(sht.Lookup(1)->value_, 2);
65 EXPECT_TRUE(NULL == sht.Lookup(2))
    [all...]
  /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...]
  /external/chromium_org/net/dns/
host_cache_unittest.cc 42 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(key1, now))
    [all...]
  /external/chromium/net/ftp/
ftp_auth_cache_unittest.cc 37 // 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(origin2))
    [all...]
ftp_auth_cache.cc 29 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
42 Entry* entry = Lookup(origin);
61 DCHECK(!Lookup(origin));
  /external/chromium_org/net/ftp/
ftp_auth_cache_unittest.cc 38 // 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(origin2))
    [all...]
ftp_auth_cache.h 17 // information for ftp. Provides lookup, insertion, and deletion of entries.
41 Entry* Lookup(const GURL& origin);
ftp_auth_cache.cc 27 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
39 Entry* entry = Lookup(origin);
56 DCHECK(!Lookup(origin));
  /external/chromium/net/base/
ssl_client_auth_cache_unittest.cc 32 // 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(server1, &cached_cert))
    [all...]
host_cache_unittest.cc 41 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(Key("foobar.com"), now))
    [all...]
  /external/chromium_org/net/ssl/
ssl_client_auth_cache_unittest.cc 32 // 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(server1, &cached_cert))
    [all...]
  /external/chromium/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,
  /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,
  /external/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,
  /external/v8/test/cctest/
test-dictionary.cc 50 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() should not cause GC ever
    [all...]
  /development/host/windows/usb/api/
adb_object_handle.h 59 2. Every time API is called with a handle, a lookup is performed in
65 is dereferenced back to match lookup reference.
146 static AdbObjectHandle* Lookup(ADBAPIHANDLE adb_handle);
196 // Lookup object for the handle in the map
197 AdbObjectHandle* adb_object = AdbObjectHandle::Lookup(adb_handle);
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
area_code_map.h 50 const char* Lookup(const PhoneNumber& number) const;
  /external/chromium_org/content/renderer/
active_notification_tracker.cc 32 WebNotification* lookup = notification_table_.Lookup(id); local
33 if (!lookup)
36 *notification = *lookup;
55 scoped_ptr<WebNotification> notification(notification_table_.Lookup(id));
71 return callback_table_.Lookup(id);
  /external/smack/src/org/jivesoftware/smack/util/dns/
DNSJavaResolver.java 21 import org.xbill.DNS.Lookup;
46 Lookup lookup = new Lookup(name, Type.SRV); local
47 Record recs[] = lookup.run();
  /external/chromium_org/v8/test/cctest/
test-dictionary.cc 52 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());
112 int lookup(int key) function in class:ObjectHashTableTest
    [all...]
  /external/smack/src/org/xbill/DNS/spi/
DNSJavaNameService.java 14 import org.xbill.DNS.Lookup;
67 Lookup.setDefaultResolver(res);
77 Lookup.setDefaultSearchPath(new String[] {domain});
124 * Performs a forward DNS lookup for the host name.
141 records = new Lookup(name, Type.AAAA).run();
143 records = new Lookup(name, Type.A).run();
145 records = new Lookup(name, Type.AAAA).run();
164 * Performs a reverse DNS lookup.
165 * @param addr The ip address to lookup.
171 Record [] records = new Lookup(name, Type.PTR).run()
    [all...]
  /external/chromium_org/content/renderer/media/
audio_message_filter_unittest.cc 85 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/
renderer_demuxer_android.cc 91 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 1171 milliseconds

1 2 3 4 5 6 7 8 91011>>