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

  /external/chromium/base/gfx/
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_);
point.h 42 int y() const { return y_; }
46 y_ = y;
50 void set_y(int y) { y_ = y; }
54 y_ += delta_y;
58 return x_ == rhs.x_ && y_ == rhs.y_;
73 int y_; member in class:gfx::Point
  /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_;
ptr2_test.cpp 35 static int sum(int x_, int y_)
37 return x_ + y_;
  /ndk/sources/android/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_;
ptr2_test.cpp 35 static int sum(int x_, int y_)
37 return x_ + y_;
  /external/webkit/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 124 var y_ = Y();
126 (y_ % 4 == 0 && y_ % 100 != 0) ||
127 (y_ % 4 == 0 && y_ % 100 == 0 && y_ % 400 == 0)
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
date-format-tofte.js 124 var y_ = Y();
126 (y_ % 4 == 0 && y_ % 100 != 0) ||
127 (y_ % 4 == 0 && y_ % 100 == 0 && y_ % 400 == 0)
  /frameworks/base/core/jni/android/graphics/
Path.cpp 89 SkScalar y_ = SkFloatToScalar(y); local
90 obj->moveTo(x_, y_);
101 SkScalar y_ = SkFloatToScalar(y); local
102 obj->lineTo(x_, y_);
181 SkScalar y_ = SkFloatToScalar(y); local
183 obj->addCircle(x_, y_, radius_, dir);
Canvas.cpp 753 SkScalar y_ = SkFloatToScalar(y); local
754 canvas->drawText(textArray + index, count << 1, x_, y_, *paint);
763 SkScalar y_ = SkFloatToScalar(y); local
765 x_, y_, *paint);
    [all...]
  /external/libvpx/vp8/encoder/
ssim.c 392 int y_, x_; local
399 for (y_ = 0; y_ < KERNEL_SIZE; ++y_, org += stride1, rec += stride2)
401 const int Wy = K[y_];
  /system/media/opensles/tools/permute/
permute.c 70 const Segment *y_ = (Segment *) y; local
71 return x_->mFrameStart - y_->mFrameStart;
  /external/v8/test/mjsunit/
debug-references.js 109 function Point(x, y) { this.x_ = x; this.y_ = y;}
mirror-object.js 158 this.y_ = y;

Completed in 49 milliseconds