Home
last modified time | relevance | path

Searched refs:Arg2 (Results 1 – 25 of 57) sorted by relevance

123

/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dbind_handler.hpp103 template <typename Handler, typename Arg1, typename Arg2>
107 binder2(const Handler& handler, const Arg1& arg1, const Arg2& arg2) in binder2()
114 binder2(Handler& handler, const Arg1& arg1, const Arg2& arg2) in binder2()
124 static_cast<const Arg2&>(arg2_)); in operator ()()
135 Arg2 arg2_;
138 template <typename Handler, typename Arg1, typename Arg2>
140 binder2<Handler, Arg1, Arg2>* this_handler) in asio_handler_allocate()
146 template <typename Handler, typename Arg1, typename Arg2>
148 binder2<Handler, Arg1, Arg2>* this_handler) in asio_handler_deallocate()
154 template <typename Handler, typename Arg1, typename Arg2>
[all …]
Dwrapped_handler.hpp90 template <typename Arg1, typename Arg2>
91 void operator()(const Arg1& arg1, const Arg2& arg2) in operator ()()
96 template <typename Arg1, typename Arg2>
97 void operator()(const Arg1& arg1, const Arg2& arg2) const in operator ()()
102 template <typename Arg1, typename Arg2, typename Arg3>
103 void operator()(const Arg1& arg1, const Arg2& arg2, const Arg3& arg3) in operator ()()
108 template <typename Arg1, typename Arg2, typename Arg3>
109 void operator()(const Arg1& arg1, const Arg2& arg2, const Arg3& arg3) const in operator ()()
114 template <typename Arg1, typename Arg2, typename Arg3, typename Arg4>
115 void operator()(const Arg1& arg1, const Arg2& arg2, const Arg3& arg3, in operator ()()
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/
Dhandler_type.hpp78 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/
Ddeduction.cpp37 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;
60 template<template<typename> class TT, typename T1, typename Arg1, typename Arg2>
[all …]
Dinstantiate-c99.cpp74 template<typename T, typename Arg1, typename Arg2>
76 T f(Arg1 a1, Arg2 a2) { in f()
/external/llvm/lib/Fuzzer/
DFuzzerTraceState.cpp114 bool ComputeCmp(size_t CmpType, U Arg1, U Arg2) { in ComputeCmp() argument
116 case ICMP_EQ : return Arg1 == Arg2; in ComputeCmp()
117 case ICMP_NE : return Arg1 != Arg2; in ComputeCmp()
118 case ICMP_UGT: return Arg1 > Arg2; in ComputeCmp()
119 case ICMP_UGE: return Arg1 >= Arg2; in ComputeCmp()
120 case ICMP_ULT: return Arg1 < Arg2; in ComputeCmp()
121 case ICMP_ULE: return Arg1 <= Arg2; in ComputeCmp()
122 case ICMP_SGT: return (S)Arg1 > (S)Arg2; in ComputeCmp()
123 case ICMP_SGE: return (S)Arg1 >= (S)Arg2; in ComputeCmp()
124 case ICMP_SLT: return (S)Arg1 < (S)Arg2; in ComputeCmp()
[all …]
/external/protobuf/src/google/protobuf/stubs/
Dcallback.h206 template <typename Arg1, typename Arg2>
209 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
212 Arg1 arg1, Arg2 arg2) in FunctionClosure2()
227 Arg2 arg2_;
230 template <typename Class, typename Arg1, typename Arg2>
233 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2);
236 Arg1 arg1, Arg2 arg2) in MethodClosure2()
252 Arg2 arg2_;
435 template <typename Arg1, typename Arg2>
436 inline Closure* NewCallback(void (*function)(Arg1, Arg2), in NewCallback() argument
[all …]
/external/protobuf/src/google/protobuf/
Darena.h274 template <typename T, typename Arg1, typename Arg2> GOOGLE_ATTRIBUTE_ALWAYS_INLINE
277 const Arg2& arg2) { in CreateMessage()
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) { in Create()
334 template <typename T, typename Arg1, typename Arg2, typename Arg3>
336 const Arg1& arg1, const Arg2& arg2, in Create()
348 template <typename T, typename Arg1, typename Arg2, typename Arg3,
351 const Arg1& arg1, const Arg2& arg2, in Create()
363 template <typename T, typename Arg1, typename Arg2, typename Arg3,
366 const Arg1& arg1, const Arg2& arg2, in Create()
[all …]
/external/eigen/Eigen/src/Core/
DCwiseTernaryOp.h18 template <typename TernaryOp, typename Arg1, typename Arg2, typename Arg3>
19 struct traits<CwiseTernaryOp<TernaryOp, Arg1, Arg2, Arg3> > {
35 const typename Arg1::Scalar&, const typename Arg2::Scalar&,
42 typedef typename Arg2::Nested Arg2Nested;
51 template <typename TernaryOp, typename Arg1, typename Arg2, typename Arg3,
91 typedef typename internal::remove_all<Arg2Type>::type Arg2;
107 EIGEN_STRONG_INLINE CwiseTernaryOp(const Arg1& a1, const Arg2& a2,
112 EIGEN_STATIC_ASSERT_SAME_MATRIX_SIZE(Arg1, Arg2)
185 template <typename TernaryOp, typename Arg1, typename Arg2, typename Arg3,
189 CwiseTernaryOp<TernaryOp, Arg1, Arg2, Arg3> >::type {
[all …]
/external/webrtc/webrtc/system_wrappers/include/
Dstl_util.h217 template <typename ResultType, typename Arg1, typename Arg2>
218 ResultType STLSetDifference(const Arg1& a1, const Arg2& a2) { in STLSetDifference()
229 template <typename ResultType, typename Arg1, typename Arg2>
230 ResultType STLSetUnion(const Arg1& a1, const Arg2& a2) { in STLSetUnion()
242 template <typename ResultType, typename Arg1, typename Arg2>
243 ResultType STLSetIntersection(const Arg1& a1, const Arg2& a2) { in STLSetIntersection()
255 template <typename Arg1, typename Arg2>
256 bool STLIncludes(const Arg1& a1, const Arg2& a2) { in STLIncludes()
/external/llvm/test/Transforms/DeadStoreElimination/
D2011-03-25-DSEMiscompile.ll10 define ghccc void @Func1(i32* noalias %Arg1, i32* noalias %Arg2, i32* %Arg3, i32 %Arg4) {
12 store i32 add (i32 ptrtoint ([0 x i32]* @A to i32), i32 1), i32* %Arg2
13 ; CHECK: store i32 add (i32 ptrtoint ([0 x i32]* @A to i32), i32 1), i32* %Arg2
17 %ln2gD = getelementptr i32, i32* %Arg2, i32 -3
21 tail call ghccc void @Func2(i32* %Arg1, i32* %Arg2, i32* %Arg3, i32 %Arg4) nounwind
/external/swiftshader/third_party/LLVM/test/Transforms/DeadStoreElimination/
D2011-03-25-DSEMiscompile.ll10 define cc10 void @Func1(i32* noalias %Arg1, i32* noalias %Arg2, i32* %Arg3, i32 %Arg4) {
12 store i32 add (i32 ptrtoint ([0 x i32]* @A to i32), i32 1), i32* %Arg2
13 ; CHECK: store i32 add (i32 ptrtoint ([0 x i32]* @A to i32), i32 1), i32* %Arg2
17 %ln2gD = getelementptr i32* %Arg2, i32 -3
21 tail call cc10 void @Func2(i32* %Arg1, i32* %Arg2, i32* %Arg3, i32 %Arg4) nounwind
/external/clang/test/CodeGenObjCXX/
Dblock-in-template-inst.mm39 template<typename R, typename Arg0, typename Arg1, typename Arg2>
40 struct Curry<R (^)(Arg0, Arg1, Arg2)>
42 typedef R (^FType)(Arg0, Arg1, Arg2);
47 R (^(^operator()(Arg0 a))(Arg1))(Arg2)
50 auto inner_block = ^(Arg2 c) {
/external/libchrome/base/
Dstl_util.h214 template <typename ResultType, typename Arg1, typename Arg2>
215 ResultType STLSetDifference(const Arg1& a1, const Arg2& a2) { in STLSetDifference()
226 template <typename ResultType, typename Arg1, typename Arg2>
227 ResultType STLSetUnion(const Arg1& a1, const Arg2& a2) { in STLSetUnion()
239 template <typename ResultType, typename Arg1, typename Arg2>
240 ResultType STLSetIntersection(const Arg1& a1, const Arg2& a2) { in STLSetIntersection()
252 template <typename Arg1, typename Arg2>
253 bool STLIncludes(const Arg1& a1, const Arg2& a2) { in STLIncludes()
/external/clang/test/Rewriter/
Dundecl-objc-h.m9 - (NSRec) MainMethod : (NSRec) Arg1 : (NSRec) Arg2;
18 - (NSRec) MainMethod : (NSRec) Arg1 : (NSRec) Arg2;
27 - (NSRec) MainMethod : (NSRec) Arg1 : (NSRec) Arg2 { return Arg2; }
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorSyclPlaceHolderExpr.h55 template<size_t N, typename Arg1, typename Arg2>
56 struct CalculateIndex<N, Arg1, Arg2>{
57 static const size_t Arg2LeafCount = LeafCount<Arg2>::Count;
59 typedef typename PlaceHolderExpression<Arg2, N>::Type Arg2Type;
63 template<size_t N, typename Arg1, typename Arg2, typename Arg3>
64 struct CalculateIndex<N, Arg1, Arg2, Arg3> {
66 static const size_t Arg2LeafCount = LeafCount<Arg2>::Count;
68 typedef typename PlaceHolderExpression<Arg2, N - Arg3LeafCount>::Type Arg2Type;
DTensorSyclExtractAccessor.h51 …template<typename Arg1, typename Arg2> static inline auto getTuple(cl::sycl::handler& cgh, Arg1 ev…
52 …uple::append(ExtractAccessor<Arg1>::getTuple(cgh, eval1), ExtractAccessor<Arg2>::getTuple(cgh, eva…
53 …return utility::tuple::append(ExtractAccessor<Arg1>::getTuple(cgh, eval1), ExtractAccessor<Arg2>::…
55 …mplate<typename Arg1, typename Arg2, typename Arg3> static inline auto getTuple(cl::sycl::handler&…
56 …cessor<Arg1>::getTuple(cgh, eval1),utility::tuple::append(ExtractAccessor<Arg2>::getTuple(cgh, eva…
57 …cessor<Arg1>::getTuple(cgh, eval1),utility::tuple::append(ExtractAccessor<Arg2>::getTuple(cgh, eva…
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/ia64/
Dsalpal.c44 IN UINT64 Arg2,
53 IN UINT64 Arg2,
271 IN UINT64 Arg2, in LibSalProc() argument
285 ReturnValue = GlobalSalProc(Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7, Arg8); in LibSalProc()
296 IN UINT64 Arg2, in LibPalProc() argument
324 ReturnValue = MakeStackedPALCall((UINT64)GlobalPalProc,Arg1,Arg2,Arg3,Arg4); in LibPalProc()
327 ReturnValue = MakeStaticPALCall((UINT64)GlobalPalProc,Arg1,Arg2,Arg3,Arg4); in LibPalProc()
/external/libcxx/test/support/
Dcounting_predicates.hpp30 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); } in operator ()()
/external/clang/test/SemaObjC/
Dwarning-missing-selector-name.m7 -(void) Name1:(id)Arg1 Name2:(id)Arg2; // Name1:Name2:
8 -(void) Name1:(id) Name2:(id)Arg2; // expected-warning {{'Name2' used as the name of the previous p…
11 -(void) Name1:(id)Arg1 Name2:(id)Arg2 Name3:(id)Arg3; // Name1:Name2:Name3:
23 -(void) Name1:(id)Arg1 Name2:(id)Arg2{}
24 -(void) Name1:(id) Name2:(id)Arg2 {} // expected-warning {{'Name2' used as the name of the previous…
27 -(void) Name1:(id)Arg1 Name2:(id)Arg2 Name3:(id)Arg3 {}
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia64/
Dsalproc.h85 IN UINT64 Arg2,
98 IN UINT64 Arg2,
112 IN UINT64 Arg2,
240 IN UINT64 Arg2,
253 IN UINT64 Arg2,
Defilibplat.h60 IN UINT64 Arg2,
73 IN UINT64 Arg2,
/external/pcre/dist2/testdata/
DgrepoutputC1 Arg1: [T] [he ] [ ] Arg2: |T| () () (0)
2 Arg1: [T] [his] [s] Arg2: |T| () () (0)
/external/clang/test/Index/
Dcomplete-objc-message.m88 - (int)Method:(float)f Arg1:(int)i1 Arg2:(int)i2;
91 - (int)OtherMethod:(float)f Arg1:(int)i1 Arg2:(int)i2;
109 + (int)Method:(float)f Arg1:(int)i1 Arg2:(int)i2;
112 + (int)OtherMethod:(float)f Arg1:(int)i1 Arg2:(int)i2;
236 …Space }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
239 …Space }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
241 …Method:}{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
246 …odDecl:{ResultType int}{Informative Method:}{Informative Arg1:}{TypedText Arg2:}{Placeholder (int)}
265 …Space }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
268 …Space }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
[all …]
/external/clang/test/CodeGenCXX/
Dmangle-ms-template-callback.cpp13 template<typename Ret, typename Arg1, typename Arg2>
14 class C<Ret(Arg1, Arg2)> {};

123