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

123

/external/chromium_org/ui/gfx/geometry/
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.h24 Vector2d() : x_(0), y_(0) {}
25 Vector2d(int x, int y) : x_(x), y_(y) {}
30 int y() const { return y_; }
31 void set_y(int y) { y_ = y; }
46 y_ = y_ <= other.y_ ? y_ : other.y_;
51 y_
67 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.h22 Vector2dF() : x_(0), y_(0) {}
23 Vector2dF(float x, float y) : x_(x), y_(y) {}
28 float y() const { return y_; }
29 void set_y(float y) { y_ = y; }
44 y_ = y_ <= other.y_ ? y_ : other.y_;
49 y_
67 float y_; member in class:gfx::Vector2dF
[all...]
H A Dvector3d_f.h31 float y() const { return y_; }
32 void set_y(float y) { y_ = y; }
50 y_ = y_ <= other.y_ ? y_ : other.y_;
56 y_ = y_ >= other.y_
77 float y_; member in class:gfx::Vector3dF
[all...]
H A Dpoint3_f.h20 Point3F() : x_(0), y_(0), z_(0) {}
22 Point3F(float x, float y, float z) : x_(x), y_(y), z_(z) {}
24 explicit Point3F(const PointF& point) : x_(point.x()), y_(point.y()), z_(0) {}
37 float y() const { return y_; }
41 void set_y(float y) { y_ = y; }
46 y_ = y;
53 y_ += v.y();
60 y_ -= v.y();
67 float dy = y_ - other.y_;
79 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_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-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/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.h22 DesktopVector() : x_(0), y_(0) {}
23 DesktopVector(int32_t x, int32_t y) : x_(x), y_(y) {}
26 int32_t y() const { return y_; }
27 bool is_zero() const { return x_ == 0 && y_ == 0; }
30 return x_ == other.x_ && y_ == other.y_;
35 y_ = y;
47 int32_t y_; member in class:webrtc::DesktopVector
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_vertex_sequence.h78 vertex_dist(FX_FLOAT x_, FX_FLOAT y_) : argument
80 y(y_),
93 vertex_dist_cmd(FX_FLOAT x_, FX_FLOAT y_, unsigned cmd_) : argument
94 vertex_dist(x_, 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.cc75 y_.low = 0;
76 y_.hi = 0;
117 y_.low ^= additional_bytes_*8;
118 y_.hi ^= ciphertext_bytes_*8;
119 MulAfterPrecomputation(product_table_, &y_);
128 Put64(result, y_.low);
129 Put64(result + 8, y_.hi);
224 y_.low ^= Get64(bytes);
226 y_.hi ^= Get64(bytes);
228 MulAfterPrecomputation(product_table_, &y_);
[all...]
H A Dghash.h77 FieldElement y_; member in class:crypto::GaloisHash
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dcarbonvideorenderer.h65 int y_; member in class:cricket::CarbonVideoRenderer
/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/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_);
/external/chromium_org/content/browser/renderer_host/
H A Dcompositing_iosurface_mac.h118 SurfaceVertex() : x_(0.0f), y_(0.0f), tx_(0.0f), ty_(0.0f) { }
121 y_ = y;
127 y_ = y;
134 float y_; member in struct:content::CompositingIOSurfaceMac::SurfaceVertex
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Ddate-format-tofte.js124 var y_ = Y();
126 (y_ % 4 == 0 && y_ % 100 != 0) ||
127 (y_ % 4 == 0 && y_ % 100 == 0 && y_ % 400 == 0)

Completed in 408 milliseconds

123