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

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

Completed in 2896 milliseconds