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

1 2 3 4

  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/utility/pairs/pair.astuple/
tuple_size.pass.cpp 21 typedef std::pair<int, short> P1;
22 static_assert((std::tuple_size<P1>::value == 2), "");
tuple_element.pass.cpp 21 typedef std::pair<int, short> P1;
22 static_assert((std::is_same<std::tuple_element<0, P1>::type, int>::value), "");
23 static_assert((std::is_same<std::tuple_element<1, P1>::type, short>::value), "");
26 typedef std::pair<int*, char> P1;
27 static_assert((std::is_same<std::tuple_element<0, P1>::type, int*>::value), "");
28 static_assert((std::is_same<std::tuple_element<1, P1>::type, char>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/utility/pairs/pairs.pair/
copy_ctor.pass.cpp 22 typedef std::pair<int, short> P1;
23 P1 p1(3, 4);
24 P1 p2 = p1;
const_pair_U_V.pass.cpp 22 typedef std::pair<int, short> P1;
24 P1 p1(3, 4);
25 P2 p2 = p1;
swap.pass.cpp 22 typedef std::pair<int, short> P1;
23 P1 p1(3, 4);
24 P1 p2(5, 6);
25 p1.swap(p2);
26 assert(p1.first == 5);
27 assert(p1.second == 6);
piecewise.pass.cpp 26 typedef std::pair<int, int*> P1;
28 typedef std::pair<P1, P2> P3;
31 assert(p3.first == P1(3, nullptr));
assign_const_pair_U_V.pass.cpp 22 typedef std::pair<int, short> P1;
24 P1 p1(3, 4);
26 p2 = p1;
assign_rv_pair_U_V.pass.cpp 34 typedef std::pair<std::unique_ptr<Derived>, short> P1;
36 P1 p1(std::unique_ptr<Derived>(), 4);
38 p2 = std::move(p1);
rv_pair_U_V.pass.cpp 34 typedef std::pair<std::unique_ptr<Derived>, short> P1;
36 P1 p1(std::unique_ptr<Derived>(), 4);
37 P2 p2 = std::move(p1);
  /external/clang/test/CodeGenCXX/
PR5863-unreachable-block.cpp 6 void P1() {
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/utility/pairs/pairs.spec/
make_pair.pass.cpp 21 typedef std::pair<int, short> P1;
22 P1 p1 = std::make_pair(3, 4); local
23 assert(p1.first == 3);
24 assert(p1.second == 4);
28 typedef std::pair<std::unique_ptr<int>, short> P1;
29 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), 4); local
30 assert(*p1.first == 3);
31 assert(p1.second == 4)
35 P1 p1 = std::make_pair(nullptr, 4); local
    [all...]
non_member_swap.pass.cpp 22 typedef std::pair<int, short> P1;
23 P1 p1(3, 4);
24 P1 p2(5, 6);
25 swap(p1, p2);
26 assert(p1.first == 5);
27 assert(p1.second == 6);
  /external/chromium/base/
bind.h 43 template <typename Sig, typename P1>
44 internal::InvokerStorageHolder<internal::InvokerStorage1<Sig,P1> >
45 Bind(Sig f, const P1& p1) {
47 new internal::InvokerStorage1<Sig, P1>(
48 f, p1));
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)
    [all...]
  /external/webrtc/src/system_wrappers/interface/
ref_count.h 51 template<typename P1, typename P2>
52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {}
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) {
    [all...]
  /external/clang/test/Misc/
diagnostic-crash.cpp 17 template <bool del, class R, class T, class P1, class P2, class A1>
20 template <bool del, class T, class P1, class P2, class A1>
21 class AAAAAAAResultCallback_2_1< del, void, T, P1, P2, A1> :
26 template <class T1, class T2, class R, class P1, class P2, class A1>
27 inline typename AAAAAAAResultCallback_2_1<true, R, T1, P1, P2, A1>::base*
28 NewCallback(T1* obj, R(T2::* member)(P1, P2, A1), const P1& p1, const P2& p2) {}
  /external/clang/test/Modules/Inputs/
category_left_sub.h 1 @interface Foo(LeftSub) <P1>
redecl-merge-top.h 9 @protocol P1;
category_top.h 16 @protocol P1
redecl-merge-bottom.h 14 @protocol P1;
  /external/libgsm/src/
gsm_destroy.c 23 void gsm_destroy P1((S), gsm S)
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
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 MP3>
129 typedef CCThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> CCThreadTaskImpl
    [all...]
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 MP3>
129 typedef MainThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> MainThreadTaskImpl
    [all...]
  /external/webkit/Source/WebCore/fileapi/
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 MP3>
136 typedef FileThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> FileThreadTaskImpl
    [all...]
  /external/clang/test/Index/
complete-properties.m 48 @protocol P1
52 @class P1;
54 @interface I5<P1>
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
HandleMessage.h 16 template<typename C, typename MF, typename P1>
17 void callMemberFunction(const Arguments1<P1>& args, C* object, MF function)
22 template<typename C, typename MF, typename P1, typename P2>
23 void callMemberFunction(const Arguments2<P1, P2>& args, C* object, MF function)
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)
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)
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
    [all...]

Completed in 468 milliseconds

1 2 3 4