/external/google-breakpad/src/processor/ |
H A D | pathname_stripper_unittest.cc | 41 #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 D | address_map_unittest.cc | 49 #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/google-breakpad/src/client/ |
H A D | minidump_file_writer_unittest.cc | 53 #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/protobuf/src/google/protobuf/ |
H A D | test_util_lite.cc | 43 #define ASSERT_EQ GOOGLE_CHECK_EQ macro 263 ASSERT_EQ(2, message.repeated_int32_size ()); 264 ASSERT_EQ(2, message.repeated_int64_size ()); 265 ASSERT_EQ(2, message.repeated_uint32_size ()); 266 ASSERT_EQ(2, message.repeated_uint64_size ()); 267 ASSERT_EQ(2, message.repeated_sint32_size ()); 268 ASSERT_EQ(2, message.repeated_sint64_size ()); 269 ASSERT_EQ(2, message.repeated_fixed32_size ()); 270 ASSERT_EQ(2, message.repeated_fixed64_size ()); 271 ASSERT_EQ( [all...] |
/external/valgrind/none/tests/amd64-darwin/ |
H A D | bug341419.c | 30 #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 D | bug341419.c | 30 #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 D | SkColor_opts_SSE2.h | 13 #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. 245 #undef ASSERT_EQ macro
|
/external/skia/tests/ |
H A D | PDFPrimitivesTest.cpp | 68 #define ASSERT_EQ(REPORTER, SKSTRING, STRING) \ macro 77 ASSERT_EQ(REPORTER, result, STRING); \ 156 ASSERT_EQ(reporter, result, "[1 0 R]"); 286 ASSERT_EQ(reporter, result, 349 ASSERT_EQ(reporter, result, "<</Type /DType\n/n1 1 0 R>>");
|
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/ |
H A D | test_harness.h | 136 /* ASSERT_EQ(expected, measured): expected == measured */ 137 #define ASSERT_EQ TEST_API(ASSERT_EQ) macro
|
/external/minijail/ |
H A D | test_harness.h | 124 /* ASSERT_EQ(expected, measured): expected == measured */ 125 #define ASSERT_EQ TEST_API(ASSERT_EQ) macro
|
/external/tlsdate/src/ |
H A D | test_harness.h | 126 /* ASSERT_EQ(expected, measured): expected == measured */ 127 #define ASSERT_EQ TEST_API(ASSERT_EQ) macro
|
/external/google-breakpad/src/testing/gtest/include/gtest/ |
H A D | gtest.h | 1294 // 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/gtest/include/gtest/ |
H A D | gtest.h | 1341 // (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) 1472 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ() 1503 // This specialization is used when the first argument to ASSERT_EQ() 1509 // version will be picked when the second argument to ASSERT_EQ() is 1510 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or 1519 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr) 1528 // This version will be picked when the second argument to ASSERT_EQ() is a 1529 // pointer, e.g. ASSERT_EQ(NULL, a_pointer). 2011 # define ASSERT_EQ(val macro [all...] |
/external/llvm/utils/unittest/googletest/include/gtest/ |
H A D | gtest.h | 1286 // 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 D | gtest.h | 1284 // 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 D | gtest.h | 1233 // 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/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/ |
H A D | gtest.h | 1341 // (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) 1472 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ() 1503 // This specialization is used when the first argument to ASSERT_EQ() 1509 // version will be picked when the second argument to ASSERT_EQ() is 1510 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or 1519 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr) 1528 // This version will be picked when the second argument to ASSERT_EQ() is a 1529 // pointer, e.g. ASSERT_EQ(NULL, a_pointer). 2011 # define ASSERT_EQ(val macro [all...] |
/external/protobuf/gtest/fused-src/gtest/ |
H A D | gtest.h | 6669 // (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/libvpx/libvpx/third_party/googletest/src/include/gtest/ |
H A D | gtest.h | 7135 // (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 D | gtest.h | 7136 // (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...] |