HomeSort by relevance Sort by last modified time
    Searched refs:y_ (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium_org/ui/gfx/
point_base.h 21 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_ : other.y_
82 Type y_; member in class:gfx::PointBase
    [all...]
vector2d.cc 14 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_);
vector2d.h 23 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_ = y_ >= other.y_ ? y_ : other.y_
66 int y_; member in class:gfx::Vector2d
    [all...]
vector3d_f.cc 15 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...]
vector2d_f.cc 14 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;
vector2d_f.h 21 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_ = y_ >= other.y_ ? y_ : other.y_
66 float y_; member in class:gfx::Vector2dF
    [all...]
vector3d_f.h 30 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_ ? y_ : other.y_
76 float y_; member in class:gfx::Vector3dF
    [all...]
point3_f.h 19 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/ui/gfx/
point.h 42 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...]
point.cc 15 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/
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_);
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...]
  /frameworks/base/media/mca/filterfw/native/core/
geometry.cpp 27 return std::sqrt(x_ * x_ + y_ * y_);
36 y_ *= new_length / length;
48 out.y_ = y_ + other.y_;
55 out.y_ = y_ - other.y_;
62 out.y_ = factor * y_
    [all...]
geometry.h 30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
34 float y() const { return y_; }
48 float x_, y_; member in class:android::filterfw::Point
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.cpp 26 return std::sqrt(x_ * x_ + y_ * y_);
35 y_ *= new_length / length;
47 out.y_ = y_ + other.y_;
54 out.y_ = y_ - other.y_;
61 out.y_ = factor * y_
    [all...]
geometry.h 30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
34 float y() const { return y_; }
48 float x_, y_; member in class:android::filterfw::Point
  /external/chromium_org/cc/resources/
layer_quad.h 25 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
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/detail/
workaround.hpp 36 std::ptrdiff_t distance( T const& x_, T const& y_ )
40 std::distance( x_, y_, res );
  /external/chromium_org/chrome/test/chromedriver/
basic_types.cc 13 void WebPoint::Offset(int x_, int y_) {
15 y += y_;
basic_types.h 13 void Offset(int x_, int y_);
  /external/stlport/test/unit/
func_test.cpp 27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_)
41 return x_ > y_;
  /ndk/tests/device/test-gnustl-full/unit/
func_test.cpp 27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_)
41 return x_ > y_;
  /ndk/tests/device/test-stlport/unit/
func_test.cpp 27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_)
41 return x_ > y_;
  /external/chromium_org/crypto/
ghash.cc 73 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/
carbonvideorenderer.h 65 int y_; member in class:cricket::CarbonVideoRenderer
  /external/chromium_org/ui/base/ozone/evdev/
touch_event_converter_ozone.h 60 int y_; member in struct:ui::TouchEventConverterOzone::InProgressEvents

Completed in 752 milliseconds

1 2 3