/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/ |
D | result_type.pass.cpp | 30 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 ()()
|
D | eval.pass.cpp | 28 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/ |
D | result_type.pass.cpp | 30 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 ()()
|
D | eval.pass.cpp | 28 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/ |
D | gtest_prod_test.cc | 41 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()
|
D | production.h | 49 int x() const { return x_; } in x() 51 void set_x(int an_x) { x_ = an_x; } in set_x() 52 int x_; variable
|
D | production.cc | 36 PrivateCode::PrivateCode() : x_(0) {} in PrivateCode()
|
D | gtest_unittest.cc | 5042 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/ |
D | foo_with_static_constructor.cpp | 24 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/ |
D | unary.h | 20 double operator()(double x_) const in operator() 21 { return ::sqrt(x_); } in operator()
|
D | func_test.cpp | 27 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()
|
D | ptr2_test.cpp | 35 static int sum(int x_, int y_) in sum() argument 37 return x_ + y_; in sum()
|
/ndk/tests/device/test-stlport/unit/ |
D | unary.h | 20 double operator()(double x_) const in operator() 21 { return ::sqrt(x_); } in operator()
|
D | func_test.cpp | 27 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()
|
D | ptr2_test.cpp | 35 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/ |
D | workaround.hpp | 36 std::ptrdiff_t distance( T const& x_, T const& y_ ) in distance() argument 40 std::distance( x_, y_, res ); in distance()
|