Home
last modified time | relevance | path

Searched refs:check_iterator (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/libs/regex/test/concepts/
Dicu_concept_check.cpp56 void check_iterator(I i) in check_iterator() function
228check_iterator(boost::make_u32regex_iterator((const char*)(pb), e1, boost::regex_constants::match_… in main()
229 check_iterator(boost::make_u32regex_iterator((const char*)(pb), e1)); in main()
230check_iterator(boost::make_u32regex_iterator((const UChar*)(pb), e1, boost::regex_constants::match… in main()
231 check_iterator(boost::make_u32regex_iterator((const UChar*)(pb), e1)); in main()
232check_iterator(boost::make_u32regex_iterator((const wchar_t*)(pb), e1, boost::regex_constants::mat… in main()
233 check_iterator(boost::make_u32regex_iterator((const wchar_t*)(pb), e1)); in main()
234 check_iterator(boost::make_u32regex_iterator(s1, e1, boost::regex_constants::match_default)); in main()
235 check_iterator(boost::make_u32regex_iterator(s2, e1)); in main()
236 check_iterator(boost::make_u32regex_iterator(us, e1)); in main()
/third_party/boost/libs/range/test/
Dreversible_range.cpp30 void check_iterator() in check_iterator() function
64 test->add( BOOST_TEST_CASE( &check_iterator ) ); in init_unit_test_suite()
/third_party/python/Lib/test/
Dtest_iter.py89 def check_iterator(self, it, seq, pickle=True): member in TestCase
132 self.check_iterator(iter(range(10)), list(range(10)))
174 self.check_iterator(iter(IteratingSequenceClass(10)), list(range(10)))
182 self.check_iterator(iter(SequenceClass(10)), list(range(10)))
249 self.check_iterator(iter(C(), 10), list(range(10)), pickle=False)
257 self.check_iterator(iter(spam, 10), list(range(10)), pickle=False)
267 self.check_iterator(iter(spam, 20), list(range(10)), pickle=False)
/third_party/python/Lib/wsgiref/
Dvalidate.py185 check_iterator(iterator)
435 def check_iterator(iterator): function