/third_party/boost/libs/serialization/test/ |
D | test_set_hashed.cpp | 124 std::vector<A> tvec, tvec1; in test_hash_set() local 125 tvec.clear(); in test_hash_set() 127 std::copy(ahash_set.begin(), ahash_set.end(), std::back_inserter(tvec)); in test_hash_set() 128 std::sort(tvec.begin(), tvec.end()); in test_hash_set() 131 BOOST_CHECK(tvec == tvec1); in test_hash_set() 155 std::vector<A> tvec, tvec1; in test_hash_multiset() local 156 tvec.clear(); in test_hash_multiset() 158 std::copy(ahash_multiset.begin(), ahash_multiset.end(), std::back_inserter(tvec)); in test_hash_multiset() 159 std::sort(tvec.begin(), tvec.end()); in test_hash_multiset() 162 BOOST_CHECK(tvec == tvec1); in test_hash_multiset() [all …]
|
D | test_set_unordered.cpp | 76 std::vector<A> tvec, tvec1; in test_unordered_set() local 77 tvec.clear(); in test_unordered_set() 79 std::copy(anunordered_set.begin(), anunordered_set.end(), std::back_inserter(tvec)); in test_unordered_set() 80 std::sort(tvec.begin(), tvec.end()); in test_unordered_set() 83 BOOST_CHECK(tvec == tvec1); in test_unordered_set() 107 std::vector<A> tvec, tvec1; in test_unordered_multiset() local 108 tvec.clear(); in test_unordered_multiset() 110 std::copy(anunordered_multiset.begin(), anunordered_multiset.end(), std::back_inserter(tvec)); in test_unordered_multiset() 111 std::sort(tvec.begin(), tvec.end()); in test_unordered_multiset() 114 BOOST_CHECK(tvec == tvec1); in test_unordered_multiset()
|
D | test_set_boost_unordered.cpp | 76 std::vector<A> tvec, tvec1; in test_unordered_set() local 77 tvec.clear(); in test_unordered_set() 79 std::copy(anunordered_set.begin(), anunordered_set.end(), std::back_inserter(tvec)); in test_unordered_set() 80 std::sort(tvec.begin(), tvec.end()); in test_unordered_set() 83 BOOST_CHECK(tvec == tvec1); in test_unordered_set() 107 std::vector<A> tvec, tvec1; in test_unordered_multiset() local 108 tvec.clear(); in test_unordered_multiset() 110 std::copy(anunordered_multiset.begin(), anunordered_multiset.end(), std::back_inserter(tvec)); in test_unordered_multiset() 111 std::sort(tvec.begin(), tvec.end()); in test_unordered_multiset() 114 BOOST_CHECK(tvec == tvec1); in test_unordered_multiset()
|
D | test_map_boost_unordered.cpp | 95 std::vector< std::pair<random_key, A> > tvec, tvec1; in test_unordered_map() local 96 std::copy(anunordered_map.begin(), anunordered_map.end(), std::back_inserter(tvec)); in test_unordered_map() 97 std::sort(tvec.begin(), tvec.end()); in test_unordered_map() 100 BOOST_CHECK(tvec == tvec1); in test_unordered_map() 125 std::vector< std::pair<random_key, A> > tvec, tvec1; in test_unordered_multimap() local 126 tvec.clear(); in test_unordered_multimap() 128 std::copy(anunordered_multimap.begin(), anunordered_multimap.end(), std::back_inserter(tvec)); in test_unordered_multimap() 129 std::sort(tvec.begin(), tvec.end()); in test_unordered_multimap() 132 BOOST_CHECK(tvec == tvec1); in test_unordered_multimap()
|
D | test_map_unordered.cpp | 95 std::vector< std::pair<random_key, A> > tvec, tvec1; in test_unordered_map() local 96 std::copy(anunordered_map.begin(), anunordered_map.end(), std::back_inserter(tvec)); in test_unordered_map() 97 std::sort(tvec.begin(), tvec.end()); in test_unordered_map() 100 BOOST_CHECK(tvec == tvec1); in test_unordered_map() 125 std::vector< std::pair<random_key, A> > tvec, tvec1; in test_unordered_multimap() local 126 tvec.clear(); in test_unordered_multimap() 128 std::copy(anunordered_multimap.begin(), anunordered_multimap.end(), std::back_inserter(tvec)); in test_unordered_multimap() 129 std::sort(tvec.begin(), tvec.end()); in test_unordered_multimap() 132 BOOST_CHECK(tvec == tvec1); in test_unordered_multimap()
|
D | test_map_hashed.cpp | 94 std::vector< std::pair<random_key, A> > tvec, tvec1; in test_hash_map() local 95 std::copy(ahash_map.begin(), ahash_map.end(), std::back_inserter(tvec)); in test_hash_map() 96 std::sort(tvec.begin(), tvec.end()); in test_hash_map() 99 BOOST_CHECK(tvec == tvec1); in test_hash_map() 124 std::vector< std::pair<random_key, A> > tvec, tvec1; in test_hash_multimap() local 125 tvec.clear(); in test_hash_multimap() 127 std::copy(ahash_multimap.begin(), ahash_multimap.end(), std::back_inserter(tvec)); in test_hash_multimap() 128 std::sort(tvec.begin(), tvec.end()); in test_hash_multimap() 131 BOOST_CHECK(tvec == tvec1); in test_hash_multimap()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | intersect.inl | 87 genType tvec = orig - vert0; local 89 position.y = dot(tvec, pvec) * inv_det; 93 genType qvec = cross(tvec, edge1);
|
/third_party/flatbuffers/tests/ |
D | JavaTest.java | 690 FlexBuffers.Vector tvec = m.get("bar").asVector(); in testFlexBuffersTest() local 691 TestEq(tvec.size(), 3); in testFlexBuffersTest() 692 TestEq(tvec.get(0).asInt(), 1); in testFlexBuffersTest() 693 TestEq(tvec.get(1).asInt(), 2); in testFlexBuffersTest() 694 TestEq(tvec.get(2).asInt(), 3); in testFlexBuffersTest() 695 TestEq(((FlexBuffers.TypedVector) tvec).getElemType(), FlexBuffers.FBT_INT); in testFlexBuffersTest()
|
D | test.cpp | 2964 auto tvec = map["bar"].AsTypedVector(); in FlexBuffersTest() local 2965 TEST_EQ(tvec.size(), 3); in FlexBuffersTest() 2966 TEST_EQ(tvec[2].AsInt8(), 3); in FlexBuffersTest()
|