Searched refs:empty2 (Results 1 - 9 of 9) sorted by relevance
/third_party/mbedtls/programs/test/ |
H A D | selftest.c | 59 void *empty2 = mbedtls_calloc(0, 1); in calloc_self_test() local 67 if (empty1 == NULL && empty2 == NULL) { in calloc_self_test() 71 } else if (empty1 == NULL || empty2 == NULL) { in calloc_self_test() 76 } else if (empty1 == empty2) { in calloc_self_test() 80 empty2 = NULL; in calloc_self_test() 88 mbedtls_free(empty2); in calloc_self_test() 91 empty2 = mbedtls_calloc(1, 0); in calloc_self_test() 92 if (empty1 == NULL && empty2 == NULL) { in calloc_self_test() 96 } else if (empty1 == NULL || empty2 == NULL) { in calloc_self_test() 101 } else if (empty1 == empty2) { in calloc_self_test() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | implicitIndexSignatures.js | 5 let empty2: {}; 11 map = empty2; 63 var empty2;
variable 69 map = empty2;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/ |
H A D | algorithm_test.cc | 51 std::vector<int> empty2; in TEST() local 56 absl::equal(empty1.begin(), empty1.end(), empty2.begin(), empty2.end())); in TEST()
|
/third_party/googletest/googletest/test/ |
H A D | gtest-typed-test_test.cc | 107 typename TestFixture::IntSet empty2; in TYPED_TEST() local 108 EXPECT_EQ(0U, empty2.size()); in TYPED_TEST()
|
/third_party/skia/tests/ |
H A D | RegionTest.cpp | 83 SkRegion empty, empty2; in test_empties() local 89 REPORTER_ASSERT(reporter, !empty.intersects(empty2)); in test_empties() 93 REPORTER_ASSERT(reporter, !empty.contains(empty2)); in test_empties()
|
/third_party/python/Lib/test/ |
H A D | test_dict_version.py | 48 empty2 = self.new_dict()
|
H A D | test_dict.py | 629 empty2 = fn(dict()) 660 self.assertTrue(empty == empty2) 661 self.assertFalse(empty != empty2)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
H A D | optional_test.cc | 669 absl::optional<Listenable> empty1, empty2, set1(absl::in_place), in TEST() local 677 set_to_empty = std::move(empty2); in TEST() 690 absl::optional<volatile Listenable> empty1, empty2, set1(absl::in_place), in TEST() local 698 set_to_empty = std::move(empty2); // destruct in TEST()
|
/third_party/protobuf/src/google/protobuf/util/ |
H A D | message_differencer_unittest.cc | 776 unittest::TestEmptyMessage empty2; in TEST() local 779 UnknownFieldSet* unknown2 = empty2.mutable_unknown_fields(); in TEST() 793 EXPECT_TRUE(differencer.Compare(empty1, empty2)); in TEST()
|
Completed in 13 milliseconds