HomeSort by relevance Sort by last modified time
    Searched refs:Arg2 (Results 1 - 22 of 22) sorted by null

  /external/chromium/base/
callback_old.h 87 template <typename Arg1, typename Arg2>
88 inline void Run(const Arg1& a, const Arg2& b) {
92 template <typename Arg1, typename Arg2, typename Arg3>
93 inline void Run(const Arg1& a, const Arg2& b, const Arg3& c) {
97 template <typename Arg1, typename Arg2, typename Arg3, typename Arg4>
98 inline void Run(const Arg1& a, const Arg2& b, const Arg3& c, const Arg4& d) {
102 template <typename Arg1, typename Arg2, typename Arg3,
104 inline void Run(const Arg1& a, const Arg2& b, const Arg3& c,
146 template <typename Arg1, typename Arg2>
148 typedef CallbackRunner<Tuple2<Arg1, Arg2> > Type
    [all...]
stl_util-inl.h 294 template <class Result, class Arg1, class Arg2>
295 class STLBinaryFunction : public std::binary_function<Arg1, Arg2, Result> {
297 typedef ResultCallback2<Result, Arg1, Arg2> Callback;
304 Result operator() (Arg1 arg1, Arg2 arg2) {
305 return callback_->Run(arg1, arg2);
  /external/stlport/test/unit/
fadapter.h 62 template <class Arg1, class Arg2>
63 class pointer_to_binary_procedure /* : public unary_function<Arg1, Arg2, __void_tag> */ {
65 typedef void (*fun_type)(Arg1, Arg2);
69 typedef Arg2 second_argument_type;
72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); }
75 template <class Arg1, class Arg2>
76 inline pointer_to_binary_procedure<Arg1, Arg2> ptr_proc(void (*x)(Arg1, Arg2)) {
77 return pointer_to_binary_procedure<Arg1, Arg2>(x);
  /ndk/tests/device/test-gnustl-full/unit/
fadapter.h 62 template <class Arg1, class Arg2>
63 class pointer_to_binary_procedure /* : public unary_function<Arg1, Arg2, __void_tag> */ {
65 typedef void (*fun_type)(Arg1, Arg2);
69 typedef Arg2 second_argument_type;
72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); }
75 template <class Arg1, class Arg2>
76 inline pointer_to_binary_procedure<Arg1, Arg2> ptr_proc(void (*x)(Arg1, Arg2)) {
77 return pointer_to_binary_procedure<Arg1, Arg2>(x);
  /ndk/tests/device/test-stlport/unit/
fadapter.h 62 template <class Arg1, class Arg2>
63 class pointer_to_binary_procedure /* : public unary_function<Arg1, Arg2, __void_tag> */ {
65 typedef void (*fun_type)(Arg1, Arg2);
69 typedef Arg2 second_argument_type;
72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); }
75 template <class Arg1, class Arg2>
76 inline pointer_to_binary_procedure<Arg1, Arg2> ptr_proc(void (*x)(Arg1, Arg2)) {
77 return pointer_to_binary_procedure<Arg1, Arg2>(x);
  /external/chromium/base/memory/
scoped_callback_factory.h 63 template <typename Arg1, typename Arg2>
64 typename Callback2<Arg1, Arg2>::Type* NewCallback(
65 void (T::*method)(Arg1, Arg2)) {
66 return new CallbackImpl<void (T::*)(Arg1, Arg2), Tuple2<Arg1, Arg2> >(
70 template <typename Arg1, typename Arg2, typename Arg3>
71 typename Callback3<Arg1, Arg2, Arg3>::Type* NewCallback(
72 void (T::*method)(Arg1, Arg2, Arg3)) {
73 return new CallbackImpl<void (T::*)(Arg1, Arg2, Arg3),
74 Tuple3<Arg1, Arg2, Arg3> >
    [all...]
  /external/clang/test/SemaTemplate/
deduction.cpp 36 // Replaces all occurrences of _1 with Arg1 and _2 with Arg2 in T.
37 template<typename T, typename Arg1, typename Arg2>
43 template<typename Arg1, typename Arg2>
44 struct Replace<_1, Arg1, Arg2> {
48 template<typename Arg1, typename Arg2>
49 struct Replace<_2, Arg1, Arg2> {
50 typedef Arg2 type;
54 template<typename T, typename Arg1, typename Arg2>
55 struct Replace<const T, Arg1, Arg2> {
56 typedef typename Replace<T, Arg1, Arg2>::type const type
    [all...]
instantiate-c99.cpp 74 template<typename T, typename Arg1, typename Arg2>
76 T f(Arg1 a1, Arg2 a2) {
instantiation-default-1.cpp 82 template<typename R, typename Arg1, typename Arg2 = Arg1,
83 typename FuncType = R (*)(Arg1, Arg2)>
instantiate-expr-4.cpp 89 template<typename T, typename Arg1, typename Arg2>
91 T* f(bool x, Arg1 a1, Arg2 a2) {
  /external/clang/test/Index/
complete-macros.c 4 #define FOO(Arg1,Arg2) foobar
30 // CHECK-CC1: macro definition:{TypedText FOO}{LeftParen (}{Placeholder Arg1}{Comma , }{Placeholder Arg2}{RightParen )}