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

/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/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/
H A Dfast_rect_renderer.js51 y_: 0,
63 this.y_ = y;
92 this.ctx_.fillRect(x, this.y_, w, this.h_);
103 this.ctx_.fillRect(this.mergeStartX_, this.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/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/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)
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
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)
/external/webp/src/enc/
H A Diterator.c27 (it->y_ > 0) ? 129 : 127;
44 it->y_ = 0;
77 : it->percent0_ + delta * it->y_ / (enc->mb_h_ - 1);
106 const int x = it->x_, y = it->y_;
146 const int x = it->x_, y = it->y_;
249 const int x = it->x_, y = it->y_;
278 it->y_++;
279 it->bw_ = &enc->parts_[it->y_ & (enc->num_parts_ - 1)];
280 it->preds_ = enc->preds_ + it->y_ * 4 * enc->preds_w_;
H A Dvp8enci.h254 int x_, y_; // current macroblock member in struct:__anon15065
H A Dquant.c304 const uint8_t* const top = it->y_ ? enc->y_top_ + it->x_ * 16 : NULL;
311 const uint8_t* const top = it->y_ ? enc->uv_top_ + it->x_ * 16 : NULL;
H A Dframe.c728 uint8_t* const info = &pic->extra_info[it->x_ + it->y_ * enc->mb_w_];
/external/v8/test/mjsunit/
H A Ddebug-references.js109 function Point(x, y) { this.x_ = x; this.y_ = y;}
H A Dmirror-object.js163 this.y_ = y;
/external/libvpx/vp8/encoder/
H A Dssim.c107 int y_, x_; local
114 for (y_ = 0; y_ < KERNEL_SIZE; ++y_, org += stride1, rec += stride2)
116 const int Wy = K[y_];
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DDrawUtils.java157 int y_ = y;
164 y_ += lineHeight;
165 if (y_ > y + height) {
170 gc.drawText(c, x_, y_);
/external/chromium-trace/
H A Dscript.js44 base.exportTo("tracing",function(){function e(c,a,b,d){this.ctx_=c;this.minRectSize_=a;this.maxMergeDist_=b;this.pallette_=d}e.prototype={y_:0,h_:0,merging_:!1,mergeStartX_:0,mergeCurRight_:0,setYandH:function(c,a){this.flush();this.y_=c;this.h_=a},fillRect:function(c,a,b){var d=c+a;a<this.minRectSize_?(d-this.mergeStartX_>this.maxMergeDist_&&this.flush(),this.merging_?(this.mergeCurRight_=d,this.mergedColorId=Math.max(this.mergedColorId,b)):(this.merging_=!0,this.mergeStartX_=c,this.mergeCurRight_=
45 d,this.mergedColorId=b)):(this.merging_&&this.flush(),this.ctx_.fillStyle=this.pallette_[b],this.ctx_.fillRect(c,this.y_,a,this.h_))},flush:function(){this.merging_&&(this.ctx_.fillStyle=this.pallette_[this.mergedColorId],this.ctx_.fillRect(this.mergeStartX_,this.y_,this.mergeCurRight_-this.mergeStartX_,this.h_),this.merging_=!1)}};return{FastRectRenderer:e}});"use strict";

Completed in 472 milliseconds