/external/chromium/base/ |
D | bind.h | 43 template <typename Sig, typename P1> 44 internal::InvokerStorageHolder<internal::InvokerStorage1<Sig,P1> > 45 Bind(Sig f, const P1& p1) { in Bind() 47 new internal::InvokerStorage1<Sig, P1>( in Bind() 51 template <typename Sig, typename P1, typename P2> 52 internal::InvokerStorageHolder<internal::InvokerStorage2<Sig,P1, P2> > 53 Bind(Sig f, const P1& p1, const P2& p2) { in Bind() 55 new internal::InvokerStorage2<Sig, P1, P2>( in Bind() 59 template <typename Sig, typename P1, typename P2, typename P3> 60 internal::InvokerStorageHolder<internal::InvokerStorage3<Sig,P1, P2, P3> > [all …]
|
/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
D | HandleMessage.h | 16 template<typename C, typename MF, typename P1> 17 void callMemberFunction(const Arguments1<P1>& args, C* object, MF function) in callMemberFunction() 22 template<typename C, typename MF, typename P1, typename P2> 23 void callMemberFunction(const Arguments2<P1, P2>& args, C* object, MF function) in callMemberFunction() argument 28 template<typename C, typename MF, typename P1, typename P2, typename P3> 29 void callMemberFunction(const Arguments3<P1, P2, P3>& args, C* object, MF function) in callMemberFunction() argument 34 template<typename C, typename MF, typename P1, typename P2, typename P3, typename P4> 35 void callMemberFunction(const Arguments4<P1, P2, P3, P4>& args, C* object, MF function) in callMemberFunction() argument 40 template<typename C, typename MF, typename P1, typename P2, typename P3, typename P4, typename P5> 41 void callMemberFunction(const Arguments5<P1, P2, P3, P4, P5>& args, C* object, MF function) in callMemberFunction() argument [all …]
|
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/ |
D | CCThreadTask.h | 62 template<typename T, typename P1, typename MP1> 66 typedef CCThreadTask1<T, P1, MP1> CCThreadTaskImpl; 67 typedef typename CrossThreadTaskTraits<P1>::ParamType Param1; 89 P1 m_parameter1; 92 template<typename T, typename P1, typename MP1, typename P2, typename MP2> 96 typedef CCThreadTask2<T, P1, MP1, P2, MP2> CCThreadTaskImpl; 97 typedef typename CrossThreadTaskTraits<P1>::ParamType Param1; 121 P1 m_parameter1; 125 template<typename T, typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP… 129 typedef CCThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> CCThreadTaskImpl; [all …]
|
D | CCMainThreadTask.h | 62 template<typename T, typename P1, typename MP1> 66 typedef MainThreadTask1<T, P1, MP1> MainThreadTaskImpl; 67 typedef typename CrossThreadTaskTraits<P1>::ParamType Param1; 89 P1 m_parameter1; 92 template<typename T, typename P1, typename MP1, typename P2, typename MP2> 96 typedef MainThreadTask2<T, P1, MP1, P2, MP2> MainThreadTaskImpl; 97 typedef typename CrossThreadTaskTraits<P1>::ParamType Param1; 121 P1 m_parameter1; 125 template<typename T, typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP… 129 typedef MainThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> MainThreadTaskImpl; [all …]
|
/external/webkit/Source/WebCore/fileapi/ |
D | FileThreadTask.h | 69 template<typename T, typename P1, typename MP1> 73 typedef FileThreadTask1<T, P1, MP1> FileThreadTaskImpl; 74 typedef typename CrossThreadTaskTraits<P1>::ParamType Param1; 96 P1 m_parameter1; 99 template<typename T, typename P1, typename MP1, typename P2, typename MP2> 103 typedef FileThreadTask2<T, P1, MP1, P2, MP2> FileThreadTaskImpl; 104 typedef typename CrossThreadTaskTraits<P1>::ParamType Param1; 128 P1 m_parameter1; 132 template<typename T, typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP… 136 typedef FileThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> FileThreadTaskImpl; [all …]
|
/external/clang/test/CodeGenObjC/ |
D | protocols.m | 12 @protocol P1 27 @protocol P3<P1, P2> 28 -(id <P1>) print0; 38 Protocol *P1 = @protocol(P1); 43 Pbool([P0 conformsTo: P1]); 44 Pbool([P1 conformsTo: P0]); 45 Pbool([P1 conformsTo: P2]); 46 Pbool([P2 conformsTo: P1]); 47 Pbool([P3 conformsTo: P1]); 48 Pbool([P1 conformsTo: P3]); [all …]
|
/external/webkit/Source/WebCore/dom/ |
D | CrossThreadTask.h | 60 template<typename P1, typename MP1> 64 typedef CrossThreadTask1<P1, MP1> CrossThreadTask; 65 typedef typename CrossThreadTaskTraits<P1>::ParamType Param1; 86 P1 m_parameter1; 89 template<typename P1, typename MP1, typename P2, typename MP2> 93 typedef CrossThreadTask2<P1, MP1, P2, MP2> CrossThreadTask; 94 typedef typename CrossThreadTaskTraits<P1>::ParamType Param1; 117 P1 m_parameter1; 121 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3> 125 typedef CrossThreadTask3<P1, MP1, P2, MP2, P3, MP3> CrossThreadTask; [all …]
|
/external/chromium/testing/ |
D | gmock_mutant.h | 217 template <typename R, typename T, typename Method, typename P1> 219 const Tuple1<P1>& p, in DispatchToMethod() 223 template <typename R, typename Function, typename P1> 225 const Tuple1<P1>& p, in DispatchToFunction() 231 template <typename R, typename T, typename Method, typename P1, typename C1> 233 const Tuple1<P1>& p, in DispatchToMethod() 237 template <typename R, typename Function, typename P1, typename C1> 239 const Tuple1<P1>& p, in DispatchToFunction() 245 template <typename R, typename T, typename Method, typename P1, typename C1, 248 const Tuple1<P1>& p, in DispatchToMethod() [all …]
|
/external/clang/test/Parser/ |
D | objc-type-printing.m | 3 @protocol P1 @end protocol 8 - (INTF<P1>*) METH; 14 INTF<P1>* p1; 15 INTF<P1, P1>* p2; 16 INTF<P1, P3>* p3; 17 INTF<P1, P3, P2>* p4; 18 INTF<P2,P2, P3, P1>* p5;
|
/external/clang/test/SemaObjC/ |
D | conditional-expr-3.m | 5 @protocol P1 protocol 18 void barP1(id<P1> x); 29 void f2(id<P1> x) { 30 …= x; // expected-warning {{initializing 'id<P0>' with an expression of incompatible type 'id<P1>'}} 34 …id<P1> l = a; // expected-warning {{initializing 'id<P1>' with an expression of incompatible type … 46 bar(cond ? (id<P0, P1>) x : a); 50 bar(cond ? a : (id<P0, P1>) x); 53 void f8(int cond, id<P0,P1> x0, id<P0,P2> x1) { 54 …barP0(cond ? x0 : x1); // expected-warning {{incompatible operand types ('id<P0,P1>' and 'id<P0,P2… 57 void f9(int cond, id<P0,P1> x0, id<P0,P2> x1) { [all …]
|
D | class-conforming-protocol-1.m | 3 @protocol P1 @end protocol 9 - (INTF<P1>*) METH1; // expected-error {{duplicate declaration of method 'METH1'}} 11 - (INTF<P2,P1>*) METH2; // expected-note {{previous declaration is here}} 12 - (INTF<P2,P1,P3>*) METH2; // expected-error {{duplicate declaration of method 'METH2'}} 14 - (INTF<P2,P1,P3>*) METH3; // expected-note {{previous declaration is here}} 15 - (INTF<P3,P1,P2, P3>*) METH3; // expected-warning {{multiple declarations of method 'METH3' found … 19 INTF<P2,P1,P3>* p1;
|
D | conditional-expr.m | 49 @protocol P1 protocol 102 void f9(int a, A<P0> *x, A<P1> *y) { 103 id l0 = (a ? x : y ); // expected-warning {{incompatible operand types ('A<P0> *' and 'A<P1> *')}} 104 …A<P0> *l1 = (a ? x : y ); // expected-warning {{incompatible operand types ('A<P0> *' and 'A<P1> *… 105 …A<P1> *l2 = (a ? x : y ); // expected-warning {{incompatible operand types ('A<P0> *' and 'A<P1> *… 106 …[ (a ? x : y ) intProp ]; // expected-warning {{incompatible operand types ('A<P0> *' and 'A<P1> *… 113 void f11(int a, id<P0> x, id<P1> y) { 114 …[ (a ? x : y ) intProp ]; // expected-warning {{incompatible operand types ('id<P0>' and 'id<P1>')… 117 void f12(int a, A<P0> *x, A<P1> *y) { 118 …A<P1>* l0 = (a ? x : y ); // expected-warning {{incompatible operand types ('A<P0> *' and 'A<P1> *…
|
D | conditional-expr-4.m | 50 @protocol P1 protocol 54 int f5(int cond, id<P1> a, id<P1> b) { 64 int f6(int cond, id<P1> a, void *b) { 69 int f7(int cond, id<P1> a) { 73 int f8(int cond, id<P1> a, A *b) { 74 return a == b; // expected-warning {{comparison of distinct pointer types ('id<P1>' and 'A *')}} 77 int f9(int cond, id<P1> a, A *b) { 78 return (cond ? a : b).x; // expected-warning {{incompatible operand types ('id<P1>' and 'A *')}} \
|
D | property-5.m | 3 @protocol P1 @end protocol 11 @interface Base : NSData <P1> 18 @interface Data : Base <P1, P2> 28 @interface ConstData : Data <P1, P2, P3>
|
/external/clang/test/SemaObjCXX/ |
D | conditional-expr.mm | 5 @protocol P1 protocol 18 void barP1(id<P1> x); 29 void f2(id<P1> x) { 30 …// expected-error {{cannot initialize a variable of type 'id<P0>' with an lvalue of type 'id<P1>'}} 34 …id<P1> l = a; // expected-error {{cannot initialize a variable of type 'id<P1>' with an lvalue of … 46 bar(cond ? (id<P0, P1>) x : a); 50 bar(cond ? a : (id<P0, P1>) x); 53 void f8(int cond, id<P0,P1> x0, id<P0,P2> x1) { 54 …barP0(cond ? x0 : x1); // expected-warning {{incompatible operand types ('id<P0,P1>' and 'id<P0,P2… 57 void f9(int cond, id<P0,P1> x0, id<P0,P2> x1) { [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | vec_extract-sse4.ll | 7 define void @t1(float* %R, <4 x float>* %P1) nounwind { 8 %X = load <4 x float>* %P1 14 define float @t2(<4 x float>* %P1) nounwind { 15 %X = load <4 x float>* %P1 20 define void @t3(i32* %R, <4 x i32>* %P1) nounwind { 21 %X = load <4 x i32>* %P1 27 define i32 @t4(<4 x i32>* %P1) nounwind { 28 %X = load <4 x i32>* %P1
|
D | fp-stack-2results.ll | 29 define void @call1(x86_fp80 *%P1, x86_fp80 *%P2) { 32 store x86_fp80 %b, x86_fp80* %P1 40 define void @call2(x86_fp80 *%P1, x86_fp80 *%P2) { 43 store x86_fp80 %b, x86_fp80* %P1 51 define void @call3(x86_fp80 *%P1, x86_fp80 *%P2) { 54 store x86_fp80 %b, x86_fp80* %P1 59 define void @call4(x86_fp80 *%P1, x86_fp80 *%P2) {
|
/external/clang/test/Rewriter/ |
D | rewrite-modern-ivars.mm | 5 @protocol P1 @end protocol 9 id<P, P1> Q_IVAR; 14 id<P, P1> (^ext_block)(id<P>, INTF<P,P1>*, INTF*); 17 INTF<P> *(*imp_fptr)(void (^_block)(id<P>, INTF<P,P1>*)); field 27 id<P, P1> Q_IVAR; 38 id<P, P1> (^ext_block)(id<P>, MISC_INTF<P,P1>*, MISC_INTF*); 62 MISC_INTF<P> *(*imp_fptr)(void (^_block)(id<P>, MISC_INTF<P,P1>*));
|
/external/webrtc/src/system_wrappers/interface/ |
D | ref_count.h | 51 template<typename P1, typename P2> 52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {} in RefCountImpl() 54 template<typename P1, typename P2, typename P3> 55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {} in RefCountImpl() 57 template<typename P1, typename P2, typename P3, typename P4> 58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {} in RefCountImpl() 60 template<typename P1, typename P2, typename P3, typename P4, typename P5> 61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) in RefCountImpl()
|
/external/llvm/test/CodeGen/PowerPC/ |
D | vec_perf_shuffle.ll | 3 define <4 x float> @test_uu72(<4 x float>* %P1, <4 x float>* %P2) { 4 %V1 = load <4 x float>* %P1 ; <<4 x float>> [#uses=1] 10 define <4 x float> @test_30u5(<4 x float>* %P1, <4 x float>* %P2) { 11 %V1 = load <4 x float>* %P1 ; <<4 x float>> [#uses=1] 17 define <4 x float> @test_3u73(<4 x float>* %P1, <4 x float>* %P2) { 18 %V1 = load <4 x float>* %P1 ; <<4 x float>> [#uses=1] 24 define <4 x float> @test_3774(<4 x float>* %P1, <4 x float>* %P2) { 25 %V1 = load <4 x float>* %P1 ; <<4 x float>> [#uses=1] 31 define <4 x float> @test_4450(<4 x float>* %P1, <4 x float>* %P2) { 32 %V1 = load <4 x float>* %P1 ; <<4 x float>> [#uses=1]
|
/external/llvm/test/CodeGen/ARM/ |
D | vfp.ll | 53 define void @test_fma(float* %P1, float* %P2, float* %P3) { 55 %a1 = load float* %P1 ; <float> [#uses=1] 61 store float %Y, float* %P1 65 define i32 @test_ftoi(float* %P1) { 67 %a1 = load float* %P1 ; <float> [#uses=1] 73 define i32 @test_ftou(float* %P1) { 75 %a1 = load float* %P1 ; <float> [#uses=1] 81 define i32 @test_dtoi(double* %P1) { 83 %a1 = load double* %P1 ; <double> [#uses=1] 89 define i32 @test_dtou(double* %P1) { [all …]
|
D | truncstore-dag-combine.ll | 6 %P1 = bitcast i8* %P to i16* ; <i16*> [#uses=1] 8 store i16 %tmp, i16* %P1, align 1 14 %P1 = bitcast i8* %P to i32* ; <i32*> [#uses=1] 16 store i32 %tmp, i32* %P1, align 1
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
D | CheckerManager.h | 55 template <typename RET, typename P1, typename P2, typename P3, typename P4, 57 class CheckerFn<RET(P1, P2, P3, P4, P5)> { 58 typedef RET (*Func)(void *, P1, P2, P3, P4, P5); 63 RET operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) const { in operator() 68 template <typename RET, typename P1, typename P2, typename P3, typename P4> 69 class CheckerFn<RET(P1, P2, P3, P4)> { 70 typedef RET (*Func)(void *, P1, P2, P3, P4); 75 RET operator()(P1 p1, P2 p2, P3 p3, P4 p4) const { in operator() 80 template <typename RET, typename P1, typename P2, typename P3> 81 class CheckerFn<RET(P1, P2, P3)> { [all …]
|
/external/llvm/test/Analysis/BasicAA/ |
D | 2003-04-22-GEPProblem.ll | 3 ; BasicAA was incorrectly concluding that P1 and P2 didn't conflict! 7 %P1 = getelementptr i32* %Ptr, i64 %V 8 %X = load i32* %P1 11 %Y = load i32* %P1
|
/external/valgrind/unittest/ |
D | thread_wrappers.h | 194 template <class P1> 195 Closure *NewCallback(void (*f)(P1), P1 p1) { in NewCallback() argument 196 CHECK(sizeof(P1) <= sizeof(void*)); in NewCallback() 205 template <class P1, class P2> 206 Closure *NewCallback(void (*f)(P1, P2), P1 p1, P2 p2) { in NewCallback() argument 207 CHECK(sizeof(P1) <= sizeof(void*)); in NewCallback()
|