/third_party/boost/libs/numeric/ublas/test/ |
D | triangular_access.cpp | 23 void test_iterator( MAT & A ) { in test_iterator() function 133 test_iterator(A); in main() 138 test_iterator(B); in main() 143 test_iterator(C); in main() 148 test_iterator(D); in main() 153 test_iterator(E); in main() 158 test_iterator(F); in main() 185 test_iterator ( lta ); in main() 188 test_iterator ( ulta ); in main() 191 test_iterator ( slta ); in main() [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/ |
D | esextcTessellationShaderVertexOrdering.cpp | 488 …for (_test_iterations_const_iterator test_iterator = m_tests.begin(); test_iterator != m_tests.end… in iterate() local 489 test_iterator++) in iterate() 491 if (test_iterator->primitive_mode != TESSELLATION_SHADER_PRIMITIVE_MODE_ISOLINES) in iterate() 493 verifyVertexOrderingCorrectness(*test_iterator); in iterate() 497 …for (_test_iterations_const_iterator test_iterator = m_tests_points.begin(); test_iterator != m_te… in iterate() local 498 test_iterator++) in iterate() 500 const _test_iteration& test = *test_iterator; in iterate() 515 if (de::abs(paired_test_iterator->inner_tess_levels[0] - test_iterator->inner_tess_levels[0]) < in iterate() 517 de::abs(paired_test_iterator->inner_tess_levels[1] - test_iterator->inner_tess_levels[1]) < in iterate() 519 de::abs(paired_test_iterator->outer_tess_levels[0] - test_iterator->outer_tess_levels[0]) < in iterate() [all …]
|
D | esextcTessellationShaderProperties.cpp | 406 …for (_tests_const_iterator test_iterator = tests.begin(); test_iterator != tests.end(); test_itera… in iterate() local 408 const _test_descriptor& test = *test_iterator; in iterate()
|
D | esextcTessellationShaderTCTE.cpp | 3551 …for (_tests_const_iterator test_iterator = m_tests.begin(); test_iterator != m_tests.end(); ++test… in iterate() local 3576 test_iterator->vertex_spacing, true); /* is_point_mode_enabled */ in iterate() 3579 gl.useProgram(test_iterator->po_id); in iterate() 3582 switch (test_iterator->type) in iterate() 3586 gl.uniform2fv(test_iterator->inner_tess_levels_uniform_location, 1, /* count */ in iterate() 3590 gl.uniform4fv(test_iterator->outer_tess_levels_uniform_location, 1, /* count */ in iterate() 3661 TessellationShaderUtils::getESTokenForVertexSpacingMode(test_iterator->vertex_spacing); in iterate() 4092 …for (_tests_const_iterator test_iterator = m_tests.begin(); test_iterator != m_tests.end(); ++test… in iterate() local 4095 gl.useProgram(test_iterator->po_id); in iterate() 4105 switch (test_iterator->type) in iterate() [all …]
|
D | esextcTessellationShaderXFB.cpp | 669 …for (_tests_const_iterator test_iterator = tests.begin(); test_iterator != tests.end(); test_itera… in iterate() local 671 const _test_descriptor& test = *test_iterator; in iterate()
|
D | esextcTessellationShaderIsolines.cpp | 680 for (_tests_const_iterator test_iterator = vs_key_iterator->second.begin(); in iterate() local 681 test_iterator != vs_key_iterator->second.end(); test_iterator++) in iterate() 683 const _test_descriptor& test = *test_iterator; in iterate()
|
D | esextcTessellationShaderPoints.cpp | 485 …for (_tests_iterator test_iterator = m_tests.begin(); test_iterator != m_tests.end(); test_iterato… in iterate() local 487 _test_descriptor& test = *test_iterator; in iterate()
|
D | esextcTessellationShaderTriangles.cpp | 425 …for (_tests_const_iterator test_iterator = m_tests.begin(); test_iterator != m_tests.end(); test_i… in iterate() local 427 const _test_descriptor& test = *test_iterator; in iterate()
|
D | esextcTessellationShaderTessellation.cpp | 2029 …for (_tests_const_iterator test_iterator = m_tests.begin(); test_iterator != m_tests.end(); test_i… in iterate() local 2031 const _test_descriptor& test = *test_iterator; in iterate()
|
/third_party/boost/libs/any/test/ |
D | test.hpp | 202 template<typename test_iterator> 207 tester(test_iterator first_test, test_iterator after_last_test) in tester() 218 test_iterator begin, end; 232 template<typename test_iterator> 233 bool tester<test_iterator>::operator()() in operator ()() 244 for(test_iterator current = begin; current != end; ++current) in operator ()()
|
/third_party/boost/libs/regex/test/regress/ |
D | test_partial_match.hpp | 128 typedef boost::regex_iterator<const_iterator, charT, traits> test_iterator; in test_regex_iterator() typedef 132 test_iterator start(search_text.begin(), search_text.end(), r, opts), end; in test_regex_iterator() 133 test_iterator copy(start); in test_regex_iterator() 189 typedef boost::regex_token_iterator<const_iterator, charT, traits> test_iterator; in test_regex_token_iterator() typedef 196 test_iterator start(search_text.begin(), search_text.end(), r, 0, opts), end; in test_regex_token_iterator() 197 test_iterator copy(start); in test_regex_token_iterator() 223 test_iterator start2(search_text.begin(), search_text.end(), r, -1, opts), end2; in test_regex_token_iterator() 224 test_iterator copy2(start2); in test_regex_token_iterator()
|
D | test_regex_search.hpp | 181 typedef boost::regex_iterator<const_iterator, charT, traits> test_iterator; in test_regex_iterator() typedef 185 test_iterator start(search_text.begin(), search_text.end(), r, opts), end; in test_regex_iterator() 186 test_iterator copy(start); in test_regex_iterator() 242 typedef boost::regex_token_iterator<const_iterator, charT, traits> test_iterator; in test_regex_token_iterator() typedef 249 test_iterator start(search_text.begin(), search_text.end(), r, 0, opts), end; in test_regex_token_iterator() 250 test_iterator copy(start); in test_regex_token_iterator() 276 test_iterator start2(search_text.begin(), search_text.end(), r, -1, opts), end2; in test_regex_token_iterator() 277 test_iterator copy2(start2); in test_regex_token_iterator() 335 start2 = test_iterator(search_text.begin(), search_text.end(), r, subs, opts); in test_regex_token_iterator()
|
D | test_icu.cpp | 168 typedef boost::u32regex_iterator<const_iterator> test_iterator; in test_icu_grep() typedef 171 test_iterator start(search_text.begin(), search_text.end(), r, opts), end; in test_icu_grep() 172 test_iterator copy(start); in test_icu_grep()
|
/third_party/boost/libs/range/test/ |
D | iterator.cpp | 25 void test_iterator() in test_iterator() function 58 test->add(BOOST_TEST_CASE(&boost_range_test::test_iterator)); in init_unit_test_suite()
|
D | iterator_ext.cpp | 135 void test_iterator() in test_iterator() function 150 test->add(BOOST_TEST_CASE(&boost_range_test::test_iterator)); in init_unit_test_suite()
|
/third_party/boost/libs/ptr_container/test/ |
D | iterator_test.cpp | 16 void test_iterator() in test_iterator() function 71 test->add( BOOST_TEST_CASE( &test_iterator ) ); in init_unit_test_suite()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | test-iter.cc | 97 test_iterator (Iter it) in test_iterator() function 114 test_iterator (lst.iter ()); in test_iterable() 159 test_iterator (hb_zip (st, v)); in main()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | test-iter.cc | 97 test_iterator (Iter it) in test_iterator() function 114 test_iterator (lst.iter ()); in test_iterable() 159 test_iterator (hb_zip (st, v)); in main()
|
/third_party/harfbuzz/src/ |
D | test-iter.cc | 97 test_iterator (Iter it) in test_iterator() function 114 test_iterator (lst.iter ()); in test_iterable() 159 test_iterator (hb_zip (st, v)); in main()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cSparseBufferTests.cpp | 1990 …for (_test_cases_const_iterator test_iterator = m_test_cases.begin(); test_iterator != m_test_case… in execute() local 1991 ++test_iterator) in execute() 1994 const _test_case& test_case = *test_iterator; in execute()
|
/third_party/python/Lib/test/ |
D | test_memoryio.py | 261 def test_iterator(self): member in MemoryTestMixin
|
D | test_lzma.py | 973 def test_iterator(self): member in FileTestCase
|
D | test_typing.py | 3378 def test_iterator(self): member in CollectionsAbcTests
|