HomeSort by relevance Sort by last modified time
    Searched refs:It (Results 26 - 50 of 954) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/iterator.primitives/iterator.traits/
pointer.pass.cpp 29 typedef std::iterator_traits<A*> It;
30 static_assert((std::is_same<It::difference_type, std::ptrdiff_t>::value), "");
31 static_assert((std::is_same<It::value_type, A>::value), "");
32 static_assert((std::is_same<It::pointer, A*>::value), "");
33 static_assert((std::is_same<It::reference, A&>::value), "");
34 static_assert((std::is_same<It::iterator_category, std::random_access_iterator_tag>::value), "");
iterator.pass.cpp 38 typedef std::iterator_traits<test_iterator> It;
39 static_assert((std::is_same<It::difference_type, int>::value), "");
40 static_assert((std::is_same<It::value_type, A>::value), "");
41 static_assert((std::is_same<It::pointer, A*>::value), "");
42 static_assert((std::is_same<It::iterator_category, std::forward_iterator_tag>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+=/
difference_type.pass.cpp 22 template <class It>
24 test(It i, typename std::iterator_traits<It>::difference_type n, It x)
26 std::move_iterator<It> r(i);
27 std::move_iterator<It>& rr = r += n;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-=/
difference_type.pass.cpp 22 template <class It>
24 test(It i, typename std::iterator_traits<It>::difference_type n, It x)
26 std::move_iterator<It> r(i);
27 std::move_iterator<It>& rr = r -= n;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+=/
difference_type.pass.cpp 22 template <class It>
24 test(It i, typename std::iterator_traits<It>::difference_type n, It x)
26 std::reverse_iterator<It> r(i);
27 std::reverse_iterator<It>& rr = r += n;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-=/
difference_type.pass.cpp 22 template <class It>
24 test(It i, typename std::iterator_traits<It>::difference_type n, It x)
26 std::reverse_iterator<It> r(i);
27 std::reverse_iterator<It>& rr = r -= n;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opindex/
difference_type.pass.cpp 22 template <class It>
24 test(It i, typename std::iterator_traits<It>::difference_type n,
25 typename std::iterator_traits<It>::value_type x)
27 typedef typename std::iterator_traits<It>::value_type value_type;
28 const std::reverse_iterator<It> r(i);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/
default.pass.cpp 20 template <class It>
24 std::move_iterator<It> r;
iter.pass.cpp 21 template <class It>
23 test(It i)
25 std::move_iterator<It> r(i);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/
make_move_iterator.pass.cpp 23 template <class It>
25 test(It i)
27 const std::move_iterator<It> r(i);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/
iter.pass.cpp 21 template <class It>
23 test(It i)
25 std::reverse_iterator<It> r(i);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/
op_gt.pass.cpp 24 template <class It>
26 test(It l, It r, bool x)
28 const std::move_iterator<It> r1(l);
29 const std::move_iterator<It> r2(r);
op_gte.pass.cpp 24 template <class It>
26 test(It l, It r, bool x)
28 const std::move_iterator<It> r1(l);
29 const std::move_iterator<It> r2(r);
op_lt.pass.cpp 24 template <class It>
26 test(It l, It r, bool x)
28 const std::move_iterator<It> r1(l);
29 const std::move_iterator<It> r2(r);
op_lte.pass.cpp 24 template <class It>
26 test(It l, It r, bool x)
28 const std::move_iterator<It> r1(l);
29 const std::move_iterator<It> r2(r);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/
post.pass.cpp 21 template <class It>
23 test(It i, It x)
25 std::move_iterator<It> r(i);
26 std::move_iterator<It> rr = r++;
pre.pass.cpp 21 template <class It>
23 test(It i, It x)
25 std::move_iterator<It> r(i);
26 std::move_iterator<It>& rr = ++r;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op!=/
test.pass.cpp 24 template <class It>
26 test(It l, It r, bool x)
28 const std::reverse_iterator<It> r1(l);
29 const std::reverse_iterator<It> r2(r);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op==/
test.pass.cpp 24 template <class It>
26 test(It l, It r, bool x)
28 const std::reverse_iterator<It> r1(l);
29 const std::reverse_iterator<It> r2(r);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt/
test.pass.cpp 24 template <class It>
26 test(It l, It r, bool x)
28 const std::reverse_iterator<It> r1(l);
29 const std::reverse_iterator<It> r2(r);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt=/
test.pass.cpp 24 template <class It>
26 test(It l, It r, bool x)
28 const std::reverse_iterator<It> r1(l);
29 const std::reverse_iterator<It> r2(r);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt/
test.pass.cpp 24 template <class It>
26 test(It l, It r, bool x)
28 const std::reverse_iterator<It> r1(l);
29 const std::reverse_iterator<It> r2(r);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt=/
test.pass.cpp 24 template <class It>
26 test(It l, It r, bool x)
28 const std::reverse_iterator<It> r1(l);
29 const std::reverse_iterator<It> r2(r);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/iterator.primitives/iterator.operations/
next.pass.cpp 20 template <class It>
22 test(It i, typename std::iterator_traits<It>::difference_type n, It x)
27 template <class It>
29 test(It i, It x)
prev.pass.cpp 20 template <class It>
22 test(It i, typename std::iterator_traits<It>::difference_type n, It x)
27 template <class It>
29 test(It i, It x)

Completed in 570 milliseconds

12 3 4 5 6 7 8 91011>>