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

  /external/chromium_org/gpu/command_buffer/tests/
gl_pointcoord_unittest.cc 126 GLfloat point_y = -0.5 + py + pixel_offset; local
131 GLfloat yw = s2p(point_y);
135 GLint yf = s2p(point_y + v * point_width);
  /external/chromium_org/ppapi/cpp/
rect.cc 38 bool Rect::Contains(int32_t point_x, int32_t point_y) const {
40 (point_y >= y()) && (point_y < bottom());
142 bool FloatRect::Contains(float point_x, float point_y) const {
144 (point_y >= y()) && (point_y < bottom());
rect.h 307 /// Contains() determines if the point identified by point_x and point_y
312 /// @param[in] point_y An int32_t value representing a y value.
314 /// @return true if the point_x and point_y fall inside the rectangle.
315 bool Contains(int32_t point_x, int32_t point_y) const;
322 /// @return true if the point_x and point_y fall inside the rectangle.
692 /// Contains() determines if the point identified by point_x and point_y
697 /// @param[in] point_y An float value representing a y value.
699 /// @return true if the point_x and point_y fall inside the rectangle.
700 bool Contains(float point_x, float point_y) const;
707 /// @return true if the point_x and point_y fall inside the rectangle
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_path.cpp 241 FX_FLOAT point_y;
243 point_y = end_y - hw;
245 point_y = end_y + hw;
247 rect.UpdateRect(end_x + hw, point_y);
248 rect.UpdateRect(end_x - hw, point_y);
280 FX_FLOAT point_y = middle_y + half_width * start_dir;
281 rect.UpdateRect(middle_x + half_width, point_y);
282 rect.UpdateRect(middle_x - half_width, point_y);
  /external/chromium_org/ui/gfx/geometry/
rect_base_impl.h 128 Contains(Type point_x, Type point_y) const {
130 (point_y >= y()) && (point_y < bottom());
rect_base.h 97 // Returns true if the point identified by point_x and point_y falls inside
100 bool Contains(Type point_x, Type point_y) const;
rect_unittest.cc 26 int point_y; member in struct:gfx::ContainsCase
43 EXPECT_EQ(value.contained, rect.Contains(value.point_x, value.point_y));
  /frameworks/base/core/jni/
android_hardware_Camera.cpp 60 jfieldID point_y; member in struct:fields_t
385 env->SetIntField(leftEye, fields.point_y, metadata->faces[i].left_eye[1]);
391 env->SetIntField(rightEye, fields.point_y, metadata->faces[i].right_eye[1]);
397 env->SetIntField(mouth, fields.point_y, metadata->faces[i].mouth[1]);
    [all...]

Completed in 650 milliseconds