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

1 2

  /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...]
  /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/parameter-framework/asio-1.10.6/include/asio/detail/
bind_handler.hpp 103 template <typename Handler, typename Arg1, typename Arg2>
107 binder2(const Handler& handler, const Arg1& arg1, const Arg2& arg2)
110 arg2_(arg2)
114 binder2(Handler& handler, const Arg1& arg1, const Arg2& arg2)
117 arg2_(arg2)
124 static_cast<const Arg2&>(arg2_));
135 Arg2 arg2_;
138 template <typename Handler, typename Arg1, typename Arg2>
    [all...]
wrapped_handler.hpp 90 template <typename Arg1, typename Arg2>
91 void operator()(const Arg1& arg1, const Arg2& arg2)
93 dispatcher_.dispatch(detail::bind_handler(handler_, arg1, arg2));
96 template <typename Arg1, typename Arg2>
97 void operator()(const Arg1& arg1, const Arg2& arg2) const
99 dispatcher_.dispatch(detail::bind_handler(handler_, arg1, arg2));
102 template <typename Arg1, typename Arg2, typename Arg3>
103 void operator()(const Arg1& arg1, const Arg2& arg2, const Arg3& arg3
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
primtypes.swg 247 %define _apply_macro(macro, arg2, arg1...)
249 macro(%arg(arg1),arg2);
251 macro(arg2);
256 %define %apply_ctypes(Macro, Arg2...)
257 _apply_macro(Macro, bool , Arg2);
258 _apply_macro(Macro, signed char , Arg2);
259 _apply_macro(Macro, unsigned char , Arg2);
260 _apply_macro(Macro, short , Arg2);
261 _apply_macro(Macro, unsigned short , Arg2);
262 _apply_macro(Macro, int , Arg2);
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
handler_type.hpp 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,
89 struct handler_type<ReturnType(Arg1, Arg2, Arg3, Arg4), Signature>
90 : handler_type<ReturnType(*)(Arg1, Arg2, Arg3, Arg4), Signature> {};
92 template <typename ReturnType, typename Arg1, typename Arg2, typename 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)>
  /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); }
  /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/protobuf/src/google/protobuf/stubs/
common.h 953 template <typename Arg1, typename Arg2>
956 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
959 Arg1 arg1, Arg2 arg2)
961 arg1_(arg1), arg2_(arg2) {
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 950 template <typename Arg1, typename Arg2>
953 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
956 Arg1 arg1, Arg2 arg2)
958 arg1_(arg1), arg2_(arg2) {}
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 950 template <typename Arg1, typename Arg2>
953 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
956 Arg1 arg1, Arg2 arg2)
958 arg1_(arg1), arg2_(arg2) {}
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
common.h 950 template <typename Arg1, typename Arg2>
953 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
956 Arg1 arg1, Arg2 arg2)
958 arg1_(arg1), arg2_(arg2) {}
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
callback.h 206 template <typename Arg1, typename Arg2>
209 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
212 Arg1 arg1, Arg2 arg2)
214 arg1_(arg1), arg2_(arg2) {}
227 Arg2 arg2_;
230 template <typename Class, typename Arg1, typename Arg2>
233 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2);
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
common.h 950 template <typename Arg1, typename Arg2>
953 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
956 Arg1 arg1, Arg2 arg2)
958 arg1_(arg1), arg2_(arg2) {}
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-ms-template-callback.cpp 13 template<typename Ret, typename Arg1, typename Arg2>
14 class C<Ret(Arg1, Arg2)> {};
  /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
277 const Arg2& arg2) {
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 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& )
  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 253 Value *Arg2 = CI->getArgOperand(1);
262 if (Arg2->use_empty())
263 if (Constant *C = dyn_cast<Constant>(Arg2))

Completed in 7433 milliseconds

1 2