Searched refs:P3 (Results 1 - 25 of 69) sorted by relevance

123

/external/clang/test/Modules/Inputs/
H A Dcategory_left_sub.h5 @protocol P3
10 @interface Foo(LeftP3) <P3>
H A Dcategory_top.h22 @protocol P3, P4; variable
H A Dredecl-merge-right.h51 @protocol P4, P3; variable
52 @protocol P3; variable
53 @protocol P3; variable
54 @protocol P3; variable
H A Dredecl-merge-left.h46 @protocol P3, P4; variable
48 @protocol P3; variable
/external/libcxx/test/utilities/utility/pairs/pairs.pair/
H A Dpiecewise.pass.cpp28 typedef std::pair<P1, P2> P3; typedef
29 P3 p3(std::piecewise_construct, std::tuple<int, int*>(3, nullptr),
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dref_count.h54 template<typename P1, typename P2, typename P3>
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {}
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) {}
60 template<typename P1, typename P2, typename P3, typename P4, typename P5>
61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
/external/webrtc/src/system_wrappers/interface/
H A Dref_count.h54 template<typename P1, typename P2, typename P3>
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {}
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) {}
60 template<typename P1, typename P2, typename P3, typename P4, typename P5>
61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
/external/chromium_org/third_party/webrtc/base/
H A Drefcount.h43 template<typename P1, typename P2, typename P3>
44 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {
47 template<typename P1, typename P2, typename P3, typename P4>
48 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4)
52 template<typename P1, typename P2, typename P3, typename P4, typename P5>
53 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
H A Dbind.h265 class P3>
271 P3 p3)
283 P3 p3_;
289 class P3>
292 Functor3(const FunctorT& functor, P1 p1, P2 p2, P3 p3)
303 P3 p3_;
307 #define FP_T(x) R (ObjectT::*x)(P1, P2, P3)
312 class P3>
313 MethodFunctor3<ObjectT, FP_T(NONAME), R, P1, P2, P3>
317 typename detail::identity<P3>
[all...]
H A Dcallback.h164 class P3>
171 R operator()(P1 p1, P2 p2, P3 p3) {
181 virtual R Run(P1 p1, P2 p2, P3 p3) = 0;
185 virtual R Run(P1 p1, P2 p2, P3 p3) {
196 class P3,
204 R operator()(P1 p1, P2 p2, P3 p3, P4 p4) {
214 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4) = 0;
218 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4) {
229 class P3,
238 R operator()(P1 p1, P2 p2, P3 p
[all...]
/external/libgsm/inc/
H A Dunproto.h16 #undef P3 macro
H A Dproto.h28 #undef P3 macro
42 # define P3(x, a, b, c) (a, b, c) macro
56 # define P3(x, a, b, c) x a; b; c; macro
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCrossThreadTask.h140 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3>
144 typedef CrossThreadTask3<P1, MP1, P2, MP2, P3, MP3> CrossThreadTask;
147 typedef typename CrossThreadTaskTraits<P3>::ParamType Param3;
172 P3 m_parameter3;
175 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4>
179 typedef CrossThreadTask4<P1, MP1, P2, MP2, P3, MP3, P4, MP4> CrossThreadTask;
182 typedef typename CrossThreadTaskTraits<P3>::ParamType Param3;
209 P3 m_parameter3;
213 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4, typename P5, typename MP5>
217 typedef CrossThreadTask5<P1, MP1, P2, MP2, P3, MP
[all...]
H A DExecutionContextTask.h99 template<typename FunctionType, typename P1, typename P2, typename P3>
102 const P1& parameter1, const P2& parameter2, const P3& parameter3)
110 template<typename FunctionType, typename P1, typename P2, typename P3, typename P4>
113 const P1& parameter1, const P2& parameter2, const P3& parameter3, const P4& parameter4)
122 template<typename FunctionType, typename P1, typename P2, typename P3, typename P4, typename P5>
125 const P1& parameter1, const P2& parameter2, const P3& parameter3, const P4& parameter4, const P5& parameter5)
135 template<typename FunctionType, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6>
138 const P1& parameter1, const P2& parameter2, const P3& parameter3, const P4& parameter4, const P5& parameter5, const P6& parameter6)
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFunctional.h104 template<typename R, typename P1, typename P2, typename P3>
105 class FunctionWrapper<R(*)(P1, P2, P3)> {
109 explicit FunctionWrapper(R(*function)(P1, P2, P3))
114 R operator()(P1 p1, P2 p2, P3 p3)
120 R(*m_function)(P1, P2, P3);
123 template<typename R, typename P1, typename P2, typename P3, typename P4>
124 class FunctionWrapper<R(*)(P1, P2, P3, P4)> {
128 explicit FunctionWrapper(R(*function)(P1, P2, P3, P4))
133 R operator()(P1 p1, P2 p2, P3 p3, P4 p4)
139 R(*m_function)(P1, P2, P3, P
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dthread_aware_callback.h81 template <class P1, class P2, class P3>
82 void RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3) {
86 template <class P1, class P2, class P3, class P4>
89 const P3& p3,
94 template <class P1, class P2, class P3, class P4, class P5>
97 const P3& p3,
H A Dproxy_lock.h137 class P3>
141 const P3& p3) {
146 class P2, class P3, class P4>
150 const P3& p3,
156 class P1, class P2, class P3, class P4, class P5>
160 const P3& p3,
296 template <typename P1, typename P2, typename P3>
297 class RunWhileLockedHelper<void(P1, P2, P3)> {
299 typedef base::Callback<void(P1, P2, P3)> CallbackType;
305 void CallWhileLocked(P1 p1, P2 p2, P3 p
[all...]
/external/chromium_org/gin/
H A Dfunction_template.h92 typename P3 = void, typename P4 = void, typename P5 = void,
97 const base::Callback<R(P1, P2, P3, P4, P5, P6)>& callback,
100 const P3& a3,
107 template<typename P1, typename P2, typename P3, typename P4, typename P5,
109 struct Invoker<void, P1, P2, P3, P4, P5, P6> {
112 const base::Callback<void(P1, P2, P3, P4, P5, P6)>& callback,
115 const P3& a3,
123 template<typename R, typename P1, typename P2, typename P3, typename P4,
125 struct Invoker<R, P1, P2, P3, P4, P5, void> {
128 const base::Callback<R(P1, P2, P3, P
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dcall-tester.h194 template <typename R, typename F, typename P1, typename P2, typename P3>
195 R DoCall(F* f, P1 p1, P2 p2, P3 p3) {
201 template <typename R, typename F, typename P1, typename P2, typename P3,
203 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4) {
231 template <typename R, typename F, typename P1, typename P2, typename P3>
232 R DoCall(F* f, P1 p1, P2 p2, P3 p3) {
235 ParameterTraits<P2>::Cast(p2), ParameterTraits<P3>::Cast(p3)));
237 template <typename R, typename F, typename P1, typename P2, typename P3,
239 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4) {
242 ParameterTraits<P2>::Cast(p2), ParameterTraits<P3>
[all...]
/external/chromium_org/base/
H A Dbind.h172 template <typename Functor, typename P1, typename P2, typename P3>
179 typename internal::CallbackParamTraits<P3>::StorageType)>
181 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3) {
216 COMPILE_ASSERT(!internal::NeedsScopedRefptrButGetsRawPtr<P3>::value,
221 typename internal::CallbackParamTraits<P3>::StorageType)> BindState;
228 template <typename Functor, typename P1, typename P2, typename P3, typename P4>
235 typename internal::CallbackParamTraits<P3>::StorageType,
238 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4) {
274 COMPILE_ASSERT(!internal::NeedsScopedRefptrButGetsRawPtr<P3>::value,
281 typename internal::CallbackParamTraits<P3>
[all...]
/external/chromium_org/testing/
H A Dgmock_mutant.h435 typename P3>
437 const Tuple3<P1, P2, P3>& p,
441 template <typename R, typename Function, typename P1, typename P2, typename P3>
443 const Tuple3<P1, P2, P3>& p,
450 typename P3, typename C1>
452 const Tuple3<P1, P2, P3>& p,
456 template <typename R, typename Function, typename P1, typename P2, typename P3,
459 const Tuple3<P1, P2, P3>& p,
466 typename P3, typename C1, typename C2>
468 const Tuple3<P1, P2, P3>
[all...]
/external/libunwind/src/ia64/
H A Dunwind_decoder.h245 case 0: UNW_DEC_REG_GR(P3, UNW_REG_PSP, dst, arg); break;
246 case 1: UNW_DEC_REG_GR(P3, UNW_REG_RP, dst, arg); break;
247 case 2: UNW_DEC_REG_GR(P3, UNW_REG_PFS, dst, arg); break;
248 case 3: UNW_DEC_REG_GR(P3, UNW_REG_PR, dst, arg); break;
249 case 4: UNW_DEC_REG_GR(P3, UNW_REG_UNAT, dst, arg); break;
250 case 5: UNW_DEC_REG_GR(P3, UNW_REG_LC, dst, arg); break;
251 case 6: UNW_DEC_RP_BR(P3, dst, arg); break;
252 case 7: UNW_DEC_REG_GR(P3, UNW_REG_RNAT, dst, arg); break;
253 case 8: UNW_DEC_REG_GR(P3, UNW_REG_BSP, dst, arg); break;
254 case 9: UNW_DEC_REG_GR(P3, UNW_REG_BSPSTOR
[all...]
/external/libgsm/src/
H A Dgsm_option.c14 int gsm_option P3((r, opt, val), gsm r, int opt, int * val)
/external/fdlibm/
H A De_exp.c34 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
96 P3 = 6.61375632143793436117e-05, /* 0x3F11566A, 0xAF25DE2C */ variable
146 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h50 template <typename RET, typename P1, typename P2, typename P3, typename P4,
52 class CheckerFn<RET(P1, P2, P3, P4, P5)> {
53 typedef RET (*Func)(void *, P1, P2, P3, P4, P5);
58 RET operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) const {
63 template <typename RET, typename P1, typename P2, typename P3, typename P4>
64 class CheckerFn<RET(P1, P2, P3, P4)> {
65 typedef RET (*Func)(void *, P1, P2, P3, P4);
70 RET operator()(P1 p1, P2 p2, P3 p3, P4 p4) const {
75 template <typename RET, typename P1, typename P2, typename P3>
76 class CheckerFn<RET(P1, P2, P3)> {
[all...]

Completed in 9468 milliseconds

123