Home
last modified time | relevance | path

Searched refs:empty2 (Results 1 – 18 of 18) sorted by relevance

/third_party/mbedtls/programs/test/
Dselftest.c82 void *empty2 = mbedtls_calloc( 0, 1 ); in calloc_self_test() local
87 if( empty1 == NULL && empty2 == NULL ) in calloc_self_test()
92 else if( empty1 == NULL || empty2 == NULL ) in calloc_self_test()
98 else if( empty1 == empty2 ) in calloc_self_test()
147 mbedtls_free( empty2 ); in calloc_self_test()
/third_party/typescript/tests/baselines/reference/
DimplicitIndexSignatures.js5 let empty2: {}; variable
11 map = empty2;
63 var empty2; variable
69 map = empty2;
DimplicitIndexSignatures.types10 let empty2: {};
11 >empty2 : {}
43 map = empty2;
44 >map = empty2 : {}
46 >empty2 : {}
DimplicitIndexSignatures.symbols9 let empty2: {};
10 >empty2 : Symbol(empty2, Decl(implicitIndexSignatures.ts, 3, 3))
35 map = empty2;
37 >empty2 : Symbol(empty2, Decl(implicitIndexSignatures.ts, 3, 3))
/third_party/typescript/tests/cases/compiler/
DimplicitIndexSignatures.ts4 let empty2: {}; variable
10 map = empty2;
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/
Dalgorithm_test.cc51 std::vector<int> empty2; in TEST() local
56 absl::equal(empty1.begin(), empty1.end(), empty2.begin(), empty2.end())); in TEST()
/third_party/glslang/Test/baseResults/
Dempty.frag.out6 empty2.frag
/third_party/googletest/googletest/test/
Dgtest-typed-test_test.cc109 typename TestFixture::IntSet empty2; in TYPED_TEST() local
110 EXPECT_EQ(0U, empty2.size()); in TYPED_TEST()
/third_party/skia/tests/
DRegionTest.cpp83 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/flutter/skia/tests/
DRegionTest.cpp83 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/
Dtest_dict_version.py48 empty2 = self.new_dict()
Dtest_dict.py628 empty2 = fn(dict())
659 self.assertTrue(empty == empty2)
660 self.assertFalse(empty != empty2)
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstcaps.c1548 GstCaps *empty1, *empty2, *any1, *any2, *caps1, *caps2, *caps3, *caps4, in GST_START_TEST() local
1554 empty2 = gst_caps_new_empty (); in GST_START_TEST()
1621 fail_unless (gst_caps_is_equal (empty1, empty2) == TRUE); in GST_START_TEST()
1622 fail_unless (gst_caps_is_strictly_equal (empty1, empty2) == TRUE); in GST_START_TEST()
1726 gst_caps_unref (empty2); in GST_START_TEST()
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Doptional_test.cc669 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/js/compatibility_tests/v3.0.0/
Dmessage_test.js87 var empty2 = new proto.jspb.test.Empty([]);
89 assertObjectEquals('Message should not be corrupted:', empty2, empty1);
/third_party/protobuf/js/compatibility_tests/v3.1.0/
Dmessage_test.js87 var empty2 = new proto.jspb.test.Empty([]);
89 assertObjectEquals('Message should not be corrupted:', empty2, empty1);
/third_party/protobuf/js/
Dmessage_test.js137 var empty2 = new proto.jspb.test.Empty([]);
139 assertObjectEquals('Message should not be corrupted:', empty2, empty1);
/third_party/protobuf/src/google/protobuf/util/
Dmessage_differencer_unittest.cc776 unittest::TestEmptyMessage empty2; in TEST() local
779 UnknownFieldSet* unknown2 = empty2.mutable_unknown_fields(); in TEST()
793 EXPECT_TRUE(differencer.Compare(empty1, empty2)); in TEST()