HomeSort by relevance Sort by last modified time
    Searched refs:__b (Results 251 - 275 of 567) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_algobase.h 66 inline void __swap_aux(_Tp& __a, _Tp& __b, const __true_type& /*SwapImplemented*/) {
67 __a._M_swap_workaround(__b);
71 inline void __swap_aux(_Tp& __a, _Tp& __b, const __false_type& /*SwapImplemented*/) {
73 __a = __b;
74 __b = __tmp;
81 inline void swap(_Tp& __a, _Tp& __b) {
89 _STLP_PRIV __swap_aux(__a, __b, _Implemented());
92 __a = __b;
93 __b = __tmp;
139 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b) { return __b < __a ? __b : __a;
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-initializer-scalars.cpp 16 initializer_list(const _E* __b, size_t __s)
17 : __begin_(__b),
  /external/stlport/test/unit/
stack_allocator.h 185 inline void swap(StackAllocator<_Tp>& __a, StackAllocator<_Tp>& __b)
186 { __a.swap(__b); }
191 inline void swap(StackAllocator<int>& __a, StackAllocator<int>& __b)
192 { __a.swap(__b); }
193 inline void swap(StackAllocator<char>& __a, StackAllocator<char>& __b)
194 { __a.swap(__b); }
196 StackAllocator<pair<const int, int> >& __b)
197 { __a.swap(__b); }
  /ndk/tests/device/test-gnustl-full/unit/
stack_allocator.h 185 inline void swap(StackAllocator<_Tp>& __a, StackAllocator<_Tp>& __b)
186 { __a.swap(__b); }
191 inline void swap(StackAllocator<int>& __a, StackAllocator<int>& __b)
192 { __a.swap(__b); }
193 inline void swap(StackAllocator<char>& __a, StackAllocator<char>& __b)
194 { __a.swap(__b); }
196 StackAllocator<pair<const int, int> >& __b)
197 { __a.swap(__b); }
  /ndk/tests/device/test-stlport/unit/
stack_allocator.h 185 inline void swap(StackAllocator<_Tp>& __a, StackAllocator<_Tp>& __b)
186 { __a.swap(__b); }
191 inline void swap(StackAllocator<int>& __a, StackAllocator<int>& __b)
192 { __a.swap(__b); }
193 inline void swap(StackAllocator<char>& __a, StackAllocator<char>& __b)
194 { __a.swap(__b); }
196 StackAllocator<pair<const int, int> >& __b)
197 { __a.swap(__b); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
shared_ptr.h 328 operator==(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b)
329 { return __a.get() == __b.get(); }
338 operator==(nullptr_t, const shared_ptr<_Tp>& __b)
339 { return nullptr == __b.get(); }
343 operator!=(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b)
344 { return __a.get() != __b.get(); }
353 operator!=(nullptr_t, const shared_ptr<_Tp>& __b)
354 { return nullptr != __b.get(); }
358 operator<(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b)
359 { return __a.get() < __b.get();
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
shared_ptr.h 328 operator==(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b)
329 { return __a.get() == __b.get(); }
338 operator==(nullptr_t, const shared_ptr<_Tp>& __b)
339 { return nullptr == __b.get(); }
343 operator!=(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b)
344 { return __a.get() != __b.get(); }
353 operator!=(nullptr_t, const shared_ptr<_Tp>& __b)
354 { return nullptr != __b.get(); }
358 operator<(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b)
359 { return __a.get() < __b.get();
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
shared_ptr.h 328 operator==(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b)
329 { return __a.get() == __b.get(); }
338 operator==(nullptr_t, const shared_ptr<_Tp>& __b)
339 { return nullptr == __b.get(); }
343 operator!=(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b)
344 { return __a.get() != __b.get(); }
353 operator!=(nullptr_t, const shared_ptr<_Tp>& __b)
354 { return nullptr != __b.get(); }
358 operator<(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b)
359 { return __a.get() < __b.get();
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
throw_allocator.h 375 operator<<(std::ostream& os, const annotate_base& __b)
380 base_type::const_iterator beg = __b.map_alloc().begin();
381 base_type::const_iterator end = __b.map_alloc().end();
383 __b.log_to_string(error, *beg);
387 auto beg = __b.map_construct().begin();
388 auto end = __b.map_construct().end();
390 __b.log_to_string(error, *beg);
652 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
657 __a = __b;
658 __b = orig
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
shared_ptr.h 380 operator==(const __shared_count& __a, const __shared_count& __b)
381 { return __a._M_pi == __b._M_pi; }
484 operator==(const __weak_count& __a, const __weak_count& __b)
485 { return __a._M_pi == __b._M_pi; }
890 const __shared_ptr<_Tp2, _Lp>& __b)
891 { return __a.get() == __b.get(); }
896 const __shared_ptr<_Tp2, _Lp>& __b)
897 { return __a.get() != __b.get(); }
902 const __shared_ptr<_Tp2, _Lp>& __b)
903 { return __a.get() < __b.get();
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
shared_ptr.h 380 operator==(const __shared_count& __a, const __shared_count& __b)
381 { return __a._M_pi == __b._M_pi; }
484 operator==(const __weak_count& __a, const __weak_count& __b)
485 { return __a._M_pi == __b._M_pi; }
890 const __shared_ptr<_Tp2, _Lp>& __b)
891 { return __a.get() == __b.get(); }
896 const __shared_ptr<_Tp2, _Lp>& __b)
897 { return __a.get() != __b.get(); }
902 const __shared_ptr<_Tp2, _Lp>& __b)
903 { return __a.get() < __b.get();
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
shared_ptr.h 380 operator==(const __shared_count& __a, const __shared_count& __b)
381 { return __a._M_pi == __b._M_pi; }
484 operator==(const __weak_count& __a, const __weak_count& __b)
485 { return __a._M_pi == __b._M_pi; }
890 const __shared_ptr<_Tp2, _Lp>& __b)
891 { return __a.get() == __b.get(); }
896 const __shared_ptr<_Tp2, _Lp>& __b)
897 { return __a.get() != __b.get(); }
902 const __shared_ptr<_Tp2, _Lp>& __b)
903 { return __a.get() < __b.get();
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
utf8.h 402 uint8_t __b=(uint8_t)(s)[(i)++]; \
403 if(U8_IS_LEAD(__b)) { \
404 uint8_t __count=U8_COUNT_TRAIL_BYTES(__b); \
517 uint8_t __b, __count=1, __shift=6; \
522 __b=(uint8_t)(s)[--(i)]; \
523 if(__b>=0xc0) { \
524 U8_MASK_LEAD_BYTE(__b, __count); \
525 (c)|=(UChar32)__b<<__shift; \
528 (c)|=(UChar32)(__b&0x3f)<<__shift; \
  /external/clang/test/Sema/
exprs.c 112 #define MYMAX(A,B) __extension__ ({ __typeof__(A) __a = (A); __typeof__(B) __b = (B); __a < __b ? __b : __a; })
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/
throw_allocator.h 237 operator<<(std::ostream& os, const annotate_base& __b)
241 base_type::const_iterator beg = __b.map().begin();
242 base_type::const_iterator end = __b.map().end();
244 __b.log_to_string(error, *beg);
493 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
498 __a = __b;
499 __b = orig;
506 const throw_value_base<_Cond>& __b)
510 bool __ret = __a._M_i == __b._M_i;
517 const throw_value_base<_Cond>& __b)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
throw_allocator.h 229 operator<<(std::ostream& os, const annotate_base& __b)
233 base_type::const_iterator beg = __b.map().begin();
234 base_type::const_iterator end = __b.map().end();
236 __b.log_to_string(error, *beg);
496 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
501 __a = __b;
502 __b = orig;
509 const throw_value_base<_Cond>& __b)
513 bool __ret = __a._M_i == __b._M_i;
520 const throw_value_base<_Cond>& __b)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
throw_allocator.h 229 operator<<(std::ostream& os, const annotate_base& __b)
233 base_type::const_iterator beg = __b.map().begin();
234 base_type::const_iterator end = __b.map().end();
236 __b.log_to_string(error, *beg);
496 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
501 __a = __b;
502 __b = orig;
509 const throw_value_base<_Cond>& __b)
513 bool __ret = __a._M_i == __b._M_i;
520 const throw_value_base<_Cond>& __b)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
throw_allocator.h 237 operator<<(std::ostream& os, const annotate_base& __b)
241 base_type::const_iterator beg = __b.map().begin();
242 base_type::const_iterator end = __b.map().end();
244 __b.log_to_string(error, *beg);
493 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
498 __a = __b;
499 __b = orig;
506 const throw_value_base<_Cond>& __b)
510 bool __ret = __a._M_i == __b._M_i;
517 const throw_value_base<_Cond>& __b)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
throw_allocator.h 237 operator<<(std::ostream& os, const annotate_base& __b)
241 base_type::const_iterator beg = __b.map().begin();
242 base_type::const_iterator end = __b.map().end();
244 __b.log_to_string(error, *beg);
493 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
498 __a = __b;
499 __b = orig;
506 const throw_value_base<_Cond>& __b)
510 bool __ret = __a._M_i == __b._M_i;
517 const throw_value_base<_Cond>& __b)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
throw_allocator.h 237 operator<<(std::ostream& os, const annotate_base& __b)
241 base_type::const_iterator beg = __b.map().begin();
242 base_type::const_iterator end = __b.map().end();
244 __b.log_to_string(error, *beg);
493 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
498 __a = __b;
499 __b = orig;
506 const throw_value_base<_Cond>& __b)
510 bool __ret = __a._M_i == __b._M_i;
517 const throw_value_base<_Cond>& __b)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
throw_allocator.h 237 operator<<(std::ostream& os, const annotate_base& __b)
241 base_type::const_iterator beg = __b.map().begin();
242 base_type::const_iterator end = __b.map().end();
244 __b.log_to_string(error, *beg);
493 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
498 __a = __b;
499 __b = orig;
506 const throw_value_base<_Cond>& __b)
510 bool __ret = __a._M_i == __b._M_i;
517 const throw_value_base<_Cond>& __b)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
throw_allocator.h 229 operator<<(std::ostream& os, const annotate_base& __b)
233 base_type::const_iterator beg = __b.map().begin();
234 base_type::const_iterator end = __b.map().end();
236 __b.log_to_string(error, *beg);
496 swap(throw_value_base<_Cond>& __a, throw_value_base<_Cond>& __b)
501 __a = __b;
502 __b = orig;
509 const throw_value_base<_Cond>& __b)
513 bool __ret = __a._M_i == __b._M_i;
520 const throw_value_base<_Cond>& __b)
    [all...]
  /bionic/libstdc++/include/
stl_pair.h 71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
  /external/libcxxabi/src/Unwind/
config.h 25 #define static_assert(__b, __m) \
26 extern int compile_time_assert_failed[ ( __b ) ? 1 : -1 ] \
  /ndk/sources/cxx-stl/gabi++/include/
stl_pair.h 79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}

Completed in 1749 milliseconds

<<11121314151617181920>>