HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 526 - 550 of 4552) sorted by null

<<21222324252627282930>>

  /external/libcxx/test/std/iterators/iterator.primitives/iterator.operations/
distance.pass.cpp 27 test(It first, It last, typename std::iterator_traits<It>::difference_type x) function
35 test(input_iterator<const char*>(s), input_iterator<const char*>(s+10), 10);
36 test(forward_iterator<const char*>(s), forward_iterator<const char*>(s+10), 10);
37 test(bidirectional_iterator<const char*>(s), bidirectional_iterator<const char*>(s+10), 10);
38 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s+10), 10);
39 test(s, s+10, 10);
next.pass.cpp 22 test(It i, typename std::iterator_traits<It>::difference_type n, It x) function
29 test(It i, It x) function
37 test(forward_iterator<const char*>(s), 10, forward_iterator<const char*>(s+10));
38 test(bidirectional_iterator<const char*>(s), 10, bidirectional_iterator<const char*>(s+10));
39 test(random_access_iterator<const char*>(s), 10, random_access_iterator<const char*>(s+10));
40 test(s, 10, s+10);
42 test(forward_iterator<const char*>(s), forward_iterator<const char*>(s+1));
43 test(bidirectional_iterator<const char*>(s), bidirectional_iterator<const char*>(s+1));
44 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s+1));
45 test(s, s+1)
    [all...]
prev.pass.cpp 22 test(It i, typename std::iterator_traits<It>::difference_type n, It x) function
29 test(It i, It x) function
37 test(bidirectional_iterator<const char*>(s+10), 10, bidirectional_iterator<const char*>(s));
38 test(random_access_iterator<const char*>(s+10), 10, random_access_iterator<const char*>(s));
39 test(s+10, 10, s);
41 test(bidirectional_iterator<const char*>(s+1), bidirectional_iterator<const char*>(s));
42 test(random_access_iterator<const char*>(s+1), random_access_iterator<const char*>(s));
43 test(s+1, s);
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/
post.pass.cpp 23 test(C c) function
34 test(std::vector<int>());
35 test(nasty_vector<int>());
pre.pass.cpp 23 test(C c) function
32 test(std::vector<int>());
33 test(nasty_vector<int>());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op_astrk/
test.pass.cpp 23 test(C c) function
32 test(std::vector<int>());
33 test(nasty_vector<int>());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.inserter/
test.pass.cpp 23 test(C c) function
33 test(std::vector<int>());
34 test(nasty_vector<int>());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/
post.pass.cpp 23 test(C c) function
34 test(std::list<int>());
35 test(nasty_list<int>());
pre.pass.cpp 23 test(C c) function
32 test(std::list<int>());
33 test(nasty_list<int>());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op_astrk/
test.pass.cpp 23 test(C c) function
32 test(std::list<int>());
33 test(nasty_list<int>());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.inserter/
test.pass.cpp 23 test(C c) function
33 test(std::list<int>());
34 test(nasty_list<int>());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/
post.pass.cpp 23 test(C c) function
34 test(std::vector<int>());
35 test(nasty_vector<int>());
pre.pass.cpp 23 test(C c) function
32 test(std::vector<int>());
33 test(nasty_vector<int>());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op_astrk/
test.pass.cpp 23 test(C c) function
32 test(std::vector<int>());
33 test(nasty_vector<int>());
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/inserter/
test.pass.cpp 23 test(C c) function
33 test(std::vector<int>());
34 test(nasty_vector<int>());
  /external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/
make_move_iterator.pass.cpp 25 test(It i) function
35 test(input_iterator<char*>(s+5));
36 test(forward_iterator<char*>(s+5));
37 test(bidirectional_iterator<char*>(s+5));
38 test(random_access_iterator<char*>(s+5));
39 test(s+5);
44 std::make_move_iterator(a); // test for LWG issue 2061
minus.pass.cpp 27 test(It l, It r, typename std::iterator_traits<It>::difference_type x) function
37 test(random_access_iterator<char*>(s+5), random_access_iterator<char*>(s), 5);
38 test(s+5, s, 5);
plus.pass.cpp 25 test(It i, typename std::iterator_traits<It>::difference_type n, It x) function
35 test(random_access_iterator<char*>(s+5), 5, random_access_iterator<char*>(s+10));
36 test(s+5, 5, s+10);
  /external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+/
difference_type.pass.cpp 24 test(It i, typename std::iterator_traits<It>::difference_type n, It x) function
34 test(random_access_iterator<const char*>(s+5), 5, random_access_iterator<const char*>(s+10));
35 test(s+5, 5, s+10);
  /external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+=/
difference_type.pass.cpp 24 test(It i, typename std::iterator_traits<It>::difference_type n, It x) function
35 test(random_access_iterator<const char*>(s+5), 5, random_access_iterator<const char*>(s+10));
36 test(s+5, 5, s+10);
  /external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-/
difference_type.pass.cpp 24 test(It i, typename std::iterator_traits<It>::difference_type n, It x) function
34 test(random_access_iterator<const char*>(s+5), 5, random_access_iterator<const char*>(s));
35 test(s+5, 5, s);
  /external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-=/
difference_type.pass.cpp 24 test(It i, typename std::iterator_traits<It>::difference_type n, It x) function
35 test(random_access_iterator<const char*>(s+5), 5, random_access_iterator<const char*>(s));
36 test(s+5, 5, s);
  /external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/
op_eq.pass.cpp 26 test(It l, It r, bool x) function
36 test(input_iterator<char*>(s), input_iterator<char*>(s), true);
37 test(input_iterator<char*>(s), input_iterator<char*>(s+1), false);
38 test(forward_iterator<char*>(s), forward_iterator<char*>(s), true);
39 test(forward_iterator<char*>(s), forward_iterator<char*>(s+1), false);
40 test(bidirectional_iterator<char*>(s), bidirectional_iterator<char*>(s), true);
41 test(bidirectional_iterator<char*>(s), bidirectional_iterator<char*>(s+1), false);
42 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s), true);
43 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s+1), false);
44 test(s, s, true)
    [all...]
op_gte.pass.cpp 26 test(It l, It r, bool x) function
36 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s), true);
37 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s+1), false);
38 test(random_access_iterator<char*>(s+1), random_access_iterator<char*>(s), true);
39 test(s, s, true);
40 test(s, s+1, false);
41 test(s+1, s, true);
op_lt.pass.cpp 26 test(It l, It r, bool x) function
36 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s), false);
37 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s+1), true);
38 test(random_access_iterator<char*>(s+1), random_access_iterator<char*>(s), false);
39 test(s, s, false);
40 test(s, s+1, true);
41 test(s+1, s, false);

Completed in 532 milliseconds

<<21222324252627282930>>