HomeSort by relevance Sort by last modified time
    Searched refs:It (Results 1 - 25 of 732) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/
iter.fail.cpp 20 template <class It>
22 test(It i)
24 std::move_iterator<It> r = i;
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/
iter.fail.cpp 20 template <class It>
22 test(It i)
24 std::reverse_iterator<It> r = i;
default.pass.cpp 20 template <class It>
24 std::reverse_iterator<It> r;
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.ref/
op_arrow.pass.cpp 19 template <class It>
21 test(It i)
23 std::move_iterator<It> r(i);
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/
minus.pass.cpp 25 template <class It>
27 test(It l, It r, typename std::iterator_traits<It>::difference_type x)
29 const std::move_iterator<It> r1(l);
30 const std::move_iterator<It> r2(r);
plus.pass.cpp 23 template <class It>
25 test(It i, typename std::iterator_traits<It>::difference_type n, It x)
27 const std::move_iterator<It> r(i);
28 std::move_iterator<It> rr = n + r;
  /ndk/sources/cxx-stl/llvm-libc++/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 const std::move_iterator<It> r(i);
27 std::move_iterator<It> rr = r + n;
  /ndk/sources/cxx-stl/llvm-libc++/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 const std::move_iterator<It> r(i);
27 std::move_iterator<It> rr = r - n;
  /ndk/sources/cxx-stl/llvm-libc++/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 const std::reverse_iterator<It> r(i);
27 std::reverse_iterator<It> rr = r + n;
  /ndk/sources/cxx-stl/llvm-libc++/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 const std::reverse_iterator<It> r(i);
27 std::reverse_iterator<It> rr = r - n;
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opsum/
difference_type.pass.cpp 23 template <class It>
25 test(It i, typename std::iterator_traits<It>::difference_type n, It x)
27 const std::reverse_iterator<It> r(i);
28 std::reverse_iterator<It> rr = n + r;
  /external/stlport/test/compiler/StTerm-order/
stterm-test.cc 19 It ctor done <-- 0
23 It dtor done <-- 0
32 It ctor done <-- 0
38 It dtor done <-- 0
66 class It
69 It();
70 ~It();
89 static It it; local
104 It::It(
    [all...]
  /external/valgrind/main/memcheck/tests/
deep_templates.stdout.exp 0 It's not NULL. How DULL.
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op.star/
op_star.pass.cpp 33 template <class It>
36 It it_;
38 typedef It value_type;
41 typedef It* pointer;
42 typedef It& reference;
45 explicit weird_iterator(It it) : it_(it) {}
46 ~weird_iterator() {it_ = It();}
53 template <class It>
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opref/
op_arrow.pass.cpp 35 template <class It>
38 It it_;
40 typedef It value_type;
43 typedef It* pointer;
44 typedef It& reference;
47 explicit weird_iterator(It it) : it_(it) {}
48 ~weird_iterator() {it_ = It();}
56 template <class It>
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/iterator.primitives/iterator.traits/
empty.pass.cpp 25 typedef std::iterator_traits<not_an_iterator> It;
const_pointer.pass.cpp 29 typedef std::iterator_traits<const 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, const A*>::value), "");
33 static_assert((std::is_same<It::reference, const A&>::value), "");
34 static_assert((std::is_same<It::iterator_category, std::random_access_iterator_tag>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/
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++/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/
post.pass.cpp 21 template <class It>
23 test(It i, It x)
25 std::reverse_iterator<It> r(i);
26 std::reverse_iterator<It> rr = r++;
pre.pass.cpp 21 template <class It>
23 test(It i, It x)
25 std::reverse_iterator<It> r(i);
26 std::reverse_iterator<It>& rr = ++r;
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/
post.pass.cpp 21 template <class It>
23 test(It i, It x)
25 std::reverse_iterator<It> r(i);
26 std::reverse_iterator<It> rr = r--;
pre.pass.cpp 21 template <class It>
23 test(It i, It x)
25 std::reverse_iterator<It> r(i);
26 std::reverse_iterator<It>& rr = --r;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
for_each_selectors.h 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
42 template<typename It>
48 It finish_iterator;
53 template<typename It>
54 struct for_each_selector : public generic_for_each_selector<It>
61 operator()(Op& o, It i)
69 template<typename It>
70 struct generate_selector : public generic_for_each_selector<It>
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/iterator.primitives/iterator.basic/
iterator.pass.cpp 32 typedef std::iterator<std::forward_iterator_tag, T> It;
33 static_assert((std::is_same<typename It::value_type, T>::value), "");
34 static_assert((std::is_same<typename It::difference_type, std::ptrdiff_t>::value), "");
35 static_assert((std::is_same<typename It::pointer, T*>::value), "");
36 static_assert((std::is_same<typename It::reference, T&>::value), "");
37 static_assert((std::is_same<typename It::iterator_category, std::forward_iterator_tag>::value), "");
44 typedef std::iterator<std::bidirectional_iterator_tag, T, short> It;
45 static_assert((std::is_same<typename It::value_type, T>::value), "");
46 static_assert((std::is_same<typename It::difference_type, short>::value), "");
47 static_assert((std::is_same<typename It::pointer, T*>::value), "")
    [all...]

Completed in 1085 milliseconds

1 2 3 4 5 6 7 8 91011>>