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

1 23 4 5 6 7 8 91011>>

  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/
param_eq.pass.cpp 27 param_type p2(5, 10);
28 assert(p1 == p2);
34 param_type p2(6, 10);
35 assert(p1 != p2);
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/
param_eq.pass.cpp 27 param_type p2(5, 10);
28 assert(p1 == p2);
34 param_type p2(6, 10);
35 assert(p1 != p2);
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/
lt.pass.cpp 26 const std::shared_ptr<int> p2(ptr2);
28 assert((p1 < p2) == (ptr1 < ptr2));
29 assert(!(p2 < p3) && !(p3 < p2));
  /external/libcxx/test/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);
assign_rv_pair.pass.cpp 26 P p2; local
27 p2 = std::move(p1);
28 assert(*p2.first == 3);
29 assert(p2.second == 4);
swap.pass.cpp 24 P1 p2(5, 6);
25 p1.swap(p2);
28 assert(p2.first == 3);
29 assert(p2.second == 4);
  /external/libcxx/test/utilities/utility/pairs/pairs.spec/
non_member_swap.pass.cpp 24 P1 p2(5, 6);
25 swap(p1, p2);
28 assert(p2.first == 3);
29 assert(p2.second == 4);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/
param_eq.pass.cpp 27 param_type p2(5, 10);
28 assert(p1 == p2);
34 param_type p2(6, 10);
35 assert(p1 != p2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/
param_eq.pass.cpp 27 param_type p2(5, 10);
28 assert(p1 == p2);
34 param_type p2(6, 10);
35 assert(p1 != p2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/
lt.pass.cpp 26 const std::shared_ptr<int> p2(ptr2);
28 assert((p1 < p2) == (ptr1 < ptr2));
29 assert(!(p2 < p3) && !(p3 < p2));

Completed in 235 milliseconds

1 23 4 5 6 7 8 91011>>