HomeSort by relevance Sort by last modified time
    Searched full:_ret (Results 51 - 75 of 303) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_function_adaptors.h 498 template <class _Ret, class _Tp>
499 class mem_fun_t : public unary_function<_Tp*,_Ret> {
500 typedef _Ret (_Tp::*__fun_type)(void);
503 _Ret operator()(_Tp* __p) const { return (__p->*_M_f)(); }
508 template <class _Ret, class _Tp>
509 class const_mem_fun_t : public unary_function<const _Tp*,_Ret> {
510 typedef _Ret (_Tp::*__fun_type)(void) const;
513 _Ret operator()(const _Tp* __p) const { return (__p->*_M_f)(); }
518 template <class _Ret, class _Tp>
519 class mem_fun_ref_t : public unary_function<_Tp,_Ret> {
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_function_adaptors.h 498 template <class _Ret, class _Tp>
499 class mem_fun_t : public unary_function<_Tp*,_Ret> {
500 typedef _Ret (_Tp::*__fun_type)(void);
503 _Ret operator()(_Tp* __p) const { return (__p->*_M_f)(); }
508 template <class _Ret, class _Tp>
509 class const_mem_fun_t : public unary_function<const _Tp*,_Ret> {
510 typedef _Ret (_Tp::*__fun_type)(void) const;
513 _Ret operator()(const _Tp* __p) const { return (__p->*_M_f)(); }
518 template <class _Ret, class _Tp>
519 class mem_fun_ref_t : public unary_function<_Tp,_Ret> {
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_function_adaptors.h 498 template <class _Ret, class _Tp>
499 class mem_fun_t : public unary_function<_Tp*,_Ret> {
500 typedef _Ret (_Tp::*__fun_type)(void);
503 _Ret operator()(_Tp* __p) const { return (__p->*_M_f)(); }
508 template <class _Ret, class _Tp>
509 class const_mem_fun_t : public unary_function<const _Tp*,_Ret> {
510 typedef _Ret (_Tp::*__fun_type)(void) const;
513 _Ret operator()(const _Tp* __p) const { return (__p->*_M_f)(); }
518 template <class _Ret, class _Tp>
519 class mem_fun_ref_t : public unary_function<_Tp,_Ret> {
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_function_adaptors.h 498 template <class _Ret, class _Tp>
499 class mem_fun_t : public unary_function<_Tp*,_Ret> {
500 typedef _Ret (_Tp::*__fun_type)(void);
503 _Ret operator()(_Tp* __p) const { return (__p->*_M_f)(); }
508 template <class _Ret, class _Tp>
509 class const_mem_fun_t : public unary_function<const _Tp*,_Ret> {
510 typedef _Ret (_Tp::*__fun_type)(void) const;
513 _Ret operator()(const _Tp* __p) const { return (__p->*_M_f)(); }
518 template <class _Ret, class _Tp>
519 class mem_fun_ref_t : public unary_function<_Tp,_Ret> {
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_function_adaptors.h 498 template <class _Ret, class _Tp>
499 class mem_fun_t : public unary_function<_Tp*,_Ret> {
500 typedef _Ret (_Tp::*__fun_type)(void);
503 _Ret operator()(_Tp* __p) const { return (__p->*_M_f)(); }
508 template <class _Ret, class _Tp>
509 class const_mem_fun_t : public unary_function<const _Tp*,_Ret> {
510 typedef _Ret (_Tp::*__fun_type)(void) const;
513 _Ret operator()(const _Tp* __p) const { return (__p->*_M_f)(); }
518 template <class _Ret, class _Tp>
519 class mem_fun_ref_t : public unary_function<_Tp,_Ret> {
    [all...]
  /external/stlport/stlport/stl/pointers/
_tools.h 98 _Tp*>::_Ret _QualifiedType;
109 const _Tp*>::_Ret _QualifiedType;
112 const _Tp*>::_Ret _Type;
122 volatile _Tp*>::_Ret _QualifiedType;
125 volatile _Tp*>::_Ret _Type;
135 const volatile _Tp*>::_Ret _QualifiedType;
138 const volatile _Tp*>::_Ret _Type;
163 const volatile void*>::_Ret >::_Ret >::_Ret >::_Ret _QualifiedType
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 98 _Tp*>::_Ret _QualifiedType;
109 const _Tp*>::_Ret _QualifiedType;
112 const _Tp*>::_Ret _Type;
122 volatile _Tp*>::_Ret _QualifiedType;
125 volatile _Tp*>::_Ret _Type;
135 const volatile _Tp*>::_Ret _QualifiedType;
138 const volatile _Tp*>::_Ret _Type;
163 const volatile void*>::_Ret >::_Ret >::_Ret >::_Ret _QualifiedType
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/
functional 403 template <class _Ret, class _Tp, class _Arg>
404 inline mem_fun1_t<_Ret, _Tp, _Arg>
405 mem_fun1(_Ret (_Tp::*__f)(_Arg))
406 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
408 template <class _Ret, class _Tp, class _Arg>
409 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
410 mem_fun1(_Ret (_Tp::*__f)(_Arg) const)
411 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
413 template <class _Ret, class _Tp, class _Arg>
414 inline mem_fun1_ref_t<_Ret, _Tp, _Arg
    [all...]
string_conversions.h 47 template<typename _TRet, typename _Ret = _TRet, typename _CharT,
49 _Ret
54 _Ret __ret;
63 || (std::__are_same<_Ret, int>::__value
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
functional 406 template <class _Ret, class _Tp, class _Arg>
407 inline mem_fun1_t<_Ret, _Tp, _Arg>
408 mem_fun1(_Ret (_Tp::*__f)(_Arg))
409 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
411 template <class _Ret, class _Tp, class _Arg>
412 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
413 mem_fun1(_Ret (_Tp::*__f)(_Arg) const)
414 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
416 template <class _Ret, class _Tp, class _Arg>
417 inline mem_fun1_ref_t<_Ret, _Tp, _Arg
    [all...]
string_conversions.h 51 template<typename _TRet, typename _Ret = _TRet, typename _CharT,
53 _Ret
58 _Ret __ret;
67 || (std::__are_same<_Ret, int>::__value
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
functional 406 template <class _Ret, class _Tp, class _Arg>
407 inline mem_fun1_t<_Ret, _Tp, _Arg>
408 mem_fun1(_Ret (_Tp::*__f)(_Arg))
409 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
411 template <class _Ret, class _Tp, class _Arg>
412 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
413 mem_fun1(_Ret (_Tp::*__f)(_Arg) const)
414 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
416 template <class _Ret, class _Tp, class _Arg>
417 inline mem_fun1_ref_t<_Ret, _Tp, _Arg
    [all...]
string_conversions.h 51 template<typename _TRet, typename _Ret = _TRet, typename _CharT,
53 _Ret
58 _Ret __ret;
67 || (std::__are_same<_Ret, int>::__value
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
functional 402 template <class _Ret, class _Tp, class _Arg>
403 inline mem_fun1_t<_Ret, _Tp, _Arg>
404 mem_fun1(_Ret (_Tp::*__f)(_Arg))
405 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
407 template <class _Ret, class _Tp, class _Arg>
408 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
409 mem_fun1(_Ret (_Tp::*__f)(_Arg) const)
410 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
412 template <class _Ret, class _Tp, class _Arg>
413 inline mem_fun1_ref_t<_Ret, _Tp, _Arg
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 98 _Tp*>::_Ret _QualifiedType;
109 const _Tp*>::_Ret _QualifiedType;
112 const _Tp*>::_Ret _Type;
122 volatile _Tp*>::_Ret _QualifiedType;
125 volatile _Tp*>::_Ret _Type;
135 const volatile _Tp*>::_Ret _QualifiedType;
138 const volatile _Tp*>::_Ret _Type;
163 const volatile void*>::_Ret >::_Ret >::_Ret >::_Ret _QualifiedType
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
functional 402 template <class _Ret, class _Tp, class _Arg>
403 inline mem_fun1_t<_Ret, _Tp, _Arg>
404 mem_fun1(_Ret (_Tp::*__f)(_Arg))
405 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
407 template <class _Ret, class _Tp, class _Arg>
408 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
409 mem_fun1(_Ret (_Tp::*__f)(_Arg) const)
410 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
412 template <class _Ret, class _Tp, class _Arg>
413 inline mem_fun1_ref_t<_Ret, _Tp, _Arg
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 98 _Tp*>::_Ret _QualifiedType;
109 const _Tp*>::_Ret _QualifiedType;
112 const _Tp*>::_Ret _Type;
122 volatile _Tp*>::_Ret _QualifiedType;
125 volatile _Tp*>::_Ret _Type;
135 const volatile _Tp*>::_Ret _QualifiedType;
138 const volatile _Tp*>::_Ret _Type;
163 const volatile void*>::_Ret >::_Ret >::_Ret >::_Ret _QualifiedType
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
functional 402 template <class _Ret, class _Tp, class _Arg>
403 inline mem_fun1_t<_Ret, _Tp, _Arg>
404 mem_fun1(_Ret (_Tp::*__f)(_Arg))
405 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
407 template <class _Ret, class _Tp, class _Arg>
408 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
409 mem_fun1(_Ret (_Tp::*__f)(_Arg) const)
410 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
412 template <class _Ret, class _Tp, class _Arg>
413 inline mem_fun1_ref_t<_Ret, _Tp, _Arg
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 98 _Tp*>::_Ret _QualifiedType;
109 const _Tp*>::_Ret _QualifiedType;
112 const _Tp*>::_Ret _Type;
122 volatile _Tp*>::_Ret _QualifiedType;
125 volatile _Tp*>::_Ret _Type;
135 const volatile _Tp*>::_Ret _QualifiedType;
138 const volatile _Tp*>::_Ret _Type;
163 const volatile void*>::_Ret >::_Ret >::_Ret >::_Ret _QualifiedType
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
functional 402 template <class _Ret, class _Tp, class _Arg>
403 inline mem_fun1_t<_Ret, _Tp, _Arg>
404 mem_fun1(_Ret (_Tp::*__f)(_Arg))
405 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
407 template <class _Ret, class _Tp, class _Arg>
408 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
409 mem_fun1(_Ret (_Tp::*__f)(_Arg) const)
410 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
412 template <class _Ret, class _Tp, class _Arg>
413 inline mem_fun1_ref_t<_Ret, _Tp, _Arg
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
functional 403 template <class _Ret, class _Tp, class _Arg>
404 inline mem_fun1_t<_Ret, _Tp, _Arg>
405 mem_fun1(_Ret (_Tp::*__f)(_Arg))
406 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
408 template <class _Ret, class _Tp, class _Arg>
409 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
410 mem_fun1(_Ret (_Tp::*__f)(_Arg) const)
411 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
413 template <class _Ret, class _Tp, class _Arg>
414 inline mem_fun1_ref_t<_Ret, _Tp, _Arg
    [all...]
string_conversions.h 47 template<typename _TRet, typename _Ret = _TRet, typename _CharT,
49 _Ret
54 _Ret __ret;
63 || (std::__are_same<_Ret, int>::__value
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
functional 421 template <class _Ret, class _Tp, class _Arg>
422 inline mem_fun1_t<_Ret, _Tp, _Arg>
423 mem_fun1(_Ret (_Tp::*__f)(_Arg))
424 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
426 template <class _Ret, class _Tp, class _Arg>
427 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
428 mem_fun1(_Ret (_Tp::*__f)(_Arg) const)
429 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
431 template <class _Ret, class _Tp, class _Arg>
432 inline mem_fun1_ref_t<_Ret, _Tp, _Arg
    [all...]
string_conversions.h 47 template<typename _TRet, typename _Ret = _TRet, typename _CharT,
49 _Ret
54 _Ret __ret;
63 || (std::__are_same<_Ret, int>::__value
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 98 _Tp*>::_Ret _QualifiedType;
109 const _Tp*>::_Ret _QualifiedType;
112 const _Tp*>::_Ret _Type;
122 volatile _Tp*>::_Ret _QualifiedType;
125 volatile _Tp*>::_Ret _Type;
135 const volatile _Tp*>::_Ret _QualifiedType;
138 const volatile _Tp*>::_Ret _Type;
163 const volatile void*>::_Ret >::_Ret >::_Ret >::_Ret _QualifiedType
    [all...]

Completed in 573 milliseconds

1 23 4 5 6 7 8 91011>>