Home
last modified time | relevance | path

Searched refs:test_iterator (Results 1 – 23 of 23) sorted by relevance

/third_party/boost/libs/numeric/ublas/test/
Dtriangular_access.cpp23 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/
DesextcTessellationShaderVertexOrdering.cpp488 …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 …]
DesextcTessellationShaderProperties.cpp406 …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()
DesextcTessellationShaderTCTE.cpp3551 …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 …]
DesextcTessellationShaderXFB.cpp669 …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()
DesextcTessellationShaderIsolines.cpp680 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()
DesextcTessellationShaderPoints.cpp485 …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()
DesextcTessellationShaderTriangles.cpp425 …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()
DesextcTessellationShaderTessellation.cpp2029 …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/
Dtest.hpp202 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/
Dtest_partial_match.hpp128 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()
Dtest_regex_search.hpp181 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()
Dtest_icu.cpp168 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/
Diterator.cpp25 void test_iterator() in test_iterator() function
58 test->add(BOOST_TEST_CASE(&boost_range_test::test_iterator)); in init_unit_test_suite()
Diterator_ext.cpp135 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/
Diterator_test.cpp16 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/
Dtest-iter.cc97 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/
Dtest-iter.cc97 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/
Dtest-iter.cc97 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/
Dgl4cSparseBufferTests.cpp1990 …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/
Dtest_memoryio.py261 def test_iterator(self): member in MemoryTestMixin
Dtest_lzma.py973 def test_iterator(self): member in FileTestCase
Dtest_typing.py3378 def test_iterator(self): member in CollectionsAbcTests