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

12345

/external/chromium_org/testing/gtest/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_);
/external/gtest/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_);
/external/protobuf/gtest/test/
H A Dproduction.cc36 PrivateCode::PrivateCode() : x_(0) {}
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 Dproduction.h49 int x() const { return x_; }
51 void set_x(int x) { x_ = x; }
52 int x_; member in class:PrivateCode
/external/chromium_org/ui/gfx/geometry/
H A Dvector2d.cc14 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_);
H A Dpoint_base.h20 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_
81 Type x_; member in class:gfx::PointBase
[all...]
H A Dvector2d.h24 Vector2d() : x_(0), y_(0) {}
25 Vector2d(int x, int y) : x_(x), y_(y) {}
27 int x() const { return x_; }
28 void set_x(int x) { x_ = x; }
45 x_ = x_ <= other.x_ ? x_ : other.x_;
50 x_
66 int x_; member in class:gfx::Vector2d
[all...]
H A Dvector3d_f.cc14 : 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
[all...]
H A Dvector2d_f.cc14 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;
H A Dvector2d_f.h22 Vector2dF() : x_(0), y_(0) {}
23 Vector2dF(float x, float y) : x_(x), y_(y) {}
25 float x() const { return x_; }
26 void set_x(float x) { x_ = x; }
43 x_ = x_ <= other.x_ ? x_ : other.x_;
48 x_
66 float x_; member in class:gfx::Vector2dF
[all...]
H A Dvector3d_f.h28 float x() const { return x_; }
29 void set_x(float x) { x_ = x; }
49 x_ = x_ <= other.x_ ? x_ : other.x_;
55 x_ = x_ >= other.x_
76 float x_; member in class:gfx::Vector3dF
[all...]
/external/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...]
/external/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;
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dcoordinate2d.js21 this.x_ = x;
34 return this.x_;
49 return new Coordinate2d(this.x_ + x, this.y_ + y);
58 return new Coordinate2d(this.x_ * factor, this.y_ * factor);
67 this.x_ == other.x_ &&
/external/chromium_org/v8/test/mjsunit/
H A Dglobal-accessors.js30 var x_ = 0; variable
32 __defineSetter__('x', function(x) { x_ = x; });
33 __defineGetter__('x', function() { return x_; });
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
H A Dvector2.h17 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_org/third_party/android_crazy_linker/src/tests/
H A Dfoo_with_static_constructor.cpp24 x_ = rand();
40 int Get() const { return x_; }
43 int x_; member in class:A
/external/stlport/test/unit/
H A Dunary.h20 double operator()(double x_) const
21 { return ::sqrt(x_); }
/external/ceres-solver/internal/ceres/
H A Ddogleg_strategy_test.cc49 Vector x_; member in class:ceres::internal::__anon1763::Fixture
84 x_.resize(6);
85 x_.setZero();
112 x_.resize(6);
113 x_.setZero();
145 x_.data());
148 EXPECT_LE(x_.norm(), options_.initial_radius * (1.0 + 4.0 * kEpsilon));
165 x_.data());
168 EXPECT_LE(x_.norm(), options_.initial_radius * (1.0 + 4.0 * kEpsilon));
185 x_
[all...]

Completed in 9209 milliseconds

12345