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

1 2 3 4 5 6

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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++/libcxx/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++/libcxx/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/chromium_org/third_party/libjingle/source/talk/base/
bind.h 109 class P1>
113 P1 p1)
115 p1_(p1) {}
121 P1 p1_;
124 #define FP_T(x) R (ObjectT::*x)(P1)
127 class P1>
128 MethodFunctor1<ObjectT, FP_T(NONAME), R, P1>
130 typename detail::identity<P1>::type p1) {
176 typename detail::identity<P1>::type p1, member in namespace:talk_base
190 typename detail::identity<P1>::type p1, member in namespace:talk_base
230 typename detail::identity<P1>::type p1, member in namespace:talk_base
246 typename detail::identity<P1>::type p1, member in namespace:talk_base
292 typename detail::identity<P1>::type p1, member in namespace:talk_base
310 typename detail::identity<P1>::type p1, member in namespace:talk_base
362 typename detail::identity<P1>::type p1, member in namespace:talk_base
382 typename detail::identity<P1>::type p1, member in namespace:talk_base
    [all...]
refcount.h 56 template<typename P1, typename P2>
57 RefCountedObject(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {
60 template<typename P1, typename P2, typename P3>
61 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {
64 template<typename P1, typename P2, typename P3, typename P4>
65 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4
    [all...]
  /external/clang/test/Analysis/
region-store.cpp 7 class P1 {
22 class Derived: public P1, public P2 {
  /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/chromium_org/ppapi/shared_impl/
thread_aware_callback.h 74 template <class P1>
75 void RunOnTargetThread(const P1& p1) {
76 InternalRunOnTargetThread(base::Bind(func_, p1));
79 template <class P1, class P2>
80 void RunOnTargetThread(const P1& p1, const P2& p2) {
81 InternalRunOnTargetThread(base::Bind(func_, p1, p2));
84 template <class P1, class P2, class P3>
85 void RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3)
    [all...]
proxy_lock.h 95 template <class ReturnType, class P1>
96 ReturnType CallWhileUnlocked(ReturnType (*function)(P1), const P1& p1) {
98 return function(p1);
100 template <class ReturnType, class P1, class P2>
101 ReturnType CallWhileUnlocked(ReturnType (*function)(P1, P2),
102 const P1& p1,
105 return function(p1, p2)
    [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;
  /external/libgsm/src/
gsm_destroy.c 23 void gsm_destroy P1((S), gsm S)
  /external/chromium_org/third_party/WebKit/Source/wtf/
Functional.h 66 template<typename R, typename P1>
67 class FunctionWrapper<R (*)(P1)> {
71 explicit FunctionWrapper(R (*function)(P1))
76 R operator()(P1 p1)
78 return m_function(p1);
82 R (*m_function)(P1);
85 template<typename R, typename P1, typename P2>
86 class FunctionWrapper<R (*)(P1, P2)> {
90 explicit FunctionWrapper(R (*function)(P1, P2)
    [all...]
  /external/clang/test/Index/
complete-properties.m 48 @protocol P1
52 @class P1;
54 @interface I5<P1>

Completed in 443 milliseconds

1 2 3 4 5 6