Home
last modified time | relevance | path

Searched refs:x_ (Results 1 – 16 of 16) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
Dresult_type.pass.cpp30 result_type x_; member in rand1
44 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
46 if (x_ < Min) in rand1()
47 x_ = Min; in rand1()
48 if (x_ > Max) in rand1()
49 x_ = Max; in rand1()
54 result_type r = x_; in operator ()()
55 if (x_ < Max) in operator ()()
56 ++x_; in operator ()()
58 x_ = Min; in operator ()()
Deval.pass.cpp28 result_type x_; member in rand1
42 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
44 if (x_ > Max) in rand1()
45 x_ = Max; in rand1()
50 result_type r = x_; in operator ()()
51 if (x_ < Max) in operator ()()
52 ++x_; in operator ()()
54 x_ = Min; in operator ()()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
Dresult_type.pass.cpp30 result_type x_; member in rand1
44 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
46 if (x_ < Min) in rand1()
47 x_ = Min; in rand1()
48 if (x_ > Max) in rand1()
49 x_ = Max; in rand1()
54 result_type r = x_; in operator ()()
55 if (x_ < Max) in operator ()()
56 ++x_; in operator ()()
58 x_ = Min; in operator ()()
Deval.pass.cpp28 result_type x_; member in rand1
42 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
44 if (x_ > Max) in rand1()
45 x_ = Max; in rand1()
50 result_type r = x_; in operator ()()
51 if (x_ < Max) in operator ()()
52 ++x_; in operator ()()
54 x_ = Min; in operator ()()
/ndk/sources/third_party/googletest/googletest/test/
Dgtest_prod_test.cc41 EXPECT_EQ(0, a.x_); in TEST()
44 EXPECT_EQ(1, a.x_); in TEST()
53 EXPECT_EQ(0, a.x_); in TEST_F()
56 EXPECT_EQ(2, a.x_); in TEST_F()
Dproduction.h49 int x() const { return x_; } in x()
51 void set_x(int an_x) { x_ = an_x; } in set_x()
52 int x_; variable
Dproduction.cc36 PrivateCode::PrivateCode() : x_(0) {} in PrivateCode()
Dgtest_unittest.cc5042 explicit Base(int an_x) : x_(an_x) {} in Base()
5043 int x() const { return x_; } in x()
5045 int x_; member in Base
/ndk/sources/android/crazy_linker/tests/
Dfoo_with_static_constructor.cpp24 x_ = rand(); in A()
40 int Get() const { return x_; } in Get()
43 int x_; member in A
/ndk/tests/device/test-gnustl-full/unit/
Dunary.h20 double operator()(double x_) const in operator()
21 { return ::sqrt(x_); } in operator()
Dfunc_test.cpp27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_) in bigger_than() argument
41 return x_ > y_; in bigger_than()
Dptr2_test.cpp35 static int sum(int x_, int y_) in sum() argument
37 return x_ + y_; in sum()
/ndk/tests/device/test-stlport/unit/
Dunary.h20 double operator()(double x_) const in operator()
21 { return ::sqrt(x_); } in operator()
Dfunc_test.cpp27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_) in bigger_than() argument
41 return x_ > y_; in bigger_than()
Dptr2_test.cpp35 static int sum(int x_, int y_) in sum() argument
37 return x_ + y_; in sum()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/detail/
Dworkaround.hpp36 std::ptrdiff_t distance( T const& x_, T const& y_ ) in distance() argument
40 std::distance( x_, y_, res ); in distance()