/external/chromium/testing/gtest/test/ |
production.cc | 36 PrivateCode::PrivateCode() : x_(0) {}
|
production.h | 49 int x() const { return x_; } 51 void set_x(int an_x) { x_ = an_x; } 52 int x_; member in class:PrivateCode
|
gtest_prod_test.cc | 41 EXPECT_EQ(0, a.x_); 44 EXPECT_EQ(1, a.x_); 53 EXPECT_EQ(0, a.x_); 56 EXPECT_EQ(2, a.x_);
|
/external/chromium_org/testing/gtest/test/ |
production.cc | 36 PrivateCode::PrivateCode() : x_(0) {}
|
production.h | 49 int x() const { return x_; } 51 void set_x(int an_x) { x_ = an_x; } 52 int x_; member in class:PrivateCode
|
gtest_prod_test.cc | 41 EXPECT_EQ(0, a.x_); 44 EXPECT_EQ(1, a.x_); 53 EXPECT_EQ(0, a.x_); 56 EXPECT_EQ(2, a.x_);
|
/external/gtest/test/ |
production.cc | 36 PrivateCode::PrivateCode() : x_(0) {}
|
production.h | 49 int x() const { return x_; } 51 void set_x(int an_x) { x_ = an_x; } 52 int x_; member in class:PrivateCode
|
gtest_prod_test.cc | 47 EXPECT_EQ(0, a.x_); 50 EXPECT_EQ(1, a.x_); 59 EXPECT_EQ(0, a.x_); 62 EXPECT_EQ(2, a.x_);
|
/external/protobuf/gtest/test/ |
production.cc | 36 PrivateCode::PrivateCode() : x_(0) {}
|
production.h | 49 int x() const { return x_; } 51 void set_x(int x) { x_ = x; } 52 int x_; member in class:PrivateCode
|
gtest_prod_test.cc | 41 EXPECT_EQ(0, a.x_); 44 EXPECT_EQ(1, a.x_); 53 EXPECT_EQ(0, a.x_); 56 EXPECT_EQ(2, a.x_);
|
/ndk/sources/third_party/googletest/googletest/test/ |
production.cc | 36 PrivateCode::PrivateCode() : x_(0) {}
|
production.h | 49 int x() const { return x_; } 51 void set_x(int an_x) { x_ = an_x; } 52 int x_; member in class:PrivateCode
|
gtest_prod_test.cc | 41 EXPECT_EQ(0, a.x_); 44 EXPECT_EQ(1, a.x_); 53 EXPECT_EQ(0, a.x_); 56 EXPECT_EQ(2, a.x_);
|
/external/chromium_org/ui/gfx/ |
vector2d.cc | 14 return x_ == 0 && y_ == 0; 18 x_ += other.x_; 23 x_ -= other.x_; 28 return static_cast<int64>(x_) * x_ + static_cast<int64>(y_) * y_; 36 return base::StringPrintf("[%d %d]", x_, y_);
|
point_base.h | 20 Type x() const { return x_; } 24 x_ = x; 28 void set_x(Type x) { x_ = x; } 32 x_ += delta_x; 37 x_ += vector.x(); 42 x_ -= vector.x(); 47 x_ = x_ <= other.x_ ? x_ : other.x_ 81 Type x_; member in class:gfx::PointBase [all...] |
vector2d.h | 23 Vector2d() : x_(0), y_(0) {} 24 Vector2d(int x, int y) : x_(x), y_(y) {} 26 int x() const { return x_; } 27 void set_x(int x) { x_ = x; } 44 x_ = x_ <= other.x_ ? x_ : other.x_; 49 x_ = x_ >= other.x_ ? x_ : other.x_ 65 int x_; member in class:gfx::Vector2d [all...] |
vector3d_f.cc | 14 : x_(0), 20 : x_(x), 26 : x_(other.x()), 32 return base::StringPrintf("[%f %f %f]", x_, y_, z_); 36 return x_ == 0 && y_ == 0 && z_ == 0; 40 x_ += other.x_; 46 x_ -= other.x_; 52 return static_cast<double>(x_) * x_ + static_cast<double>(y_) * y_ [all...] |
vector2d_f.cc | 14 return base::StringPrintf("[%f %f]", x_, y_); 18 return x_ == 0 && y_ == 0; 22 x_ += other.x_; 27 x_ -= other.x_; 32 return static_cast<double>(x_) * x_ + static_cast<double>(y_) * y_; 40 x_ *= x_scale;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/ |
result_type.pass.cpp | 30 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_ = Min [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/ |
result_type.pass.cpp | 30 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_ = Min [all...] |
/external/chromium_org/native_client_sdk/src/examples/demo/flock/ |
vector2.h | 17 Vector2() : x_(0.0), y_(0.0) {} 18 Vector2(double x, double y) : x_(x), y_(y) {} 29 return sqrt(x_ * x_ + y_ * y_); 34 x_ += vec.x(); 49 x_ *= scale; 66 double angle = atan2(y_, x_); 71 double x() const { return x_; } 72 void set_x(double x) { x_ = x; } 77 double x_; member in class:Vector2 [all...] |
/external/chromium/ui/gfx/ |
point.h | 41 int x() const { return x_; } 45 x_ = x; 49 void set_x(int x) { x_ = x; } 53 x_ += delta_x; 59 copy.Offset(other.x_, other.y_); 65 copy.Offset(-other.x_, -other.y_); 70 return Point((x_ + other.x_) / 2, (y_ + other.y_) / 2); 74 return x_ == rhs.x_ && y_ == rhs.y_ 101 int x_; member in class:gfx::Point [all...] |
point.cc | 15 Point::Point() : x_(0), y_(0) { 18 Point::Point(int x, int y) : x_(x), y_(y) { 24 x_ = points.x; 28 Point::Point(const POINT& point) : x_(point.x), y_(point.y) { 32 x_ = point.x; 39 p.x = x_; 44 Point::Point(const CGPoint& point) : x_(point.x), y_(point.y) { 48 return CGPointMake(x_, y_); 53 return base::StringPrintf("%d,%d", x_, y_);
|