HomeSort by relevance Sort by last modified time
    Searched refs:p2 (Results 26 - 50 of 1664) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
const_pair_U_V.pass.cpp 23 typedef std::pair<double, long> P2;
25 P2 p2 = p1; local
26 assert(p2.first == 3);
27 assert(p2.second == 4);
33 typedef std::pair<double, long> P2;
35 constexpr P2 p2 = p1; local
36 static_assert(p2.first == 3, "");
37 static_assert(p2.second == 4, "")
    [all...]
copy_ctor.pass.cpp 24 P1 p2 = p1; local
25 assert(p2.first == 3);
26 assert(p2.second == 4);
35 constexpr P1 p2 = p1; local
36 static_assert(p2.first == 3, "");
37 static_assert(p2.second == 4, "");
  /external/libcxx/test/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/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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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/chromium_org/third_party/icu/source/test/perf/ubrkperf/
UBrkPerf_r.pl 43 my $p2; # Latest
47 $p2 = $ICUPathLatest."/ubrkperf/$WindowsPlatform/Release/ubrkperf.exe";
50 $p2 = $ICUPathLatest."/ubrkperf/ubrkperf";
72 "TestForwardChar", ["$p1 $m1 TestICUForward", "$p2 $m1 TestICUForward"],
73 "TestForwardWord", ["$p1 $m2 TestICUForward", "$p2 $m2 TestICUForward"],
74 "TestForwardLine", ["$p1 $m3 TestICUForward", "$p2 $m3 TestICUForward"],
75 "TestForwardSentence", ["$p1 $m4 TestICUForward", "$p2 $m4 TestICUForward"],
77 "TestIsBoundChar", ["$p1 $m1 TestICUIsBound", "$p2 $m1 TestICUIsBound"],
78 "TestIsBoundWord", ["$p1 $m2 TestICUIsBound", "$p2 $m2 TestICUIsBound"],
79 "TestIsBoundLine", ["$p1 $m3 TestICUIsBound", "$p2 $m3 TestICUIsBound"]
    [all...]
  /external/icu/icu4c/source/test/perf/ubrkperf/
UBrkPerf_r.pl 43 my $p2; # Latest
47 $p2 = "cd ".$ICULatest."/bin && ".$ICUPathLatest."/ubrkperf/$WindowsPlatform/Release/ubrkperf.exe";
50 $p2 = "LD_LIBRARY_PATH=".$ICULatest."/source/lib:".$ICULatest."/source/tools/ctestfw ".$ICUPathLatest."/ubrkperf/ubrkperf";
82 "TestForwardChar", ["$p1,$m1,TestICUForward", "$p2,$m1,TestICUForward"],
83 "TestForwardWord", ["$p1,$m2,TestICUForward", "$p2,$m2,TestICUForward"],
84 "TestForwardLine", ["$p1,$m3,TestICUForward", "$p2,$m3,TestICUForward"],
85 "TestForwardSentence", ["$p1,$m4,TestICUForward", "$p2,$m4,TestICUForward"],
87 "TestIsBoundChar", ["$p1,$m1,TestICUIsBound", "$p2,$m1,TestICUIsBound"],
88 "TestIsBoundWord", ["$p1,$m2,TestICUIsBound", "$p2,$m2,TestICUIsBound"],
89 "TestIsBoundLine", ["$p1,$m3,TestICUIsBound", "$p2,$m3,TestICUIsBound"]
    [all...]
  /art/test/300-package-override/src/p2/
DerivedClass.java 17 package p2; package
  /external/jdiff/src/jdiff/
ComparePkgPdiffs.java 18 PackageDiff p2 = (PackageDiff)obj2; local
19 if (p1.pdiff < p2.pdiff)
21 if (p1.pdiff > p2.pdiff)
23 return p1.name_.compareTo(p2.name_);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/
param_eq.pass.cpp 26 param_type p2(0.75);
27 assert(p1 == p2);
33 param_type p2(0.5);
34 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
param_eq.pass.cpp 27 param_type p2(3, 0.75);
28 assert(p1 == p2);
34 param_type p2(3, 0.5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/
param_eq.pass.cpp 27 param_type p2(0.75);
28 assert(p1 == p2);
34 param_type p2(0.5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/
param_eq.pass.cpp 27 param_type p2(3, 0.75);
28 assert(p1 == p2);
34 param_type p2(3, 0.5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/
param_eq.pass.cpp 27 param_type p2(0.75, .5);
28 assert(p1 == p2);
34 param_type p2(0.5, .5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/
param_eq.pass.cpp 27 param_type p2(0.75);
28 assert(p1 == p2);
34 param_type p2(0.5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/
param_eq.pass.cpp 27 param_type p2(0.75, .5);
28 assert(p1 == p2);
34 param_type p2(0.5, .5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
param_eq.pass.cpp 27 param_type p2(0.75, .5);
28 assert(p1 == p2);
34 param_type p2(0.5, .5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/
param_eq.pass.cpp 27 param_type p2(0.75, .5);
28 assert(p1 == p2);
34 param_type p2(0.5, .5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/
param_eq.pass.cpp 27 param_type p2(0.75);
28 assert(p1 == p2);
34 param_type p2(0.5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/
param_eq.pass.cpp 27 param_type p2(0.75);
28 assert(p1 == p2);
34 param_type p2(0.5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/
param_eq.pass.cpp 27 param_type p2(0.75, .5);
28 assert(p1 == p2);
34 param_type p2(0.5, .5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/
param_eq.pass.cpp 27 param_type p2(0.75, .5);
28 assert(p1 == p2);
34 param_type p2(0.5, .5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/
param_eq.pass.cpp 27 param_type p2(0.75);
28 assert(p1 == p2);
34 param_type p2(0.5);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/
param_eq.pass.cpp 27 param_type p2(0.75, .5);
28 assert(p1 == p2);
34 param_type p2(0.5, .5);
35 assert(p1 != p2);

Completed in 391 milliseconds

12 3 4 5 6 7 8 91011>>