HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 726 - 750 of 4017) sorted by null

<<21222324252627282930>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);
op_neq.pass.cpp 26 test(It l, It r, bool x) function
36 test(input_iterator<char*>(s), input_iterator<char*>(s), false);
37 test(input_iterator<char*>(s), input_iterator<char*>(s+1), true);
38 test(forward_iterator<char*>(s), forward_iterator<char*>(s), false);
39 test(forward_iterator<char*>(s), forward_iterator<char*>(s+1), true);
40 test(bidirectional_iterator<char*>(s), bidirectional_iterator<char*>(s), false);
41 test(bidirectional_iterator<char*>(s), bidirectional_iterator<char*>(s+1), true);
42 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s), false);
43 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s+1), true);
44 test(s, s, false)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/
default.pass.cpp 22 test() function
29 test<input_iterator<char*> >();
30 test<forward_iterator<char*> >();
31 test<bidirectional_iterator<char*> >();
32 test<random_access_iterator<char*> >();
33 test<char*>();
iter.fail.cpp 16 // test explicit
22 test(It i) function
30 test(s);
iter.pass.cpp 23 test(It i) function
32 test(input_iterator<char*>(s));
33 test(forward_iterator<char*>(s));
34 test(bidirectional_iterator<char*>(s));
35 test(random_access_iterator<char*>(s));
36 test(s);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/
post.pass.cpp 23 test(It i, It x) function
34 test(bidirectional_iterator<char*>(s+1), bidirectional_iterator<char*>(s));
35 test(random_access_iterator<char*>(s+1), random_access_iterator<char*>(s));
36 test(s+1, s);
pre.pass.cpp 23 test(It i, It x) function
34 test(bidirectional_iterator<char*>(s+1), bidirectional_iterator<char*>(s));
35 test(random_access_iterator<char*>(s+1), random_access_iterator<char*>(s));
36 test(s+1, s);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/
post.pass.cpp 23 test(It i, It x) function
34 test(input_iterator<char*>(s), input_iterator<char*>(s+1));
35 test(forward_iterator<char*>(s), forward_iterator<char*>(s+1));
36 test(bidirectional_iterator<char*>(s), bidirectional_iterator<char*>(s+1));
37 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s+1));
38 test(s, s+1);
pre.pass.cpp 23 test(It i, It x) function
34 test(input_iterator<char*>(s), input_iterator<char*>(s+1));
35 test(forward_iterator<char*>(s), forward_iterator<char*>(s+1));
36 test(bidirectional_iterator<char*>(s), bidirectional_iterator<char*>(s+1));
37 test(random_access_iterator<char*>(s), random_access_iterator<char*>(s+1));
38 test(s, s+1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.ref/
op_arrow.pass.cpp 21 test(It i) function
30 test(s);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iterator/
types.pass.cpp 14 // Test nested types:
33 test() function
51 test<input_iterator<char*> >();
52 test<forward_iterator<char*> >();
53 test<bidirectional_iterator<char*> >();
54 test<random_access_iterator<char*> >();
55 test<char*>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/
default.pass.cpp 22 test() function
29 test<bidirectional_iterator<const char*> >();
30 test<random_access_iterator<char*> >();
31 test<char*>();
32 test<const char*>();
iter.fail.cpp 16 // test explicit
22 test(It i) function
30 test(s);
iter.pass.cpp 23 test(It i) function
32 test(bidirectional_iterator<const char*>(s));
33 test(random_access_iterator<const char*>(s));
34 test(s);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op!=/
test.pass.cpp 26 test(It l, It r, bool x) function
36 test(bidirectional_iterator<const char*>(s), bidirectional_iterator<const char*>(s), false);
37 test(bidirectional_iterator<const char*>(s), bidirectional_iterator<const char*>(s+1), true);
38 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s), false);
39 test(random_access_iterator<const char*>(s), random_access_iterator<const char*>(s+1), true);
40 test(s, s, false);
41 test(s, s+1, true);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/
post.pass.cpp 23 test(It i, It x) function
34 test(bidirectional_iterator<const char*>(s+1), bidirectional_iterator<const char*>(s));
35 test(random_access_iterator<const char*>(s+1), random_access_iterator<const char*>(s));
36 test(s+1, s);
pre.pass.cpp 23 test(It i, It x) function
34 test(bidirectional_iterator<const char*>(s+1), bidirectional_iterator<const char*>(s));
35 test(random_access_iterator<const char*>(s+1), random_access_iterator<const char*>(s));
36 test(s+1, s);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.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);

Completed in 179 milliseconds

<<21222324252627282930>>