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

1 2 3

  /external/clang/test/Modules/Inputs/
category_left_sub.h 5 @protocol P3
10 @interface Foo(LeftP3) <P3>
category_top.h 22 @protocol P3, P4;
redecl-merge-right.h 51 @protocol P4, P3;
52 @protocol P3;
53 @protocol P3;
54 @protocol P3;
redecl-merge-left.h 46 @protocol P3, P4;
48 @protocol P3;
  /external/chromium/base/
bind.h 59 template <typename Sig, typename P1, typename P2, typename P3>
60 internal::InvokerStorageHolder<internal::InvokerStorage3<Sig,P1, P2, P3> >
61 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3) {
63 new internal::InvokerStorage3<Sig, P1, P2, P3>(
64 f, p1, p2, p3));
67 template <typename Sig, typename P1, typename P2, typename P3, typename P4>
68 internal::InvokerStorageHolder<internal::InvokerStorage4<Sig,P1, P2, P3, P4> >
69 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/utility/pairs/pairs.pair/
piecewise.pass.cpp 28 typedef std::pair<P1, P2> P3;
29 P3 p3(std::piecewise_construct, std::tuple<int, int*>(3, nullptr),
31 assert(p3.first == P1(3, nullptr));
32 assert(p3.second == P2(nullptr, 4));
  /external/webrtc/src/system_wrappers/interface/
ref_count.h 54 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
    [all...]
  /external/libgsm/inc/
unproto.h 16 #undef P3
proto.h 28 #undef P3
42 # define P3(x, a, b, c) (a, b, c)
56 # define P3(x, a, b, c) x a; b; c;
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCThreadTask.h 125 template<typename T, typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3>
129 typedef CCThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> CCThreadTaskImpl;
132 typedef typename CrossThreadTaskTraits<P3>::ParamType Param3;
158 P3 m_parameter3;
162 template<typename T, typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4>
166 typedef CCThreadTask4<T, P1, MP1, P2, MP2, P3, MP3, P4, MP4> CCThreadTaskImpl;
169 typedef typename CrossThreadTaskTraits<P3>::ParamType Param3;
197 P3 m_parameter3;
242 template<typename T, typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3>
248 const P3& parameter3
    [all...]