HomeSort by relevance Sort by last modified time
    Searched refs:__N (Results 76 - 83 of 83) sorted by null

1 2 34

  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_list.h 519 list(size_type __n, const value_type& __value = value_type(),
522 { _M_fill_initialize(__n, __value); }
641 assign(size_type __n, const value_type& __val)
642 { _M_fill_assign(__n, __val); }
1027 insert(iterator __position, size_type __n, const value_type& __x)
1029 list __tmp(__n, __x, _M_get_Node_allocator());
1425 _Node* __n = static_cast<_Node*>(__position._M_node); local
    [all...]
stl_deque.h 176 operator+=(difference_type __n)
178 const difference_type __offset = __n + (_M_cur - _M_first);
180 _M_cur += __n;
195 operator+(difference_type __n) const
198 return __tmp += __n;
202 operator-=(difference_type __n)
203 { return *this += -__n; }
206 operator-(difference_type __n) const
209 return __tmp -= __n;
213 operator[](difference_type __n) cons
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_list.h 519 list(size_type __n, const value_type& __value = value_type(),
522 { _M_fill_initialize(__n, __value); }
641 assign(size_type __n, const value_type& __val)
642 { _M_fill_assign(__n, __val); }
1027 insert(iterator __position, size_type __n, const value_type& __x)
1029 list __tmp(__n, __x, _M_get_Node_allocator());
1425 _Node* __n = static_cast<_Node*>(__position._M_node); local
    [all...]
stl_deque.h 176 operator+=(difference_type __n)
178 const difference_type __offset = __n + (_M_cur - _M_first);
180 _M_cur += __n;
195 operator+(difference_type __n) const
198 return __tmp += __n;
202 operator-=(difference_type __n)
203 { return *this += -__n; }
206 operator-(difference_type __n) const
209 return __tmp -= __n;
213 operator[](difference_type __n) cons
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_deque.h 176 operator+=(difference_type __n)
178 const difference_type __offset = __n + (_M_cur - _M_first);
180 _M_cur += __n;
195 operator+(difference_type __n) const
198 return __tmp += __n;
202 operator-=(difference_type __n)
203 { return *this += -__n; }
206 operator-(difference_type __n) const
209 return __tmp -= __n;
213 operator[](difference_type __n) cons
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
ropeimpl.h 257 _M_incr(size_t __n)
259 _M_current_pos += __n;
263 if (__chars_left > __n)
264 _M_buf_ptr += __n;
265 else if (__chars_left == __n)
267 _M_buf_ptr += __n;
278 _M_decr(size_t __n)
283 if (__chars_left >= __n)
284 _M_buf_ptr -= __n;
288 _M_current_pos -= __n;
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
ropeimpl.h 257 _M_incr(size_t __n)
259 _M_current_pos += __n;
263 if (__chars_left > __n)
264 _M_buf_ptr += __n;
265 else if (__chars_left == __n)
267 _M_buf_ptr += __n;
278 _M_decr(size_t __n)
283 if (__chars_left >= __n)
284 _M_buf_ptr -= __n;
288 _M_current_pos -= __n;
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
ropeimpl.h 257 _M_incr(size_t __n)
259 _M_current_pos += __n;
263 if (__chars_left > __n)
264 _M_buf_ptr += __n;
265 else if (__chars_left == __n)
267 _M_buf_ptr += __n;
278 _M_decr(size_t __n)
283 if (__chars_left >= __n)
284 _M_buf_ptr -= __n;
288 _M_current_pos -= __n;
    [all...]

Completed in 656 milliseconds

1 2 34