Home
last modified time | relevance | path

Searched defs:p1 (Results 1 – 25 of 1793) sorted by relevance

12345678910>>...72

/third_party/boost/libs/gil/test/core/point/
Dpoint.cpp34 gil::point<int> p1{1, 2}; in test_copy_constructor() local
42 gil::point<int> p1{1, 2}; in test_copy_assignment_operator() local
58 gil::point<int> p1{1, 1}; in test_addition_operator() local
67 gil::point<int> p1{1, 1}; in test_addition_assignment_operator() local
76 gil::point<int> p1{2, 4}; in test_subtraction_assignment_operator() local
85 gil::point<int> p1{2, 4}; in test_subtraction_operator() local
94 gil::point<int> p1{2, 4}; in test_unary_minus_operator() local
106 gil::point<int> p1{2, 4}; in test_division_assignment_operator() local
117 gil::point<int> p1{2, 4}; in test_division_assignment_operator() local
129 gil::point<int> p1{2, 4}; in test_multiplication_operator() local
[all …]
/third_party/boost/libs/smart_ptr/test/
Dpointer_cast_test2.cpp40 std::unique_ptr<int> p1( new int ); in test_static_cast() local
50 std::unique_ptr<int> p1( new int ); in test_static_cast() local
60 std::unique_ptr<int[]> p1( new int[ 1 ] ); in test_static_cast() local
70 std::unique_ptr<int[]> p1( new int[ 1 ] ); in test_static_cast() local
80 std::unique_ptr<D1> p1( new D1 ); in test_static_cast() local
98 std::unique_ptr<int> p1( new int ); in test_const_cast() local
113 std::unique_ptr<int[]> p1( new int[ 1 ] ); in test_const_cast() local
149 std::unique_ptr<D2> p1( new D2 ); in test_dynamic_cast() local
159 std::unique_ptr<B2> p1( new D2 ); in test_dynamic_cast() local
169 std::unique_ptr<B2> p1( new B2 ); in test_dynamic_cast() local
[all …]
Dlocal_sp_test.cpp344 boost::local_shared_ptr<T> p1; in empty_copy_test() local
370 template<class T, class U> static void test_nonempty_copy( boost::local_shared_ptr<U> const & p1 ) in test_nonempty_copy()
387 boost::local_shared_ptr<T> p1( static_cast<T*>(0) ); in null_copy_test() local
401 boost::local_shared_ptr<T> p1( new T() ); in new_copy_test() local
459 template<class T, class U> static void test_nonempty_move( boost::local_shared_ptr<U> && p1 ) in test_nonempty_move()
526 template<class T, class U> void test_aliasing_( boost::local_shared_ptr<T> const & p1, U * p2 ) in test_aliasing_()
538 boost::local_shared_ptr<T> p1; in test_01_aliasing_() local
558 boost::local_shared_ptr<T> p1( new T() ); in test_10_aliasing_() local
588 boost::local_shared_ptr<T> p1( new T() ); in test_11_aliasing_() local
659 boost::shared_ptr<T> p1; in empty_shared_ptr_copy_test() local
[all …]
/third_party/json/test/src/
Dunit-pointer_access.cpp43 test_type* p1 = value.get_ptr<test_type*>(); variable
72 test_type* p1 = value.get_ptr<test_type*>(); variable
101 test_type* p1 = value.get_ptr<test_type*>(); variable
130 test_type* p1 = value.get_ptr<test_type*>(); variable
159 test_type* p1 = value.get_ptr<test_type*>(); variable
188 test_type* p1 = value.get_ptr<test_type*>(); variable
217 test_type* p1 = value.get_ptr<test_type*>(); variable
246 test_type* p1 = value.get_ptr<test_type*>(); variable
275 test_type* p1 = value.get_ptr<test_type*>(); variable
304 test_type* p1 = value.get_ptr<test_type*>(); variable
[all …]
Dunit-reference_access.cpp59 test_type& p1 = value.get_ref<test_type&>(); variable
109 test_type& p1 = value.get_ref<test_type&>(); variable
145 test_type& p1 = value.get_ref<test_type&>(); variable
181 test_type& p1 = value.get_ref<test_type&>(); variable
217 test_type& p1 = value.get_ref<test_type&>(); variable
253 test_type& p1 = value.get_ref<test_type&>(); variable
289 test_type& p1 = value.get_ref<test_type&>(); variable
/third_party/typescript/tests/cases/compiler/
DincompatibleTypes.ts2 p1(): number; method
6 public p1() { method in C1
12 p1(s:string): number; method
16 public p1(n:number) { method in C2
22 p1: string; property
26 public p1: number; property in C3
30 p1: { a: { a: string; }; b: string; }; property
34 public p1: { c: { b: string; }; d: string; }; property in C4
DclassUpdateTests.ts5 public p1 = 0; property in A
11 public p1 = 0; property in B
19 constructor(public p1=0, private p2=0, p3=0) {} property in C
30 public p1 = 0; property in E
38 public p1 = 0; property in G
51 constructor(public p1:number) { property in J
57 constructor(public p1:number) { // ERROR property in K
64 constructor(private p1:number) { property in L
70 constructor(private p1:number) { // ERROR property in M
80 public p1 = 0; property in N
/third_party/boost/libs/fiber/test/
Dtest_promise_dispatch.cpp88 boost::fibers::promise< int > p1; in test_promise_create() local
97 boost::fibers::promise< int& > p1; in test_promise_create_ref() local
106 boost::fibers::promise< void > p1; in test_promise_create_void() local
114 boost::fibers::promise< int > p1; in test_promise_move() local
124 boost::fibers::promise< int& > p1; in test_promise_move_ref() local
134 boost::fibers::promise< void > p1; in test_promise_move_void() local
144 boost::fibers::promise< int > p1; in test_promise_swap() local
154 boost::fibers::promise< int& > p1; in test_promise_swap_ref() local
164 boost::fibers::promise< void > p1; in test_promise_swap_void() local
174 boost::fibers::promise< int > p1; in test_promise_get_future() local
[all …]
Dtest_promise_post.cpp88 boost::fibers::promise< int > p1; in test_promise_create() local
97 boost::fibers::promise< int& > p1; in test_promise_create_ref() local
106 boost::fibers::promise< void > p1; in test_promise_create_void() local
114 boost::fibers::promise< int > p1; in test_promise_move() local
124 boost::fibers::promise< int& > p1; in test_promise_move_ref() local
134 boost::fibers::promise< void > p1; in test_promise_move_void() local
144 boost::fibers::promise< int > p1; in test_promise_swap() local
154 boost::fibers::promise< int& > p1; in test_promise_swap_ref() local
164 boost::fibers::promise< void > p1; in test_promise_swap_void() local
174 boost::fibers::promise< int > p1; in test_promise_get_future() local
[all …]
Dtest_shared_future_dispatch.cpp166 boost::fibers::promise< int > p1; in test_shared_future_get() local
194 boost::fibers::promise< A > p1; in test_shared_future_get_move() local
223 boost::fibers::promise< int& > p1; in test_shared_future_get_ref() local
254 boost::fibers::promise< void > p1; in test_shared_future_get_void() local
282 boost::fibers::promise< int > p1; in test_future_share() local
303 boost::fibers::promise< int& > p1; in test_future_share_ref() local
324 boost::fibers::promise< void > p1; in test_future_share_void() local
343 boost::fibers::promise< int > p1; in test_shared_future_wait() local
354 boost::fibers::promise< int& > p1; in test_shared_future_wait_ref() local
367 boost::fibers::promise< void > p1; in test_shared_future_wait_void() local
[all …]
Dtest_shared_future_post.cpp166 boost::fibers::promise< int > p1; in test_shared_future_get() local
194 boost::fibers::promise< A > p1; in test_shared_future_get_move() local
223 boost::fibers::promise< int& > p1; in test_shared_future_get_ref() local
254 boost::fibers::promise< void > p1; in test_shared_future_get_void() local
282 boost::fibers::promise< int > p1; in test_future_share() local
303 boost::fibers::promise< int& > p1; in test_future_share_ref() local
324 boost::fibers::promise< void > p1; in test_future_share_void() local
343 boost::fibers::promise< int > p1; in test_shared_future_wait() local
354 boost::fibers::promise< int& > p1; in test_shared_future_wait_ref() local
367 boost::fibers::promise< void > p1; in test_shared_future_wait_void() local
[all …]
Dtest_future_post.cpp142 boost::fibers::promise< int > p1; in test_future_move() local
159 boost::fibers::promise< int& > p1; in test_future_move_ref() local
176 boost::fibers::promise< void > p1; in test_future_move_void() local
193 boost::fibers::promise< int > p1; in test_future_get() local
221 boost::fibers::promise< A > p1; in test_future_get_move() local
250 boost::fibers::promise< int& > p1; in test_future_get_ref() local
281 boost::fibers::promise< void > p1; in test_future_get_void() local
309 boost::fibers::promise< int > p1; in test_future_share() local
330 boost::fibers::promise< int& > p1; in test_future_share_ref() local
351 boost::fibers::promise< void > p1; in test_future_share_void() local
[all …]
Dtest_future_dispatch.cpp142 boost::fibers::promise< int > p1; in test_future_move() local
159 boost::fibers::promise< int& > p1; in test_future_move_ref() local
176 boost::fibers::promise< void > p1; in test_future_move_void() local
193 boost::fibers::promise< int > p1; in test_future_get() local
221 boost::fibers::promise< A > p1; in test_future_get_move() local
250 boost::fibers::promise< int& > p1; in test_future_get_ref() local
281 boost::fibers::promise< void > p1; in test_future_get_void() local
309 boost::fibers::promise< int > p1; in test_future_share() local
330 boost::fibers::promise< int& > p1; in test_future_share_ref() local
351 boost::fibers::promise< void > p1; in test_future_share_void() local
[all …]
/third_party/boost/libs/gil/test/core/pixel/
Dpacked_pixel.cpp86 fixture::packed_pixel_gray3 p1{int{5}}; in test_packed_pixel_gray3_assignment() local
94 fixture::packed_pixel_gray3 p1{int{5}}; in test_packed_pixel_gray3_equality() local
105 fixture::packed_pixel_gray3 p1; // default-initialized in test_packed_pixel_gray3_assignment_gray_channel() local
111 fixture::packed_pixel_gray3 p1{0}; // value-initialized in test_packed_pixel_gray3_assignment_gray_channel() local
119 fixture::packed_pixel_gray3 p1{int{3}}; in test_packed_pixel_gray3_equality_gray_channel() local
204 fixture::packed_pixel_bgr121 p1{0, 3, 1}; in test_packed_pixel_bgr121_assignment() local
212 fixture::packed_pixel_bgr121 p1{1, 3, 0}; in test_packed_pixel_bgr121_equality() local
305 fixture::packed_pixel_rgb535 p1{31, 7, 31}; in test_packed_pixel_rgb535_assignment() local
313 fixture::packed_pixel_rgb535 p1{7, 3, 7}; in test_packed_pixel_rgb535_equality() local
/third_party/boost/libs/bind/test/
Dbind_function_ap_test.cpp38 void fv1( std::auto_ptr<int> p1 ) in fv1()
43 void fv2( std::auto_ptr<int> p1, std::auto_ptr<int> p2 ) in fv2()
49 void fv3( std::auto_ptr<int> p1, std::auto_ptr<int> p2, std::auto_ptr<int> p3 ) in fv3()
56 void fv4( std::auto_ptr<int> p1, std::auto_ptr<int> p2, std::auto_ptr<int> p3, std::auto_ptr<int> p… in fv4()
64 void fv5( std::auto_ptr<int> p1, std::auto_ptr<int> p2, std::auto_ptr<int> p3, std::auto_ptr<int> p… in fv5()
73 void fv6( std::auto_ptr<int> p1, std::auto_ptr<int> p2, std::auto_ptr<int> p3, std::auto_ptr<int> p… in fv6()
83 void fv7( std::auto_ptr<int> p1, std::auto_ptr<int> p2, std::auto_ptr<int> p3, std::auto_ptr<int> p… in fv7()
94 void fv8( std::auto_ptr<int> p1, std::auto_ptr<int> p2, std::auto_ptr<int> p3, std::auto_ptr<int> p… in fv8()
106 void fv9( std::auto_ptr<int> p1, std::auto_ptr<int> p2, std::auto_ptr<int> p3, std::auto_ptr<int> p… in fv9()
124 std::auto_ptr<int> p1( new int(1) ); in test() local
[all …]
Dbind_unique_ptr_test.cpp29 void fv1( std::unique_ptr<int> p1 ) in fv1()
34 void fv2( std::unique_ptr<int> p1, std::unique_ptr<int> p2 ) in fv2()
40 void fv3( std::unique_ptr<int> p1, std::unique_ptr<int> p2, std::unique_ptr<int> p3 ) in fv3()
47 void fv4( std::unique_ptr<int> p1, std::unique_ptr<int> p2, std::unique_ptr<int> p3, std::unique_pt… in fv4()
55 void fv5( std::unique_ptr<int> p1, std::unique_ptr<int> p2, std::unique_ptr<int> p3, std::unique_pt… in fv5()
64 void fv6( std::unique_ptr<int> p1, std::unique_ptr<int> p2, std::unique_ptr<int> p3, std::unique_pt… in fv6()
74 void fv7( std::unique_ptr<int> p1, std::unique_ptr<int> p2, std::unique_ptr<int> p3, std::unique_pt… in fv7()
85 void fv8( std::unique_ptr<int> p1, std::unique_ptr<int> p2, std::unique_ptr<int> p3, std::unique_pt… in fv8()
97 void fv9( std::unique_ptr<int> p1, std::unique_ptr<int> p2, std::unique_ptr<int> p3, std::unique_pt… in fv9()
113 std::unique_ptr<int> p1( new int(1) ); in test() local
[all …]
/third_party/boost/boost/preprocessor/repetition/
Denum_trailing_binary_params.hpp24 # define BOOST_PP_ENUM_TRAILING_BINARY_PARAMS(count, p1, p2) BOOST_PP_REPEAT(count, BOOST_PP_ENU… argument
26 # define BOOST_PP_ENUM_TRAILING_BINARY_PARAMS(count, p1, p2) BOOST_PP_ENUM_TRAILING_BINARY_PARAM… argument
27 # define BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_I(count, p1, p2) BOOST_PP_REPEAT(count, BOOST_PP_E… argument
38 # define BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_M_I(z, n, p1, p2) BOOST_PP_ENUM_TRAILING_BINARY_PA… argument
39 # define BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_M_II(z, n, p1, p2) , p1 ## n p2 ## n argument
41 # define BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_M_I(z, n, p1, p2) , BOOST_PP_CAT(p1, n) BOOST_PP_C… argument
47 # define BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z(z, count, p1, p2) BOOST_PP_REPEAT_ ## z(count, B… argument
49 # define BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z(z, count, p1, p2) BOOST_PP_ENUM_TRAILING_BINARY_… argument
50 # define BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z_I(z, count, p1, p2) BOOST_PP_REPEAT_ ## z(count,… argument
Denum_binary_params.hpp25 # define BOOST_PP_ENUM_BINARY_PARAMS(count, p1, p2) BOOST_PP_REPEAT(count, BOOST_PP_ENUM_BINARY_… argument
27 # define BOOST_PP_ENUM_BINARY_PARAMS(count, p1, p2) BOOST_PP_ENUM_BINARY_PARAMS_I(count, p1, p2) argument
28 # define BOOST_PP_ENUM_BINARY_PARAMS_I(count, p1, p2) BOOST_PP_REPEAT(count, BOOST_PP_ENUM_BINAR… argument
39 # define BOOST_PP_ENUM_BINARY_PARAMS_M_I(z, n, p1, p2) BOOST_PP_ENUM_BINARY_PARAMS_M_II(z, n, p1… argument
40 # define BOOST_PP_ENUM_BINARY_PARAMS_M_II(z, n, p1, p2) BOOST_PP_COMMA_IF(n) p1 ## n p2 ## n argument
42 # define BOOST_PP_ENUM_BINARY_PARAMS_M_I(z, n, p1, p2) BOOST_PP_COMMA_IF(n) BOOST_PP_CAT(p1, n) … argument
48 # define BOOST_PP_ENUM_BINARY_PARAMS_Z(z, count, p1, p2) BOOST_PP_REPEAT_ ## z(count, BOOST_PP_E… argument
50 # define BOOST_PP_ENUM_BINARY_PARAMS_Z(z, count, p1, p2) BOOST_PP_ENUM_BINARY_PARAMS_Z_I(z, coun… argument
51 # define BOOST_PP_ENUM_BINARY_PARAMS_Z_I(z, count, p1, p2) BOOST_PP_REPEAT_ ## z(count, BOOST_PP… argument
Denum_shifted_binary_params.hpp27 # define BOOST_PP_ENUM_SHIFTED_BINARY_PARAMS(count, p1, p2) BOOST_PP_REPEAT(BOOST_PP_DEC(count),… argument
29 # define BOOST_PP_ENUM_SHIFTED_BINARY_PARAMS(count, p1, p2) BOOST_PP_ENUM_SHIFTED_BINARY_PARAMS_… argument
30 # define BOOST_PP_ENUM_SHIFTED_BINARY_PARAMS_I(count, p1, p2) BOOST_PP_REPEAT(BOOST_PP_DEC(count… argument
40 # define BOOST_PP_ENUM_SHIFTED_BINARY_PARAMS_M_I(z, n, p1, p2) BOOST_PP_COMMA_IF(n) BOOST_PP_CAT(p1… argument
45 # define BOOST_PP_ENUM_SHIFTED_BINARY_PARAMS_Z(z, count, p1, p2) BOOST_PP_REPEAT_ ## z(BOOST_PP_… argument
47 # define BOOST_PP_ENUM_SHIFTED_BINARY_PARAMS_Z(z, count, p1, p2) BOOST_PP_ENUM_SHIFTED_BINARY_PA… argument
48 # define BOOST_PP_ENUM_SHIFTED_BINARY_PARAMS_Z_I(z, count, p1, p2) BOOST_PP_REPEAT_ ## z(BOOST_P… argument
/third_party/boost/boost/multi_index/detail/
Dscope_guard.hpp163 scope_guard_impl1(F fun,P1 p1):fun_(fun),p1_(p1){} in scope_guard_impl1()
173 inline scope_guard_impl1<F,P1> make_guard(F fun,P1 p1) in make_guard()
180 make_guard_if_c(F fun,P1 p1) in make_guard_if_c()
187 make_guard_if(F fun,P1 p1) in make_guard_if()
196 scope_guard_impl2(F fun,P1 p1,P2 p2):fun_(fun),p1_(p1),p2_(p2){} in scope_guard_impl2()
207 inline scope_guard_impl2<F,P1,P2> make_guard(F fun,P1 p1,P2 p2) in make_guard()
214 make_guard_if_c(F fun,P1 p1,P2 p2) in make_guard_if_c()
221 make_guard_if(F fun,P1 p1,P2 p2) in make_guard_if()
230 scope_guard_impl3(F fun,P1 p1,P2 p2,P3 p3):fun_(fun),p1_(p1),p2_(p2),p3_(p3){} in scope_guard_impl3()
242 inline scope_guard_impl3<F,P1,P2,P3> make_guard(F fun,P1 p1,P2 p2,P3 p3) in make_guard()
[all …]
/third_party/boost/libs/geometry/test/arithmetic/
Dgeneral.cpp35 P p1; in BOOST_GEOMETRY_REGISTER_BOOST_TUPLE_CS() local
52 P p1; in test_subtraction() local
69 P p1; in test_multiplication() local
86 P p1; in test_division() local
103 P p1; in test_assign() local
/third_party/typescript/tests/baselines/reference/
DexcessPropertyCheckWithMultipleDiscriminants.js36 type DisjointDiscriminants = { p1: 'left'; p2: true; p3: number } | { p1: 'right'; p2: false; p4: s… property
40 p1: 'left', property
48 p1: 'left', property
56 p1: 'right', property
73 p1: 'left', property
80 p1: 'left', property
87 p1: 'right', property
/third_party/libpng/
Dpngdebug.h63 # define png_debug1(l,m,p1) _RPT1(_CRT_WARN,m PNG_STRING_NEWLINE,p1) argument
66 # define png_debug2(l,m,p1,p2) \ argument
89 # define png_debug1(l,m,p1) \ argument
97 # define png_debug2(l,m,p1,p2) \ argument
117 # define png_debug1(l,m,p1) \ argument
128 # define png_debug2(l,m,p1,p2) \ argument
148 # define png_debug1(l, m, p1) ((void)0) argument
151 # define png_debug2(l, m, p1, p2) ((void)0) argument
/third_party/flutter/skia/third_party/externals/libpng/
Dpngdebug.h63 # define png_debug1(l,m,p1) _RPT1(_CRT_WARN,m PNG_STRING_NEWLINE,p1) argument
66 # define png_debug2(l,m,p1,p2) \ argument
89 # define png_debug1(l,m,p1) \ argument
97 # define png_debug2(l,m,p1,p2) \ argument
117 # define png_debug1(l,m,p1) \ argument
128 # define png_debug2(l,m,p1,p2) \ argument
148 # define png_debug1(l, m, p1) ((void)0) argument
151 # define png_debug2(l, m, p1, p2) ((void)0) argument
/third_party/skia/third_party/externals/libpng/
Dpngdebug.h63 # define png_debug1(l,m,p1) _RPT1(_CRT_WARN,m PNG_STRING_NEWLINE,p1) argument
66 # define png_debug2(l,m,p1,p2) \ argument
89 # define png_debug1(l,m,p1) \ argument
97 # define png_debug2(l,m,p1,p2) \ argument
117 # define png_debug1(l,m,p1) \ argument
128 # define png_debug2(l,m,p1,p2) \ argument
148 # define png_debug1(l, m, p1) ((void)0) argument
151 # define png_debug2(l, m, p1, p2) ((void)0) argument

12345678910>>...72