Searched defs:ASSERT_EQ (Results 1 - 25 of 25) sorted by relevance

/external/google-breakpad/src/processor/
H A Dpathname_stripper_unittest.cc41 #define ASSERT_EQ(e1, e2) ASSERT_TRUE((e1) == (e2)) macro
48 ASSERT_EQ(PathnameStripper::File("/dir/file"), "file");
49 ASSERT_EQ(PathnameStripper::File("\\dir\\file"), "file");
50 ASSERT_EQ(PathnameStripper::File("/dir\\file"), "file");
51 ASSERT_EQ(PathnameStripper::File("\\dir/file"), "file");
52 ASSERT_EQ(PathnameStripper::File("dir/file"), "file");
53 ASSERT_EQ(PathnameStripper::File("dir\\file"), "file");
54 ASSERT_EQ(PathnameStripper::File("dir/\\file"), "file");
55 ASSERT_EQ(PathnameStripper::File("dir\\/file"), "file");
56 ASSERT_EQ(PathnameStrippe
[all...]
H A Daddress_map_unittest.cc49 #define ASSERT_EQ(e1, e2) ASSERT_TRUE((e1) == (e2)) macro
77 ASSERT_EQ(CountedObject::count(), 0);
89 ASSERT_EQ(CountedObject::count(), 0);
93 ASSERT_EQ(CountedObject::count(), 1);
95 ASSERT_EQ(CountedObject::count(), 1); // still holding entry in this scope
107 ASSERT_EQ(CountedObject::count(), 1);
108 ASSERT_EQ(entry->id(), 1);
109 ASSERT_EQ(address, 10);
116 ASSERT_EQ(CountedObject::count(), 2);
175 ASSERT_EQ(CountedObjec
[all...]
/external/protobuf/src/google/protobuf/
H A Dmap_test_util_impl.h42 #define ASSERT_EQ GOOGLE_CHECK_EQ macro
H A Dtest_util_lite.cc44 #define ASSERT_EQ GOOGLE_CHECK_EQ macro
264 ASSERT_EQ(2, message.repeated_int32_size ());
265 ASSERT_EQ(2, message.repeated_int64_size ());
266 ASSERT_EQ(2, message.repeated_uint32_size ());
267 ASSERT_EQ(2, message.repeated_uint64_size ());
268 ASSERT_EQ(2, message.repeated_sint32_size ());
269 ASSERT_EQ(2, message.repeated_sint64_size ());
270 ASSERT_EQ(2, message.repeated_fixed32_size ());
271 ASSERT_EQ(2, message.repeated_fixed64_size ());
272 ASSERT_EQ(
[all...]
H A Dlite_unittest.cc96 #define ASSERT_EQ GOOGLE_CHECK_EQ macro
/external/google-breakpad/src/client/
H A Dminidump_file_writer_unittest.cc53 #define ASSERT_EQ(e1, e2) ASSERT_TRUE((e1) == (e2)) macro
152 ASSERT_EQ(read(fd, buffer, expected_byte_count),
165 ASSERT_EQ(memcmp(buffer, expected, expected_byte_count), 0);
/external/valgrind/none/tests/amd64-darwin/
H A Dbug341419.c30 #define ASSERT_EQ(a, b) _ASSERT_OP(a, ==, b) macro
109 ASSERT_EQ(sig, expected_sig);
115 ASSERT_EQ(si->si_signo, expected_sig);
116 ASSERT_EQ(si->si_errno, 0);
118 ASSERT_EQ(si->si_code, expected_code);
119 ASSERT_EQ(si->si_pid, 0);
120 ASSERT_EQ(si->si_uid, 0);
121 ASSERT_EQ(si->si_status, 0);
122 ASSERT_EQ(si->si_addr, 0);
123 ASSERT_EQ(s
[all...]
/external/valgrind/none/tests/x86-darwin/
H A Dbug341419.c30 #define ASSERT_EQ(a, b) _ASSERT_OP(a, ==, b) macro
110 ASSERT_EQ(sig, expected_sig);
116 ASSERT_EQ(si->si_signo, expected_sig);
117 ASSERT_EQ(si->si_errno, 0);
119 ASSERT_EQ(si->si_code, expected_code);
120 ASSERT_EQ(si->si_pid, 0);
121 ASSERT_EQ(si->si_uid, 0);
122 ASSERT_EQ(si->si_status, 0);
123 ASSERT_EQ(si->si_addr, 0);
124 ASSERT_EQ(s
[all...]
/external/skia/src/opts/
H A DSkColor_opts_SSE2.h13 #define ASSERT_EQ(a,b) SkASSERT(0xffff == _mm_movemask_epi8(_mm_cmpeq_epi8((a), (b)))) macro
57 ASSERT_EQ(ag, _mm_and_si128(mask, ag)); // ag = _mm_srli_epi16(c, 8) did this for us.
61 ASSERT_EQ(rb, _mm_and_si128(mask, rb)); // rb = _mm_srli_epi16(rb, 8) did this for us.
288 #undef ASSERT_EQ macro
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
H A Dtest_harness.h136 /* ASSERT_EQ(expected, measured): expected == measured */
137 #define ASSERT_EQ TEST_API(ASSERT_EQ) macro
/external/linux-kselftest/tools/testing/selftests/seccomp/
H A Dtest_harness.h137 /* ASSERT_EQ(expected, measured): expected == measured */
138 #define ASSERT_EQ TEST_API(ASSERT_EQ) macro
/external/minijail/
H A Dtest_harness.h124 /* ASSERT_EQ(expected, measured): expected == measured */
125 #define ASSERT_EQ TEST_API(ASSERT_EQ) macro
/external/seccomp-tests/linux/
H A Dtest_harness.h139 /* ASSERT_EQ(expected, measured): expected == measured */
140 #define ASSERT_EQ TEST_API(ASSERT_EQ) macro
/external/google-breakpad/src/testing/gtest/include/gtest/
H A Dgtest.h1294 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
1350 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1381 // This specialization is used when the first argument to ASSERT_EQ()
1387 // version will be picked when the second argument to ASSERT_EQ() is
1388 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1397 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1406 // This version will be picked when the second argument to ASSERT_EQ() is a
1407 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
1884 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) macro
/external/googletest/googletest/include/gtest/
H A Dgtest.h1410 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1441 // This specialization is used when the first argument to ASSERT_EQ()
1447 // version will be picked when the second argument to ASSERT_EQ() is
1448 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1457 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1466 // This version will be picked when the second argument to ASSERT_EQ() is a
1467 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
1960 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) macro
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h1409 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1438 // This specialization is used when the first argument to ASSERT_EQ()
1444 // version will be picked when the second argument to ASSERT_EQ() is
1445 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1454 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1462 // This version will be picked when the second argument to ASSERT_EQ() is a
1463 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
1956 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) macro
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h1286 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
1344 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1375 // This specialization is used when the first argument to ASSERT_EQ()
1381 // version will be picked when the second argument to ASSERT_EQ() is
1382 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1391 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1400 // This version will be picked when the second argument to ASSERT_EQ() is a
1401 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
1884 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) macro
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest.h1284 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
1340 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1371 // This specialization is used when the first argument to ASSERT_EQ()
1377 // version will be picked when the second argument to ASSERT_EQ() is
1378 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1387 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1396 // This version will be picked when the second argument to ASSERT_EQ() is a
1397 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
1880 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) macro
/external/protobuf/gtest/include/gtest/
H A Dgtest.h1233 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
1287 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1318 // This specialization is used when the first argument to ASSERT_EQ()
1324 // version will be picked when the second argument to ASSERT_EQ() is
1325 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1337 // ASSERT_EQ() is a pointer, e.g. ASSERT_EQ(NULL, a_pointer).
1774 #define ASSERT_EQ(expected, actual) \ macro
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/
H A Dgtest.h1284 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
1342 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1373 // This specialization is used when the first argument to ASSERT_EQ()
1379 // version will be picked when the second argument to ASSERT_EQ() is
1380 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1389 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1398 // This version will be picked when the second argument to ASSERT_EQ() is a
1399 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
1882 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) macro
/external/v8/testing/gtest/include/gtest/
H A Dgtest.h1410 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1441 // This specialization is used when the first argument to ASSERT_EQ()
1447 // version will be picked when the second argument to ASSERT_EQ() is
1448 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1457 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1466 // This version will be picked when the second argument to ASSERT_EQ() is a
1467 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
1960 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) macro
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
H A Dgtest.h1341 // (e.g. ASSERT_EQ). OtherOperand is the type of the other operand in
1422 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
1481 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1512 // This specialization is used when the first argument to ASSERT_EQ()
1518 // version will be picked when the second argument to ASSERT_EQ() is
1519 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1528 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1537 // This version will be picked when the second argument to ASSERT_EQ() is a
1538 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
2020 # define ASSERT_EQ(val macro
[all...]
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest.h6669 // (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure.
6672 // and their values, as strings. For example, for ASSERT_EQ(foo, bar)
16821 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
16875 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
16906 // This specialization is used when the first argument to ASSERT_EQ()
16912 // version will be picked when the second argument to ASSERT_EQ() is
16913 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
16925 // ASSERT_EQ() is a pointer, e.g. ASSERT_EQ(NULL, a_pointer).
17351 // of ASSERT_EQ i
17729 #define ASSERT_EQ macro
[all...]
/external/fmtlib/test/gtest/
H A Dgtest.h7135 // (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure.
7138 // and their values, as strings. For example, for ASSERT_EQ(foo, bar)
18754 // (e.g. ASSERT_EQ). OtherOperand is the type of the other operand in
18835 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
18885 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
18916 // This specialization is used when the first argument to ASSERT_EQ()
18922 // version will be picked when the second argument to ASSERT_EQ() is
18923 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
18932 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
18941 // This version will be picked when the second argument to ASSERT_EQ() i
19781 # define ASSERT_EQ macro
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest.h7136 // (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure.
7139 // and their values, as strings. For example, for ASSERT_EQ(foo, bar)
18755 // (e.g. ASSERT_EQ). OtherOperand is the type of the other operand in
18836 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
18886 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
18917 // This specialization is used when the first argument to ASSERT_EQ()
18923 // version will be picked when the second argument to ASSERT_EQ() is
18924 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
18933 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
18942 // This version will be picked when the second argument to ASSERT_EQ() i
19782 # define ASSERT_EQ macro
[all...]

Completed in 774 milliseconds