HomeSort by relevance Sort by last modified time
    Searched defs:__tmp (Results 201 - 225 of 254) sorted by null

1 2 3 4 5 6 7 891011

  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_tree.h 181 _Self __tmp = *this; local
183 return __tmp;
191 _Self __tmp = *this; local
193 return __tmp;
316 _Link_type __tmp = this->_M_header.allocate(1); local
318 _Copy_Construct(&__tmp->_M_value_field, __x);
320 _STLP_UNWIND(this->_M_header.deallocate(__tmp,1))
321 _S_left(__tmp) = 0;
322 _S_right(__tmp) = 0;
323 return __tmp;
327 _Base_ptr __tmp = _M_create_node(_S_value(__x)); local
    [all...]
_vector.h 328 iterator __tmp = _M_allocate_and_copy(__n, __first, __last); local
330 _M_set(__tmp, __tmp + __len, __tmp + __n);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/backward/
hashtable.h 654 iterator __tmp = *this; local
656 return __tmp;
682 const_iterator __tmp = *this; local
684 return __tmp;
753 _Node* __tmp = _M_new_node(__obj);
754 __tmp->_M_next = __first;
755 _M_buckets[__n] = __tmp;
757 return pair<iterator, bool>(iterator(__tmp, this), true);
771 _Node* __tmp = _M_new_node(__obj); local
772 __tmp->_M_next = __cur->_M_next
778 _Node* __tmp = _M_new_node(__obj); local
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
forward_list.h 144 _Self __tmp(*this);
146 return __tmp;
215 _Self __tmp(*this);
217 return __tmp;
877 forward_list __tmp(__n, __val, this->get_allocator());
878 this->splice_after(__pos, std::move(__tmp));
899 forward_list __tmp(__first, __last, this->get_allocator());
900 this->splice_after(__pos, std::move(__tmp));
919 forward_list __tmp(__il, this->get_allocator());
920 this->splice_after(__pos, std::move(__tmp));
942 _Node_base* __tmp = __const_pointer_cast<_Node_base*>(__pos._M_node); local
971 _Node_base* __tmp = __const_pointer_cast<_Node_base*>(__pos._M_node); local
1175 _Node* __tmp = __static_pointer_cast<_Node*>(&this->_M_impl._M_head); local
1189 _Node* __tmp = __static_pointer_cast<_Node*>(&this->_M_impl._M_head); local
    [all...]
shared_ptr.h 338 _Sp_counted_base<_Lp>* __tmp = __r._M_pi; local
339 if (__tmp != _M_pi)
341 if (__tmp != 0)
342 __tmp->_M_add_ref_copy();
345 _M_pi = __tmp;
353 _Sp_counted_base<_Lp>* __tmp = __r._M_pi; local
355 _M_pi = __tmp;
441 _Sp_counted_base<_Lp>* __tmp = __r._M_pi; local
442 if (__tmp != 0)
443 __tmp->_M_weak_add_ref()
453 _Sp_counted_base<_Lp>* __tmp = __r._M_pi; local
465 _Sp_counted_base<_Lp>* __tmp = __r._M_pi; local
709 _Tp1* __tmp = __r.get(); local
725 _Tp1* __tmp = __r.get(); local
    [all...]
stl_bvector.h 210 iterator __tmp = *this; local
212 return __tmp;
225 iterator __tmp = *this; local
227 return __tmp;
247 iterator __tmp = *this; local
248 return __tmp += __i;
254 iterator __tmp = *this; local
255 return __tmp -= __i;
296 const_iterator __tmp = *this; local
298 return __tmp;
311 const_iterator __tmp = *this; local
333 const_iterator __tmp = *this; local
340 const_iterator __tmp = *this; local
767 bool __tmp = __x; local
    [all...]
stl_list.h 150 _Self __tmp = *this; local
152 return __tmp;
165 _Self __tmp = *this; local
167 return __tmp;
230 _Self __tmp = *this; local
232 return __tmp;
245 _Self __tmp = *this; local
247 return __tmp;
849 iterator __tmp = end(); local
850 --__tmp;
861 const_iterator __tmp = end(); local
1407 _Node* __tmp = _M_create_node(__x); local
1415 _Node* __tmp = _M_create_node(std::forward<_Args>(__args)...); local
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_bitset.h 640 size_t __tmp = _Nb; local
641 const size_t __Nbits = (min) (__tmp, (min) (__n, __s.size() - __pos));
763 string __tmp;
764 __tmp.reserve(_Nb);
783 __tmp.push_back(__c);
791 if (__tmp.empty())
794 __x._M_copy_from_string(__tmp, __STATIC_CAST(size_t,0), _Nb);
803 string __tmp;
804 __x._M_copy_to_string(__tmp);
805 return __os << __tmp;
    [all...]
_hashtable.h 139 _Self __tmp = *this; local
141 return __tmp;
_list.h 127 _Self __tmp = *this; local
129 return __tmp;
136 _Self __tmp = *this; local
138 return __tmp;
425 _Node_base* __tmp = _M_create_node(__x); local
428 __tmp->_M_next = __n;
429 __tmp->_M_prev = __p;
430 __p->_M_next = __tmp;
431 __n->_M_prev = __tmp;
432 return iterator(__tmp);
545 iterator __tmp = end(); local
653 _Node_base* __tmp = __p; local
    [all...]
_slist.h 111 _Self __tmp = *this; local
113 return __tmp;
557 _Self __tmp(__first, __last, this->get_allocator());
558 splice_after(iterator(__pos), __tmp); local
594 _Self __tmp(__first, __last, this->get_allocator());
595 splice(iterator(__pos), __tmp); local
_tree.h 181 _Self __tmp = *this; local
183 return __tmp;
191 _Self __tmp = *this; local
193 return __tmp;
316 _Link_type __tmp = this->_M_header.allocate(1); local
318 _Copy_Construct(&__tmp->_M_value_field, __x);
320 _STLP_UNWIND(this->_M_header.deallocate(__tmp,1))
321 _S_left(__tmp) = 0;
322 _S_right(__tmp) = 0;
323 return __tmp;
327 _Base_ptr __tmp = _M_create_node(_S_value(__x)); local
    [all...]
_vector.h 328 iterator __tmp = _M_allocate_and_copy(__n, __first, __last); local
330 _M_set(__tmp, __tmp + __len, __tmp + __n);
  /external/stlport/stlport/stl/
_algo.c 464 _Tp __tmp = *__first; local
491 *__p = __tmp;
    [all...]
_bvector.h 86 bool __tmp = (bool)__x; local
88 __y = __tmp;
195 _Self __tmp = *this; local
197 return __tmp;
204 _Self __tmp = *this; local
206 return __tmp;
217 _Self __tmp = *this; local
218 return __tmp += __i;
221 _Self __tmp = *this; local
222 return __tmp -= __i
    [all...]
_deque.h 196 _Self __tmp = *this; local
198 return __tmp;
203 _Self __tmp = *this; local
205 return __tmp;
210 _Self __tmp = *this; local
211 return __tmp += __n;
216 _Self __tmp = *this; local
217 return __tmp -= __n;
460 iterator __tmp = this->_M_finish; local
461 --__tmp;
466 const_iterator __tmp = this->_M_finish; local
743 iterator __tmp = this->_M_finish; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algo.c 464 _Tp __tmp = *__first; local
491 *__p = __tmp;
    [all...]
_bvector.h 86 bool __tmp = (bool)__x; local
88 __y = __tmp;
195 _Self __tmp = *this; local
197 return __tmp;
204 _Self __tmp = *this; local
206 return __tmp;
217 _Self __tmp = *this; local
218 return __tmp += __i;
221 _Self __tmp = *this; local
222 return __tmp -= __i
    [all...]
_deque.h 196 _Self __tmp = *this; local
198 return __tmp;
203 _Self __tmp = *this; local
205 return __tmp;
210 _Self __tmp = *this; local
211 return __tmp += __n;
216 _Self __tmp = *this; local
217 return __tmp -= __n;
460 iterator __tmp = this->_M_finish; local
461 --__tmp;
466 const_iterator __tmp = this->_M_finish; local
743 iterator __tmp = this->_M_finish; local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
locale_facets.h 1881 __c_locale __tmp; local
    [all...]
stl_algo.h 1650 _ValueType __tmp = _GLIBCXX_MOVE(*__first); local
    [all...]
stl_deque.h 150 _Self __tmp = *this; local
152 return __tmp;
170 _Self __tmp = *this; local
172 return __tmp;
197 _Self __tmp = *this; local
198 return __tmp += __n;
208 _Self __tmp = *this; local
209 return __tmp -= __n;
1142 iterator __tmp = end(); local
1154 const_iterator __tmp = end(); local
    [all...]
stl_tree.h 191 _Self __tmp = *this; local
193 return __tmp;
206 _Self __tmp = *this; local
208 return __tmp;
266 _Self __tmp = *this; local
268 return __tmp;
281 _Self __tmp = *this; local
283 return __tmp;
369 _Link_type __tmp = _M_get_node(); local
371 { get_allocator().construct(&__tmp->_M_value_field, __x);
391 _Link_type __tmp = _M_get_node(); local
416 _Link_type __tmp = _M_create_node(__x->_M_value_field); local
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
locale_facets.h 1881 __c_locale __tmp; local
    [all...]
stl_algo.h 1650 _ValueType __tmp = _GLIBCXX_MOVE(*__first); local
    [all...]

Completed in 937 milliseconds

1 2 3 4 5 6 7 891011