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

1 2 3 4 5 6

  /external/chromium_org/components/metrics/
machine_id_provider_win_unittest.cc 15 std::string id1 = provider->GetMachineId(); local
17 EXPECT_NE(std::string(), id1); local
20 EXPECT_EQ(id1, id2);
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.id/
assign.pass.cpp 22 std::thread::id id1; local
23 id1 = id0;
24 assert(id1 == id0);
25 id1 = std::this_thread::get_id();
26 assert(id1 != id0);
copy.pass.cpp 22 std::thread::id id1 = id0; local
23 assert(id1 == id0);
eq.pass.cpp 23 std::thread::id id1; local
24 id1 = id0;
25 assert( (id1 == id0));
26 assert(!(id1 != id0));
27 id1 = std::this_thread::get_id();
28 assert(!(id1 == id0));
29 assert( (id1 != id0));
lt.pass.cpp 25 std::thread::id id1; local
27 assert(!(id0 < id1));
28 assert( (id0 <= id1));
29 assert(!(id0 > id1));
30 assert( (id0 >= id1));
thread_id.pass.cpp 26 std::thread::id id1; local
30 assert(h(id1) != h(id2));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.id/
assign.pass.cpp 22 std::thread::id id1; local
23 id1 = id0;
24 assert(id1 == id0);
25 id1 = std::this_thread::get_id();
26 assert(id1 != id0);
copy.pass.cpp 22 std::thread::id id1 = id0; local
23 assert(id1 == id0);
eq.pass.cpp 23 std::thread::id id1; local
24 id1 = id0;
25 assert( (id1 == id0));
26 assert(!(id1 != id0));
27 id1 = std::this_thread::get_id();
28 assert(!(id1 == id0));
29 assert( (id1 != id0));
lt.pass.cpp 25 std::thread::id id1; local
27 assert(!(id0 < id1));
28 assert( (id0 <= id1));
29 assert(!(id0 > id1));
30 assert( (id0 >= id1));
thread_id.pass.cpp 26 std::thread::id id1; local
30 assert(h(id1) != h(id2));
  /external/chromium_org/sync/api/attachments/
attachment_id_unittest.cc 20 AttachmentId id1 = AttachmentId::Create(); local
22 EXPECT_NE(id1, id2);
26 AttachmentId id1 = AttachmentId::Create(); local
27 AttachmentId id2(id1);
28 EXPECT_EQ(id1, id2);
32 AttachmentId id1 = AttachmentId::Create(); local
33 EXPECT_FALSE(id1 < id1);
36 EXPECT_FALSE(id1 < id1);
    [all...]
  /external/libcxx/test/localization/locales/locale/locale.types/locale.id/
id.pass.cpp 27 std::locale::id id1; variable
35 assert(id1.__get() == id+1);
36 assert(id1.__get() == id+1);
37 assert(id1.__get() == id+1);
44 assert(id1.__get() == id+1);
45 assert(id1.__get() == id+1);
46 assert(id1.__get() == id+1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.types/locale.id/
id.pass.cpp 27 std::locale::id id1; variable
35 assert(id1.__get() == id+1);
36 assert(id1.__get() == id+1);
37 assert(id1.__get() == id+1);
44 assert(id1.__get() == id+1);
45 assert(id1.__get() == id+1);
46 assert(id1.__get() == id+1);
  /external/chromium_org/content/renderer/
active_notification_tracker_unittest.cc 14 int id1 = tracker.RegisterNotification(notification1); local
20 tracker.GetNotification(id1, &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; \
103 if (++id1 == len) id1=0; \
  /external/eigen/doc/special_examples/
Tutorial_sparse_example_details.cpp 12 int id1 = i+j*n; local
16 else coeffs.push_back(T(id,id1,w)); // unknown coefficient
  /external/openssl/crypto/rc4/
rc4_skey.c 91 register int id1,id2; local
98 id1=id2=0;
102 id2 = (data[id1] + tmp + id2) & 0xff; \
103 if (++id1 == len) id1=0; \
  /external/chromium_org/chrome/browser/browsing_data/
mock_browsing_data_database_helper.cc 33 webkit_database::DatabaseIdentifier id1 = local
36 id1, "db1", "description 1", 1, base::Time()));
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table_unittest.cc 60 int64 id1; local
62 ASSERT_TRUE(table.StringToInt(&db_, "string1", &id1));
64 ASSERT_NE(id1, id2);
68 ASSERT_EQ(id1, id1a);
77 int64 id1; local
78 ASSERT_TRUE(table.StringToInt(&db_, "string1", &id1));
84 ASSERT_EQ(id1, id2);
93 int64 id1; local
94 ASSERT_TRUE(table.StringToInt(&db_, "modified", &id1));
101 ASSERT_EQ(id1, id2)
    [all...]
  /external/chromium_org/gpu/command_buffer/common/
id_allocator_test.cc 30 ResourceId id1 = allocator->AllocateID(); local
31 EXPECT_TRUE(allocator->InUse(id1));
37 EXPECT_NE(id1, id2);
40 allocator->FreeID(id1);
41 EXPECT_FALSE(allocator->InUse(id1));
64 ResourceId id1 = ids[kNumResources / 2]; local
65 allocator->FreeID(id1);
66 EXPECT_FALSE(allocator->InUse(id1));
69 EXPECT_EQ(id1, id2);
93 ResourceId id1 = allocator->AllocateIDAtOrAbove(kOffset) local
105 ResourceId id1 = allocator->AllocateIDAtOrAbove(kMaxPossibleOffset); local
115 ResourceId id1 = allocator->AllocateID(); local
    [all...]
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.algorithm/
swap.pass.cpp 49 std::thread::id id1 = t1.get_id(); local
51 assert(t0.get_id() == id1);
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/
get_id.pass.cpp 49 std::thread::id id1 = t1.get_id(); local
50 assert(t0.get_id() != id1);
swap.pass.cpp 49 std::thread::id id1 = t1.get_id(); local
51 assert(t0.get_id() == id1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.algorithm/
swap.pass.cpp 49 std::thread::id id1 = t1.get_id(); local
51 assert(t0.get_id() == id1);

Completed in 386 milliseconds

1 2 3 4 5 6