OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:p2
(Results
26 - 50
of
1379
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
unique.pass.cpp
24
std::shared_ptr<int>
p2
= p;
local
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
owner_before_shared_ptr.pass.cpp
22
const std::shared_ptr<int>
p2
= p1;
local
25
const std::weak_ptr<int> w2(
p2
);
27
assert(!w1.owner_before(
p2
));
30
assert(w3.owner_before(p1) == w3.owner_before(
p2
));
owner_before_weak_ptr.pass.cpp
22
const std::shared_ptr<int>
p2
= p1;
local
25
const std::weak_ptr<int> w2(
p2
);
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
owner_before_shared_ptr.pass.cpp
22
const std::shared_ptr<int>
p2
= p1;
local
24
assert(!p1.owner_before(
p2
));
25
assert(!
p2
.owner_before(p1));
27
assert(p3.owner_before(p1) == p3.owner_before(
p2
));
owner_before_weak_ptr.pass.cpp
22
const std::shared_ptr<int>
p2
= p1;
local
25
const std::weak_ptr<int> w2(
p2
);
28
assert(!
p2
.owner_before(w1));
unique.pass.cpp
24
std::shared_ptr<int>
p2
= p;
local
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
owner_before_shared_ptr.pass.cpp
22
const std::shared_ptr<int>
p2
= p1;
local
25
const std::weak_ptr<int> w2(
p2
);
27
assert(!w1.owner_before(
p2
));
30
assert(w3.owner_before(p1) == w3.owner_before(
p2
));
owner_before_weak_ptr.pass.cpp
22
const std::shared_ptr<int>
p2
= p1;
local
25
const std::weak_ptr<int> w2(
p2
);
/art/test/300-package-override/src/p2/
DerivedClass.java
17
package
p2
;
package
DerivedClass2.java
17
package
p2
;
package
20
public class DerivedClass2 extends
p2
.DerivedClass {
/device/google/contexthub/firmware/lib/libc/
memcmp.c
45
const unsigned char *p1 = s1, *
p2
= s2;
local
48
if (*p1++ != *
p2
++)
49
return (*--p1 - *--
p2
);
/external/compiler-rt/test/asan/TestCases/
atexit_stats.cc
14
int *
p2
= (int*)malloc(90000);
variable
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/
release.pass.cpp
29
A*
p2
= ap.release();
local
30
assert(
p2
== p);
reset.pass.cpp
45
A*
p2
= new A(2);
local
46
ap.reset(
p2
);
47
assert(ap.get() ==
p2
);
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.assign/
copy.pass.cpp
32
path
p2
;
local
33
path& pref = (
p2
= p);
35
assert(
p2
.native() == s);
36
assert(&pref == &
p2
);
move.pass.cpp
37
path
p2
;
local
38
path& pref = (
p2
= std::move(p));
39
assert(
p2
.native() == s);
41
assert(&pref == &
p2
);
/external/libcxx/test/std/language.support/support.exception/propagation/
exception_ptr.pass.cpp
23
std::exception_ptr
p2
= p;
local
26
assert(
p2
== p);
27
p2
= p;
28
assert(
p2
== p);
29
assert(
p2
== nullptr);
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.create/
make_unique.single.pass.cpp
25
std::unique_ptr<std::string>
p2
= std::make_unique<std::string> ( "Meow!" );
local
26
assert ( *
p2
== "Meow!" );
27
p2
= std::make_unique<std::string> ();
28
assert ( *
p2
== "" );
29
p2
= std::make_unique<std::string> ( 6, 'z' );
30
assert ( *
p2
== "zzzzzz" );
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.special/
cmp_nullptr.pass.cpp
58
const std::unique_ptr<int>
p2
;
local
59
assert( (
p2
== nullptr));
60
assert( (nullptr ==
p2
));
61
assert(!(
p2
< nullptr));
62
assert(!(nullptr <
p2
));
63
assert( (
p2
<= nullptr));
64
assert( (nullptr <=
p2
));
65
assert(!(
p2
> nullptr));
66
assert(!(nullptr >
p2
));
67
assert( (
p2
>= nullptr))
[
all
...]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/
cmp_nullptr.pass.cpp
58
const std::shared_ptr<int>
p2
;
local
59
assert( (
p2
== nullptr));
60
assert( (nullptr ==
p2
));
61
assert(!(
p2
< nullptr));
62
assert(!(nullptr <
p2
));
63
assert( (
p2
<= nullptr));
64
assert( (nullptr <=
p2
));
65
assert(!(
p2
> nullptr));
66
assert(!(nullptr >
p2
));
67
assert( (
p2
>= nullptr))
[
all
...]
/external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
assign_const_pair_U_V.pass.cpp
23
typedef std::pair<double, long>
P2
;
25
P2
p2
;
local
26
p2
= p1;
27
assert(
p2
.first == 3);
28
assert(
p2
.second == 4);
const_pair_U_V_cxx03.pass.cpp
23
typedef std::pair<double, long>
P2
;
25
const
P2
p2
= p1;
local
26
assert(
p2
.first == 3);
27
assert(
p2
.second == 4);
copy_ctor.pass.cpp
26
P1
p2
= p1;
local
27
assert(
p2
.first == 3);
28
assert(
p2
.second == 4);
34
constexpr P1
p2
= p1;
local
35
static_assert(
p2
.first == 3, "");
36
static_assert(
p2
.second == 4, "");
move_ctor.pass.cpp
35
P1
p2
= std::move(p1);
local
36
assert(
p2
.first == 3);
37
assert(
p2
.second == 4);
/external/openssh/openbsd-compat/
timingsafe_bcmp.c
26
const unsigned char *p1 = b1, *
p2
= b2;
local
30
ret |= *p1++ ^ *
p2
++;
Completed in 949 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>