HomeSort by relevance Sort by last modified time
    Searched refs:Arg1 (Results 1 - 25 of 55) sorted by null

1 2 3

  /ndk/tests/device/test-gnustl-full/unit/
fadapter.h 25 template <class Arg1>
26 struct projectvoid : public unary_function<Arg1,__void_tag> {
27 __void_tag operator()(const Arg1& x) const { return __void_tag(); }
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);
68 typedef Arg1 first_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))
    [all...]
  /ndk/tests/device/test-stlport/unit/
fadapter.h 25 template <class Arg1>
26 struct projectvoid : public unary_function<Arg1,__void_tag> {
27 __void_tag operator()(const Arg1& x) const { return __void_tag(); }
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);
68 typedef Arg1 first_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))
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
bind_handler.hpp 25 template <typename Handler, typename Arg1>
29 binder1(const Handler& handler, const Arg1& arg1)
31 arg1_(arg1)
35 binder1(Handler& handler, const Arg1& arg1)
37 arg1_(arg1)
43 handler_(static_cast<const Arg1&>(arg1_));
53 Arg1 arg1_;
56 template <typename Handler, typename Arg1>
    [all...]
wrapped_handler.hpp 78 template <typename Arg1>
79 void operator()(const Arg1& arg1)
81 dispatcher_.dispatch(detail::bind_handler(handler_, arg1));
84 template <typename Arg1>
85 void operator()(const Arg1& arg1) const
87 dispatcher_.dispatch(detail::bind_handler(handler_, arg1));
90 template <typename Arg1, typename Arg2>
91 void operator()(const Arg1& arg1, const Arg2& arg2
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
handler_type.hpp 74 template <typename ReturnType, typename Arg1, typename Signature>
75 struct handler_type<ReturnType(Arg1), Signature>
76 : handler_type<ReturnType(*)(Arg1), Signature> {};
78 template <typename ReturnType, typename Arg1, typename Arg2, typename Signature>
79 struct handler_type<ReturnType(Arg1, Arg2), Signature>
80 : handler_type<ReturnType(*)(Arg1, Arg2), Signature> {};
82 template <typename ReturnType, typename Arg1, typename Arg2, typename Arg3,
84 struct handler_type<ReturnType(Arg1, Arg2, Arg3), Signature>
85 : handler_type<ReturnType(*)(Arg1, Arg2, Arg3), Signature> {};
87 template <typename ReturnType, typename Arg1, typename Arg2, typename Arg3
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
compare.hpp 41 bool operator()( const T1& Arg1, const T2& Arg2 ) const
43 return Arg1==Arg2;
66 bool operator()( const T1& Arg1, const T2& Arg2 ) const
69 return std::toupper(Arg1)==std::toupper(Arg2);
71 return std::toupper<T1>(Arg1,m_Loc)==std::toupper<T2>(Arg2,m_Loc);
93 bool operator()( const T1& Arg1, const T2& Arg2 ) const
95 return Arg1<Arg2;
119 bool operator()( const T1& Arg1, const T2& Arg2 ) const
122 return std::toupper(Arg1)<std::toupper(Arg2);
124 return std::toupper<T1>(Arg1,m_Loc)<std::toupper<T2>(Arg2,m_Loc)
    [all...]
  /external/libcxx/test/support/
counting_predicates.hpp 30 template <typename Predicate, typename Arg1, typename Arg2=Arg1>
31 struct binary_counting_predicate : public std::binary_function<Arg1, Arg2, bool> {
37 bool operator () (const Arg1 &a1, const Arg2 &a2) const { ++count_; return p_(a1, a2); }
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
callback.h 159 template <typename Arg1>
162 typedef void (*FunctionType)(Arg1 arg1);
165 Arg1 arg1)
167 arg1_(arg1) {}
179 Arg1 arg1_;
182 template <typename Class, typename Arg1>
185 typedef void (Class::*MethodType)(Arg1 arg1);
    [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> {
45 typedef Arg1 type;
48 template<typename Arg1, typename Arg2>
49 struct Replace<_2, Arg1, Arg2> {
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...]
instantiation-default-1.cpp 82 template<typename R, typename Arg1, typename Arg2 = Arg1,
83 typename FuncType = R (*)(Arg1, Arg2)>
instantiate-c99.cpp 74 template<typename T, typename Arg1, typename Arg2>
76 T f(Arg1 a1, Arg2 a2) {
instantiate-expr-1.cpp 115 template<typename Result, typename F, typename Arg1>
116 Result test_call_operator(F f, Arg1 arg1) {
120 return f(arg1);
  /external/protobuf/src/google/protobuf/stubs/
common.h 906 template <typename Arg1>
909 typedef void (*FunctionType)(Arg1 arg1);
912 Arg1 arg1)
914 arg1_(arg1) {}
926 Arg1 arg1_;
929 template <typename Class, typename Arg1>
932 typedef void (Class::*MethodType)(Arg1 arg1);
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 903 template <typename Arg1>
906 typedef void (*FunctionType)(Arg1 arg1);
909 Arg1 arg1)
911 arg1_(arg1) {}
923 Arg1 arg1_;
926 template <typename Class, typename Arg1>
929 typedef void (Class::*MethodType)(Arg1 arg1);
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 903 template <typename Arg1>
906 typedef void (*FunctionType)(Arg1 arg1);
909 Arg1 arg1)
911 arg1_(arg1) {}
923 Arg1 arg1_;
926 template <typename Class, typename Arg1>
929 typedef void (Class::*MethodType)(Arg1 arg1);
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
common.h 903 template <typename Arg1>
906 typedef void (*FunctionType)(Arg1 arg1);
909 Arg1 arg1)
911 arg1_(arg1) {}
923 Arg1 arg1_;
926 template <typename Class, typename Arg1>
929 typedef void (Class::*MethodType)(Arg1 arg1);
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
common.h 903 template <typename Arg1>
906 typedef void (*FunctionType)(Arg1 arg1);
909 Arg1 arg1)
911 arg1_(arg1) {}
923 Arg1 arg1_;
926 template <typename Class, typename Arg1>
929 typedef void (Class::*MethodType)(Arg1 arg1);
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-ms-template-callback.cpp 10 template<typename Ret, typename Arg1>
11 class C<Ret(Arg1)> {};
13 template<typename Ret, typename Arg1, typename Arg2>
14 class C<Ret(Arg1, Arg2)> {};
  /external/clang/test/Index/
complete-macros.c 3 #define FOO(Arg1,Arg2) foobar
  /external/llvm/lib/Fuzzer/
FuzzerTraceState.cpp 115 bool ComputeCmp(size_t CmpType, U Arg1, U Arg2) {
117 case ICMP_EQ : return Arg1 == Arg2;
118 case ICMP_NE : return Arg1 != Arg2;
119 case ICMP_UGT: return Arg1 > Arg2;
120 case ICMP_UGE: return Arg1 >= Arg2;
121 case ICMP_ULT: return Arg1 < Arg2;
122 case ICMP_ULE: return Arg1 <= Arg2;
123 case ICMP_SGT: return (S)Arg1 > (S)Arg2;
124 case ICMP_SGE: return (S)Arg1 >= (S)Arg2;
125 case ICMP_SLT: return (S)Arg1 < (S)Arg2
    [all...]
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 90 unsigned short Arg0, Arg1; // Input operands for this value.
178 if (ShufTab[ShufTab[ThisOp].Arg1].Cost == 0) {
179 std::cerr << getZeroCostOpName(ShufTab[ThisOp].Arg1);
180 PrintMask(ShufTab[ThisOp].Arg1, std::cerr);
184 if (Vals[i] == ShufTab[ThisOp].Arg1) {
209 unsigned Arg0 = ShufTab[Elt].Arg0, Arg1 = ShufTab[Elt].Arg1;
212 if (Arg0 != Arg1 && ShufTab[Arg1].Cost)
213 EvaluateOps(Arg1, Vals, NumVals)
    [all...]
  /external/libchrome/base/
stl_util.h 214 template <typename ResultType, typename Arg1, typename Arg2>
215 ResultType STLSetDifference(const Arg1& a1, const Arg2& a2) {
226 template <typename ResultType, typename Arg1, typename Arg2>
227 ResultType STLSetUnion(const Arg1& a1, const Arg2& a2) {
239 template <typename ResultType, typename Arg1, typename Arg2>
240 ResultType STLSetIntersection(const Arg1& a1, const Arg2& a2) {
252 template <typename Arg1, typename Arg2>
253 bool STLIncludes(const Arg1& a1, const Arg2& a2) {
  /external/webrtc/webrtc/system_wrappers/include/
stl_util.h 217 template <typename ResultType, typename Arg1, typename Arg2>
218 ResultType STLSetDifference(const Arg1& a1, const Arg2& a2) {
229 template <typename ResultType, typename Arg1, typename Arg2>
230 ResultType STLSetUnion(const Arg1& a1, const Arg2& a2) {
242 template <typename ResultType, typename Arg1, typename Arg2>
243 ResultType STLSetIntersection(const Arg1& a1, const Arg2& a2) {
255 template <typename Arg1, typename Arg2>
256 bool STLIncludes(const Arg1& a1, const Arg2& a2) {
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
arena.h 209 // CreateMessage<T>(Arena*, arg1, arg2) forwards to a constructor T(Arena*,
210 // arg1, arg2).
274 template <typename T, typename Arg1, typename Arg2> GOOGLE_ATTRIBUTE_ALWAYS_INLINE
276 const Arg1& arg1,
279 return new T(NULL, arg1, arg2);
282 arg1, arg2);
322 template <typename T, typename Arg1, typename Arg2> GOOGLE_ATTRIBUTE_ALWAYS_INLINE
323 static T* Create(::google::protobuf::Arena* arena, const Arg1& arg1, const Arg2& arg2)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
named_params.hpp 80 template<typename Arg1>
81 nil operator()( Arg1 const& )
84 template<typename Arg1,typename Arg2>
85 nil operator()( Arg1 const&, Arg2 const& )
88 template<typename Arg1,typename Arg2,typename Arg3>
89 nil operator()( Arg1 const&, Arg2 const&, Arg3 const& )

Completed in 8801 milliseconds

1 2 3