Searched refs:y_ (Results 1 - 25 of 59) sorted by relevance

123

/external/chromium_org/ui/gfx/
H A Dpoint_base.h21 Type y() const { return y_; }
25 y_ = y;
29 void set_y(Type y) { y_ = y; }
33 y_ += delta_y;
38 y_ += vector.y();
43 y_ -= vector.y();
48 y_ = y_ <= other.y_ ? y_
82 Type y_; member in class:gfx::PointBase
[all...]
H A Dvector2d.cc14 return x_ == 0 && y_ == 0;
19 y_ += other.y_;
24 y_ -= other.y_;
28 return static_cast<int64>(x_) * x_ + static_cast<int64>(y_) * y_;
36 return base::StringPrintf("[%d %d]", x_, y_);
H A Dvector2d.h23 Vector2d() : x_(0), y_(0) {}
24 Vector2d(int x, int y) : x_(x), y_(y) {}
29 int y() const { return y_; }
30 void set_y(int y) { y_ = y; }
45 y_ = y_ <= other.y_ ? y_ : other.y_;
50 y_
66 int y_; member in class:gfx::Vector2d
[all...]
H A Dvector3d_f.cc15 y_(0),
21 y_(y),
27 y_(other.y()),
32 return base::StringPrintf("[%f %f %f]", x_, y_, z_);
36 return x_ == 0 && y_ == 0 && z_ == 0;
41 y_ += other.y_;
47 y_ -= other.y_;
52 return static_cast<double>(x_) * x_ + static_cast<double>(y_) * y
[all...]
H A Dvector2d_f.cc14 return base::StringPrintf("[%f %f]", x_, y_);
18 return x_ == 0 && y_ == 0;
23 y_ += other.y_;
28 y_ -= other.y_;
32 return static_cast<double>(x_) * x_ + static_cast<double>(y_) * y_;
41 y_ *= y_scale;
H A Dvector2d_f.h21 Vector2dF() : x_(0), y_(0) {}
22 Vector2dF(float x, float y) : x_(x), y_(y) {}
27 float y() const { return y_; }
28 void set_y(float y) { y_ = y; }
43 y_ = y_ <= other.y_ ? y_ : other.y_;
48 y_
66 float y_; member in class:gfx::Vector2dF
[all...]
H A Dvector3d_f.h30 float y() const { return y_; }
31 void set_y(float y) { y_ = y; }
49 y_ = y_ <= other.y_ ? y_ : other.y_;
55 y_ = y_ >= other.y_
76 float y_; member in class:gfx::Vector3dF
[all...]
H A Dpoint3_f.h19 Point3F() : x_(0), y_(0), z_(0) {}
21 Point3F(float x, float y, float z) : x_(x), y_(y), z_(z) {}
23 explicit Point3F(const PointF& point) : x_(point.x()), y_(point.y()), z_(0) {}
36 float y() const { return y_; }
40 void set_y(float y) { y_ = y; }
45 y_ = y;
52 y_ += v.y();
59 y_ -= v.y();
66 float dy = y_ - other.y_;
78 float y_; member in class:gfx::Point3F
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dcoordinate2d.js28 this.y_ = y;
39 return this.y_;
49 return new Coordinate2d(this.x_ + x, this.y_ + y);
58 return new Coordinate2d(this.x_ * factor, this.y_ * factor);
68 this.y_ == other.y_;
/external/chromium/ui/gfx/
H A Dpoint.h42 int y() const { return y_; }
46 y_ = y;
50 void set_y(int y) { y_ = y; }
54 y_ += delta_y;
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_;
102 int y_; member in class:gfx::Point
[all...]
H A Dpoint.cc15 Point::Point() : x_(0), y_(0) {
18 Point::Point(int x, int y) : x_(x), y_(y) {
25 y_ = points.y;
28 Point::Point(const POINT& point) : x_(point.x), y_(point.y) {
33 y_ = point.y;
40 p.y = y_;
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_);
/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_);
35 y_ += vec.y();
50 y_ *= scale;
66 double angle = atan2(y_, x_);
74 double y() const { return y_; }
75 void set_y(double y) { y_ = y; }
78 double y_; member in class:Vector2
[all...]
/external/chromium_org/cc/resources/
H A Dlayer_quad.h25 Edge() : x_(0), y_(0), z_(0) {}
29 float y() const { return y_; }
33 void set_y(float y) { y_ = y; }
37 y_ = y;
42 void move_y(float dy) { y_ += dy; }
46 y_ += dy;
51 void scale_y(float sy) { y_ *= sy; }
55 y_ *= sy;
68 float y_; member in class:cc::LayerQuad::Edge
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dfast_rect_renderer.js56 y_: 0,
68 this.y_ = y;
98 this.ctx_.fillRect(x, this.y_, w, this.h_);
109 this.ctx_.fillRect(this.mergeStartX_, this.y_,
/external/chromium-trace/trace-viewer/src/tracing/
H A Dfast_rect_renderer.js52 y_: 0,
64 this.y_ = y;
93 this.ctx_.fillRect(x, this.y_, w, this.h_);
104 this.ctx_.fillRect(this.mergeStartX_, this.y_,
/external/chromium_org/chrome/test/chromedriver/
H A Dbasic_types.cc13 void WebPoint::Offset(int x_, int y_) { argument
15 y += y_;
H A Dbasic_types.h13 void Offset(int x_, int y_);
/external/stlport/test/unit/
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_;
/external/chromium_org/crypto/
H A Dghash.cc73 y_.low = 0;
74 y_.hi = 0;
115 y_.low ^= additional_bytes_*8;
116 y_.hi ^= ciphertext_bytes_*8;
117 MulAfterPrecomputation(product_table_, &y_);
126 Put64(result, y_.low);
127 Put64(result + 8, y_.hi);
222 y_.low ^= Get64(bytes);
224 y_.hi ^= Get64(bytes);
226 MulAfterPrecomputation(product_table_, &y_);
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dcarbonvideorenderer.h65 int y_; member in class:cricket::CarbonVideoRenderer
/external/chromium_org/chrome/test/webdriver/
H A Dwebdriver_basic_types.cc17 Point::Point(double x, double y) : x_(x), y_(y) { }
23 y_ += y;
31 return y_;
42 int truncated = static_cast<int>(y_);
43 if (std::abs(y_ - truncated) < 0.5)
/external/ceres-solver/examples/
H A Dcurve_fitting.cc123 : x_(x), y_(y) {}
128 residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
134 const double y_; member in struct:ExponentialResidual
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_gtk.cc85 y_(absolute_y) {
92 ui_controls::SendMouseMoveNotifyWhenDone(x_, y_, next_task_);
101 int y_; member in class:MouseMoveTask
/external/ceres-solver/internal/ceres/
H A Dparameter_block_ordering_test.cc67 problem_.AddParameterBlock(y_, 4);
72 problem_.AddResidualBlock(new DummyCostFunction<6, 5, 4>, NULL, z_, y_);
80 double x_[3], y_[4], z_[5], w_[6]; member in class:ceres::internal::SchurOrderingTest
126 problem_.SetParameterBlockConstant(y_);

Completed in 661 milliseconds

123