HomeSort by relevance Sort by last modified time
    Searched refs:difference_type (Results 201 - 225 of 1132) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_deque.h 95 typedef ptrdiff_t difference_type; typedef in struct:_Deque_iterator_base
119 difference_type _M_subtract(const _Self& __x) const {
120 return difference_type(_S_buffer_size()) * (_M_node - __x._M_node - 1) +
139 void _M_advance(difference_type __n) {
141 difference_type __offset = __n + (_M_cur - _M_first);
142 if (__offset >= 0 && __offset < difference_type(buffersize))
145 difference_type __node_offset =
147 : -difference_type((-__offset - 1) / buffersize) - 1;
151 (__offset - __node_offset * difference_type(buffersize));
156 _M_last = (_M_first = *(_M_node = __new_node)) + difference_type(_S_buffer_size())
168 typedef ptrdiff_t difference_type; typedef in struct:_Deque_iterator
414 typedef ptrdiff_t difference_type; typedef in class:deque
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_deque.h 95 typedef ptrdiff_t difference_type; typedef in struct:_Deque_iterator_base
119 difference_type _M_subtract(const _Self& __x) const {
120 return difference_type(_S_buffer_size()) * (_M_node - __x._M_node - 1) +
139 void _M_advance(difference_type __n) {
141 difference_type __offset = __n + (_M_cur - _M_first);
142 if (__offset >= 0 && __offset < difference_type(buffersize))
145 difference_type __node_offset =
147 : -difference_type((-__offset - 1) / buffersize) - 1;
151 (__offset - __node_offset * difference_type(buffersize));
156 _M_last = (_M_first = *(_M_node = __new_node)) + difference_type(_S_buffer_size())
168 typedef ptrdiff_t difference_type; typedef in struct:_Deque_iterator
414 typedef ptrdiff_t difference_type; typedef in class:deque
    [all...]
  /external/clang/include/clang/AST/
DependentDiagnostic.h 132 typedef int difference_type; typedef in class:clang::DeclContext::ddiag_iterator
157 ddiag_iterator &operator+=(difference_type N) {
164 ddiag_iterator operator+(difference_type N) const {
  /external/libcxx/test/std/containers/associative/map/
types.pass.cpp 28 // typedef typename allocator_type::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
66 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
67 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /external/libcxx/test/std/containers/associative/multimap/
types.pass.cpp 28 // typedef typename allocator_type::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
66 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
67 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /external/libcxx/test/std/containers/associative/multiset/
types.pass.cpp 28 // typedef typename allocator_type::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
66 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
67 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /external/libcxx/test/std/containers/associative/set/
types.pass.cpp 28 // typedef typename allocator_type::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
66 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
67 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /external/libcxx/test/std/containers/unord/unord.map/
types.pass.cpp 29 // typedef typename allocator_traits<allocator_type>::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
68 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
69 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /external/libcxx/test/std/containers/unord/unord.multimap/
types.pass.cpp 29 // typedef typename allocator_traits<allocator_type>::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
68 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
69 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /external/libcxx/test/std/containers/unord/unord.multiset/
types.pass.cpp 28 // typedef typename allocator_traits<allocator_type>::difference_type difference_type;
49 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
65 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
66 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /external/libcxx/test/std/containers/unord/unord.set/
types.pass.cpp 28 // typedef typename allocator_traits<allocator_type>::difference_type difference_type;
49 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
65 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
66 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iterator/
types.pass.cpp 20 // typedef Iter::difference_type difference_type;
36 typedef std::ptrdiff_t difference_type; typedef in struct:DummyIt
48 static_assert((std::is_same<typename R::difference_type, typename T::difference_type>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/
types.pass.cpp 28 // typedef typename allocator_type::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
66 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
67 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/
types.pass.cpp 28 // typedef typename allocator_type::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
66 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
67 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/
types.pass.cpp 28 // typedef typename allocator_type::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
66 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
67 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/set/
types.pass.cpp 28 // typedef typename allocator_type::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
66 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
67 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.map/
types.pass.cpp 29 // typedef typename allocator_traits<allocator_type>::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
68 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
69 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multimap/
types.pass.cpp 29 // typedef typename allocator_traits<allocator_type>::difference_type difference_type;
51 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
68 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
69 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multiset/
types.pass.cpp 28 // typedef typename allocator_traits<allocator_type>::difference_type difference_type;
49 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
65 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
66 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.set/
types.pass.cpp 28 // typedef typename allocator_traits<allocator_type>::difference_type difference_type;
49 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
65 static_assert((std::is_same<C::size_type, std::make_unsigned<C::difference_type>::type>::value), "");
66 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/iterators/predef.iterators/move.iterators/move.iterator/
types.pass.cpp 20 // typedef Iter::difference_type difference_type;
36 typedef std::ptrdiff_t difference_type; typedef in struct:DummyIt
48 static_assert((std::is_same<typename R::difference_type, typename T::difference_type>::value), "");
  /external/libcxx/test/std/containers/sequences/vector/
contiguous.pass.cpp 24 assert ( *(c.begin() + static_cast<typename C::difference_type>(i)) == *(std::addressof(*c.begin()) + i));
types.pass.cpp 25 // typedef typename allocator_type::difference_type difference_type;
55 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "");
61 static_assert((std::is_signed<typename C::difference_type>::value), "");
63 // static_assert((std::is_same<typename C::difference_type,
64 // typename std::iterator_traits<typename C::iterator>::difference_type>::value), "");
65 // static_assert((std::is_same<typename C::difference_type,
66 // typename std::iterator_traits<typename C::const_iterator>::difference_type>::value), "");
100 static_assert((std::is_signed<typename C::difference_type>::value), "")
    [all...]
  /external/libcxx/test/std/iterators/iterator.primitives/iterator.operations/
advance.pass.cpp 13 // void advance(Iter& i, Iter::difference_type n);
16 // void advance(Iter& i, Iter::difference_type n);
19 // void advance(Iter& i, Iter::difference_type n);
28 test(It i, typename std::iterator_traits<It>::difference_type n, It x)
next.pass.cpp 13 // Iter next(Iter x, Iter::difference_type n = 1);
24 test(It i, typename std::iterator_traits<It>::difference_type n, It x)

Completed in 605 milliseconds

1 2 3 4 5 6 7 891011>>