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

1 2 3 4 5

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.id/
lt.pass.cpp 26 std::thread::id id2 = std::this_thread::get_id(); local
31 assert( (id0 < id2));
32 assert( (id0 <= id2));
33 assert(!(id0 > id2));
34 assert(!(id0 >= id2));
thread_id.pass.cpp 27 std::thread::id id2 = std::this_thread::get_id(); local
30 assert(h(id1) != h(id2));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.types/locale.id/
id.pass.cpp 26 std::locale::id id2; variable
38 assert(id2.__get() == id+2);
39 assert(id2.__get() == id+2);
40 assert(id2.__get() == id+2);
47 assert(id2.__get() == id+2);
48 assert(id2.__get() == id+2);
49 assert(id2.__get() == id+2);
  /external/chromium_org/net/disk_cache/flash/
log_store_unittest.cc 66 int32 id2; local
68 EXPECT_TRUE(log_store.CreateEntry(kSize/2, &id2));
70 log_store.CloseEntry(id2);
106 int32 id2; local
108 EXPECT_TRUE(log_store.CreateEntry(kSize/2, &id2));
110 log_store.CloseEntry(id2);
  /external/chromium_org/content/renderer/
active_notification_tracker_unittest.cc 17 int id2 = tracker.RegisterNotification(notification2); local
23 tracker.GetNotification(id2, &result);
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/
rc4_skey.c 91 register int id1,id2; local
98 id1=id2=0;
102 id2 = (data[id1] + tmp + id2) & 0xff; \
104 d[(n)]=d[id2]; \
105 d[id2]=tmp; }
  /external/openssl/crypto/rc4/
rc4_skey.c 91 register int id1,id2; local
98 id1=id2=0;
102 id2 = (data[id1] + tmp + id2) & 0xff; \
104 d[(n)]=d[id2]; \
105 d[id2]=tmp; }
  /external/chromium_org/chrome/browser/browsing_data/
mock_browsing_data_database_helper.cc 38 webkit_database::DatabaseIdentifier id2 = local
41 id2, "db2", "description 2", 2, base::Time()));
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table_unittest.cc 59 int64 id2; local
61 ASSERT_TRUE(table.StringToInt(&db_, "string2", &id2));
62 ASSERT_NE(id1, id2);
80 int64 id2; local
81 ASSERT_TRUE(table.StringToInt(&db_, "string1", &id2));
82 ASSERT_EQ(id1, id2);
97 int64 id2; local
98 ASSERT_TRUE(table.StringToInt(&db_, "modified", &id2));
99 ASSERT_EQ(id1, id2);
  /external/chromium_org/gpu/command_buffer/common/
id_allocator_test.cc 35 ResourceId id2 = allocator->AllocateID(); local
36 EXPECT_TRUE(allocator->InUse(id2));
37 EXPECT_NE(id1, id2);
44 allocator->FreeID(id2);
45 EXPECT_FALSE(allocator->InUse(id2));
67 ResourceId id2 = allocator->AllocateID(); local
68 EXPECT_TRUE(allocator->InUse(id2));
69 EXPECT_EQ(id1, id2);
80 ResourceId id2 = allocator->AllocateID(); local
81 EXPECT_NE(id, id2);
95 ResourceId id2 = allocator->AllocateIDAtOrAbove(kOffset); local
107 ResourceId id2 = allocator->AllocateIDAtOrAbove(kMaxPossibleOffset); local
121 ResourceId id2 = allocator->AllocateID(); local
    [all...]
  /external/skia/tests/
ImageCacheTest.cpp 38 SkScaledImageCache::ID* id2 = cache.findAndLock(bm[i], scale, scale, local
40 REPORTER_ASSERT(reporter, id == id2);
44 cache.unlock(id2);
  /external/chromium_org/extensions/common/
event_filter_unittest.cc 110 int id2 = event_filter_.AddEventMatcher("event1", AllURLs()); local
115 ASSERT_EQ(1u, matches.count(id2));
158 int id2 = event_filter_.AddEventMatcher("event1", AllURLs()); local
165 ASSERT_EQ(1u, matches.count(id2));
185 int id2 = event_filter_.AddEventMatcher("event1", AllURLs()); local
189 event_filter_.RemoveEventMatcher(id2);
195 int id2 = event_filter_.AddEventMatcher("event1", AllURLs()); local
199 ASSERT_EQ("event1", event_filter_.RemoveEventMatcher(id2));
  /packages/apps/Email/tests/src/com/android/email/activity/
WelcomeTests.java 42 final long id2 = account2.mId; local
  /external/chromium/base/
id_map_unittest.cc 38 int32 id2 = map.Add(&obj2); local
43 EXPECT_EQ(&obj2, map.Lookup(id2));
49 map.Remove(id2);
  /external/chromium/chrome/browser/history/
url_database_unittest.cc 95 URLID id2 = GetRowForURL(url2, &info); local
96 EXPECT_TRUE(id2);
105 EXPECT_TRUE(UpdateURLRow(id2, url_info2));
  /external/chromium_org/ash/display/
resolution_notification_controller_unittest.cc 108 int64 id2 = ash::ScreenAsh::GetSecondaryDisplay().id(); local
121 display_manager->GetSelectedResolutionForDisplayId(id2, &resolution));
130 display_manager->GetSelectedResolutionForDisplayId(id2, &resolution));
139 int64 id2 = ash::ScreenAsh::GetSecondaryDisplay().id(); local
152 display_manager->GetSelectedResolutionForDisplayId(id2, &resolution));
161 display_manager->GetSelectedResolutionForDisplayId(id2, &resolution));
207 int64 id2 = ash::ScreenAsh::GetSecondaryDisplay().id(); local
220 display_manager->GetSelectedResolutionForDisplayId(id2, &resolution));
260 int64 id2 = ash::ScreenAsh::GetSecondaryDisplay().id(); local
274 display_manager->GetSelectedResolutionForDisplayId(id2, &resolution))
283 int64 id2 = ash::ScreenAsh::GetSecondaryDisplay().id(); local
    [all...]
  /external/chromium_org/base/
id_map_unittest.cc 36 int32 id2 = map.Add(&obj2); local
41 EXPECT_EQ(&obj2, map.Lookup(id2));
47 map.Remove(id2);
  /external/chromium_org/chrome/browser/history/android/
android_cache_database_unittest.cc 99 SearchTermID id2 = history_db_.AddSearchTerm(search_term2, search_time2); local
100 ASSERT_TRUE(id2);
107 ASSERT_EQ(id2, history_db_.GetSearchTerm(search_term2, &row1));
108 EXPECT_EQ(id2, row1.id);
  /external/chromium_org/chrome/browser/invalidation/
invalidation_service_test_template.h 89 id2(ipc::invalidation::ObjectSource::CHROME_SYNC, "PREFERENCE"),
104 const invalidation::ObjectId id2; member in class:InvalidationServiceTest
125 states[this->id2].payload = "2";
134 ids.insert(this->id2);
143 expected_states[this->id2].payload = "2";
200 ids.insert(this->id2);
231 states[this->id2].payload = "2";
238 expected_states[this->id2].payload = "2";
286 ids.insert(this->id2);
309 states[this->id2].payload = "2"
    [all...]
  /external/chromium_org/chromeos/display/
output_util_unittest.cc 229 int64 id2 = -1; local
231 EXPECT_TRUE(GetDisplayIdFromEDID(kLP2565B, charsize(kLP2565B), 0, &id2));
232 EXPECT_EQ(id1, id2);
  /external/chromium_org/sync/notifier/
invalidator_test_template.h 98 id2(ipc::invalidation::ObjectSource::TEST, "b"),
120 const invalidation::ObjectId id2; member in class:syncer::InvalidatorTest
140 states[this->id2].payload = "2";
149 ids.insert(this->id2);
157 expected_states[this->id2].payload = "2";
212 ids.insert(this->id2);
241 states[this->id2].payload = "2";
248 expected_states[this->id2].payload = "2";
290 ids.insert(this->id2);
311 states[this->id2].payload = "2"
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
ciphers.c 202 int id2 = (int)((id >> 8) & 0xffL); local
206 BIO_printf(STDout, " 0x%02X,0x%02X,0x%02X - ", id1, id2, id3); /* SSL2 cipher */
208 BIO_printf(STDout, " 0x%02X,0x%02X - ", id2, id3); /* SSL3 cipher */
210 BIO_printf(STDout, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3); /* whatever */
  /external/openssl/apps/
ciphers.c 202 int id2 = (int)((id >> 8) & 0xffL); local
206 BIO_printf(STDout, " 0x%02X,0x%02X,0x%02X - ", id1, id2, id3); /* SSL2 cipher */
208 BIO_printf(STDout, " 0x%02X,0x%02X - ", id2, id3); /* SSL3 cipher */
210 BIO_printf(STDout, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3); /* whatever */
  /external/speex/libspeex/
filterbank.c 61 int id2; local
98 id2 = id1+1;
101 bank->bank_right[i] = id2;
162 int id1, id2; local
164 id2 = bank->bank_right[i];
166 tmp += MULT16_16(mel[id2],bank->filter_right[i]);
  /dalvik/hit/src/com/android/hit/
Queries.java 194 long id2 = Long.parseLong(id, 16); local
196 return state.findReference(id2);

Completed in 684 milliseconds

1 2 3 4 5