HomeSort by relevance Sort by last modified time
    Searched full:_iter (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXPolicyNode.java 137 Iterator _iter = expectedPolicies.iterator(); local
138 while (_iter.hasNext())
140 _expectedPolicies.add(new String((String)_iter.next()));
144 _iter = policyQualifiers.iterator();
145 while (_iter.hasNext())
147 _policyQualifiers.add(new String((String)_iter.next()));
158 _iter = children.iterator();
159 while (_iter.hasNext())
161 PKIXPolicyNode _child = ((PKIXPolicyNode)_iter.next()).copy();
  /external/libcxx/include/
iterator 377 template <class _Iter, bool> struct __iterator_traits_impl {};
379 template <class _Iter>
380 struct __iterator_traits_impl<_Iter, true>
382 typedef typename _Iter::difference_type difference_type;
383 typedef typename _Iter::value_type value_type;
384 typedef typename _Iter::pointer pointer;
385 typedef typename _Iter::reference reference;
386 typedef typename _Iter::iterator_category iterator_category;
389 template <class _Iter, bool> struct __iterator_traits {};
391 template <class _Iter>
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
iterator 370 template <class _Iter, bool> struct __iterator_traits_impl {};
372 template <class _Iter>
373 struct __iterator_traits_impl<_Iter, true>
375 typedef typename _Iter::difference_type difference_type;
376 typedef typename _Iter::value_type value_type;
377 typedef typename _Iter::pointer pointer;
378 typedef typename _Iter::reference reference;
379 typedef typename _Iter::iterator_category iterator_category;
382 template <class _Iter, bool> struct __iterator_traits {};
384 template <class _Iter>
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
iterator 370 template <class _Iter, bool> struct __iterator_traits_impl {};
372 template <class _Iter>
373 struct __iterator_traits_impl<_Iter, true>
375 typedef typename _Iter::difference_type difference_type;
376 typedef typename _Iter::value_type value_type;
377 typedef typename _Iter::pointer pointer;
378 typedef typename _Iter::reference reference;
379 typedef typename _Iter::iterator_category iterator_category;
382 template <class _Iter, bool> struct __iterator_traits {};
384 template <class _Iter>
    [all...]
  /system/core/include/sysutils/
List.h 89 typedef _ListIterator<U, Constness> _Iter;
97 _ListIterator(const _Iter& rhs) : mpNode(rhs.mpNode) {}
117 inline bool operator==(const _Iter& right) const {
120 inline bool operator!=(const _Iter& right) const {
137 inline _Iter& operator++() { // pre-increment
141 const _Iter operator++(int) { // post-increment
142 _Iter tmp(*this);
146 inline _Iter& operator--() { // pre-increment
150 const _Iter operator--(int) { // post-increment
151 _Iter tmp(*this)
    [all...]
  /system/core/include/utils/
List.h 88 typedef _ListIterator<U, Constness> _Iter;
96 _ListIterator(const _Iter& rhs) : mpNode(rhs.mpNode) {}
116 inline bool operator==(const _Iter& right) const {
119 inline bool operator!=(const _Iter& right) const {
136 inline _Iter& operator++() { // pre-increment
140 const _Iter operator++(int) { // post-increment
141 _Iter tmp(*this);
145 inline _Iter& operator--() { // pre-increment
149 const _Iter operator--(int) { // post-increment
150 _Iter tmp(*this)
    [all...]
  /system/keymaster/
List.h 88 typedef _ListIterator<U, Constness> _Iter;
96 _ListIterator(const _Iter& rhs) : mpNode(rhs.mpNode) {}
116 inline bool operator==(const _Iter& right) const {
119 inline bool operator!=(const _Iter& right) const {
136 inline _Iter& operator++() { // pre-increment
140 const _Iter operator++(int) { // post-increment
141 _Iter tmp(*this);
145 inline _Iter& operator--() { // pre-increment
149 const _Iter operator--(int) { // post-increment
150 _Iter tmp(*this)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_iterator_base.h 214 template <class _Iter>
215 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_STD::iterator_traits<_Iter>::iterator_category
216 __iterator_category(const _Iter&, const __false_type&) {
217 typedef _STLP_TYPENAME _STLP_STD::iterator_traits<_Iter>::iterator_category _Category;
226 template <class _Iter>
227 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_STD::iterator_traits<_Iter>::difference_type*
228 __distance_type(const _Iter&, const __false_type&) {
229 typedef _STLP_TYPENAME _STLP_STD::iterator_traits<_Iter>::difference_type _diff_type;
238 template <class _Iter>
239 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_STD::iterator_traits<_Iter>::value_type
    [all...]
concept_checks.h 497 template <class _Iter>
499 typedef typename __STD::iterator_traits<_Iter>::value_type value_type;
502 template <class _Iter>
504 typedef typename __STD::iterator_traits<_Iter>::difference_type
508 template <class _Iter>
510 typedef typename __STD::iterator_traits<_Iter>::reference reference;
513 template <class _Iter>
515 typedef typename __STD::iterator_traits<_Iter>::pointer pointer;
518 template <class _Iter>
520 typedef typename __STD::iterator_traits<_Iter>::iterator_categor
    [all...]
_iterator.h 68 template <class _Iter>
69 reverse_iterator(const reverse_iterator<_Iter>& __x) : current(__x.base()) {}
70 template <class _Iter>
71 _Self& operator = (const reverse_iterator<_Iter>& __x) { current = __x.base(); return *this; }
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_iterator_base.h 214 template <class _Iter>
215 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_STD::iterator_traits<_Iter>::iterator_category
216 __iterator_category(const _Iter&, const __false_type&) {
217 typedef _STLP_TYPENAME _STLP_STD::iterator_traits<_Iter>::iterator_category _Category;
226 template <class _Iter>
227 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_STD::iterator_traits<_Iter>::difference_type*
228 __distance_type(const _Iter&, const __false_type&) {
229 typedef _STLP_TYPENAME _STLP_STD::iterator_traits<_Iter>::difference_type _diff_type;
238 template <class _Iter>
239 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_STD::iterator_traits<_Iter>::value_type
    [all...]
concept_checks.h 497 template <class _Iter>
499 typedef typename __STD::iterator_traits<_Iter>::value_type value_type;
502 template <class _Iter>
504 typedef typename __STD::iterator_traits<_Iter>::difference_type
508 template <class _Iter>
510 typedef typename __STD::iterator_traits<_Iter>::reference reference;
513 template <class _Iter>
515 typedef typename __STD::iterator_traits<_Iter>::pointer pointer;
518 template <class _Iter>
520 typedef typename __STD::iterator_traits<_Iter>::iterator_categor
    [all...]
_iterator.h 68 template <class _Iter>
69 reverse_iterator(const reverse_iterator<_Iter>& __x) : current(__x.base()) {}
70 template <class _Iter>
71 _Self& operator = (const reverse_iterator<_Iter>& __x) { current = __x.base(); return *this; }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
iomanip 269 typedef istreambuf_iterator<_CharT, _Traits> _Iter;
270 typedef money_get<_CharT, _Iter> _MoneyGet;
273 __mg.get(_Iter(__is.rdbuf()), _Iter(), __f._M_intl,
316 typedef ostreambuf_iterator<_CharT, _Traits> _Iter;
317 typedef money_put<_CharT, _Iter> _MoneyPut;
320 if (__mp.put(_Iter(__os.rdbuf()), __f._M_intl, __os,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
iomanip 269 typedef istreambuf_iterator<_CharT, _Traits> _Iter;
270 typedef money_get<_CharT, _Iter> _MoneyGet;
273 __mg.get(_Iter(__is.rdbuf()), _Iter(), __f._M_intl,
316 typedef ostreambuf_iterator<_CharT, _Traits> _Iter;
317 typedef money_put<_CharT, _Iter> _MoneyPut;
320 if (__mp.put(_Iter(__os.rdbuf()), __f._M_intl, __os,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
iomanip 269 typedef istreambuf_iterator<_CharT, _Traits> _Iter;
270 typedef money_get<_CharT, _Iter> _MoneyGet;
273 __mg.get(_Iter(__is.rdbuf()), _Iter(), __f._M_intl,
316 typedef ostreambuf_iterator<_CharT, _Traits> _Iter;
317 typedef money_put<_CharT, _Iter> _MoneyPut;
320 if (__mp.put(_Iter(__os.rdbuf()), __f._M_intl, __os,
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
key_ranges.py 128 self._iter = iter(self._ns_range)
143 self._last_ns = self._iter.next()
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_iterator_base_types.h 199 template<typename _Iter>
200 inline typename iterator_traits<_Iter>::iterator_category
201 __iterator_category(const _Iter&)
202 { return typename iterator_traits<_Iter>::iterator_category(); }
stl_iterator.h 138 template<typename _Iter>
139 reverse_iterator(const reverse_iterator<_Iter>& __x)
729 template<typename _Iter>
730 __normal_iterator(const __normal_iterator<_Iter,
732 (std::__are_same<_Iter, typename _Container::pointer>::__value),
953 template<typename _Iter>
954 move_iterator(const move_iterator<_Iter>& __i)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_iterator_base_types.h 199 template<typename _Iter>
200 inline typename iterator_traits<_Iter>::iterator_category
201 __iterator_category(const _Iter&)
202 { return typename iterator_traits<_Iter>::iterator_category(); }
stl_iterator.h 138 template<typename _Iter>
139 reverse_iterator(const reverse_iterator<_Iter>& __x)
729 template<typename _Iter>
730 __normal_iterator(const __normal_iterator<_Iter,
732 (std::__are_same<_Iter, typename _Container::pointer>::__value),
953 template<typename _Iter>
954 move_iterator(const move_iterator<_Iter>& __i)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_iterator_base_types.h 199 template<typename _Iter>
200 inline typename iterator_traits<_Iter>::iterator_category
201 __iterator_category(const _Iter&)
202 { return typename iterator_traits<_Iter>::iterator_category(); }
stl_iterator.h 138 template<typename _Iter>
139 reverse_iterator(const reverse_iterator<_Iter>& __x)
729 template<typename _Iter>
730 __normal_iterator(const __normal_iterator<_Iter,
732 (std::__are_same<_Iter, typename _Container::pointer>::__value),
953 template<typename _Iter>
954 move_iterator(const move_iterator<_Iter>& __i)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_iterator_base_types.h 199 template<typename _Iter>
200 inline typename iterator_traits<_Iter>::iterator_category
201 __iterator_category(const _Iter&)
202 { return typename iterator_traits<_Iter>::iterator_category(); }
stl_iterator.h 139 template<typename _Iter>
140 reverse_iterator(const reverse_iterator<_Iter>& __x)
732 template<typename _Iter>
733 __normal_iterator(const __normal_iterator<_Iter,
735 (std::__are_same<_Iter, typename _Container::pointer>::__value),
970 template<typename _Iter>
971 move_iterator(const move_iterator<_Iter>& __i)
    [all...]

Completed in 3408 milliseconds

1 2 3 4