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

1 2 3

  /external/chromium_org/ui/gfx/geometry/
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 24 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_ = y_ >= other.y_ ? y_ : other.y_
67 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 22 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_ = y_ >= other.y_ ? y_ : other.y_
67 float y_; member in class:gfx::Vector2dF
    [all...]
vector3d_f.h 31 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_ ? y_ : other.y_
77 float y_; member in class:gfx::Vector3dF
    [all...]
point3_f.h 20 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/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...]
  /development/ndk/sources/android/ndk_helper/
vecmath.h 47 float y_; member in class:ndk_helper::Vec2
57 x_ = y_ = 0.f;
63 y_ = fY;
69 y_ = vec.y_;
75 y_ = (*pVec++);
83 ret.y_ = y_ * rhs.y_;
91 ret.y_ = y_ / rhs.y_
252 float x_, y_, z_; member in class:ndk_helper::Vec3
493 float x_, y_, z_, w_; member in class:ndk_helper::Vec4
964 float x_, y_, z_, w_; member in class:ndk_helper::Quaternion
    [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/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_geometry.h 22 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/
agg_vertex_sequence.h 78 vertex_dist(FX_FLOAT x_, FX_FLOAT y_) :
80 y(y_),
93 vertex_dist_cmd(FX_FLOAT x_, FX_FLOAT y_, unsigned cmd_) :
94 vertex_dist(x_, 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 75 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...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
carbonvideorenderer.h 65 int y_; member in class:cricket::CarbonVideoRenderer

Completed in 641 milliseconds

1 2 3