HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 226 - 250 of 362) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 1072 double x1, y1, x2, y2; local
1073 cairo_clip_extents(cr, &x1, &y1, &x2, &y2);
1074 cairo_rectangle(cr, x1, y1, x2 - x1, y2 - y1);
1107 double x1, y1, x2, y2; local
1108 cairo_clip_extents(cr, &x1, &y1, &x2, &y2);
1109 cairo_rectangle(cr, x1, y1, x2 - x1, y2 - y1);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11Canvas.java 63 // x1, y1, x2, y2.
195 public void drawLine(float x1, float y1, float x2, float y2, GLPaint paint) {
203 scale(x2 - x1, y2 - y1, 1);
318 // {x1', y1', x2', y2'} are stored in mMapPointsBuffer and also returned.
319 private float[] mapPoints(float m[], int x1, int y1, int x2, int y2) {
329 // Same for x2 y2.
330 float x4 = m[0] * x2 + m[4] * y2 + m[12];
331 float y4 = m[1] * x2 + m[5] * y2 + m[13];
332 float w4 = m[3] * x2 + m[7] * y2 + m[15];
    [all...]
  /external/opencv/cvaux/src/
cvscanlines.cpp 183 int x1, y1, x2, y2, dx, dy; local
194 y2 = scanlines[curr++];
197 dy = abs( y1 - y2 ) + 1;
213 int x1, y1, x2, y2; local
235 y2 = (int) (scanlines_1[curr] * alpha + scanlines_2[curr] * (1.0 - alpha));
237 scanlines_a[curr++] = y2;
240 dy = abs( y1 - y2 ) + 1;
    [all...]
cvtrifocal.cpp 961 double x1,y1,x2,y2; local
965 y2 = cvmGet(points[currImage],1,i);
969 dy = y1-y2;
1242 double x1,y1,x2,y2; local
1469 double x1,y1,w1,x2,y2,w2; local
    [all...]
  /external/quake/quake/src/QW/scitech/include/
mgraph.h     [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H     [all...]
  /external/quake/quake/src/WinQuake/
gl_rmain.cpp 1171 int x, x2, y2, y, w, h; local
1181 y2 = (vid.height - (r_refdef.vrect.y + r_refdef.vrect.height)) * glheight/vid.height;
1188 if (y2 < 0)
1189 y2--;
1194 h = y - y2;
1198 x = y2 = 0;
1202 glViewport (glx + x, gly + y2, w, h);
    [all...]
  /frameworks/base/core/java/android/view/
HardwareRenderer.java 1841 int y2 = mHeight; local
    [all...]
ViewGroup.java     [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 89 int x1, y1, x2, y2; local
99 x1 = pt1->x; y1 = pt1->y; x2 = pt2->x; y2 = pt2->y;
101 c2 = (x2 < 0) + (x2 > right) * 2 + (y2 < 0) * 4 + (y2 > bottom) * 8;
110 x1 += (int) (((int64) (a - y1)) * (x2 - x1) / (y2 - y1));
117 x2 += (int) (((int64) (a - y2)) * (x2 - x1) / (y2 - y1));
118 y2 = a;
126 y1 += (int) (((int64) (a - x1)) * (y2 - y1) / (x2 - x1));
133 y2 += (int) (((int64) (a - x2)) * (y2 - y1) / (x2 - x1))
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 552 float y2 = pt2yStart; local
569 .addPointer(0, x1, y1).addPointer(1, x2, y2).setIntermediateNote(true));
575 y2 += pt2yStep;
580 y2, 1, 5));
585 .addPointer(1, x2, y2));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseLayoutRule.java     [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp 156 float y2 = point.y() - a.y(); local
160 float dot02 = x0 * x2 + y0 * y2;
162 float dot12 = x1 * x2 + y1 * y2;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 332 int y2 = parentY + info.getBottom(); local
333 if (x1 != x2 && y1 != y2) {
334 savePreview(file, image, x1, y1, x2, y2);
  /external/qemu/distrib/sdl-1.2.15/src/video/windib/
SDL_dibvideo.c 1438 int x1, y1, x2, y2, area; local
    [all...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/v8/test/mjsunit/harmony/
module-parsing.js 63 export let y1 = 0, y2
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TransformationMatrix.h 123 void map(double x, double y, double& x2, double& y2) const { multVecMatrix(x, y, x2, y2); }
  /external/webkit/Tools/DumpRenderTree/chromium/
WebThemeControlDRTWin.cpp 143 int x2, int y2,
154 path.lineTo(SkIntToScalar(x2), SkIntToScalar(y2));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BeanBag.java 90 static float dot(float x1, float y1, float x2, float y2) {
91 return x1*x2+y1+y2;
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 270 final float y2 = from.top + offsetY; // intermediate t/l local
296 float y = (1f - t) * (1f - t) * (y1 - y1o) + 2 * (1f - t) * t * (y2 - x1o) +
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XKBgeom.h 95 short x2,y2; member in struct:_XkbBounds
98 #define XkbBoundsHeight(b) (((b)->y2)-((b)->y1))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XKBgeom.h 95 short x2,y2; member in struct:_XkbBounds
98 #define XkbBoundsHeight(b) (((b)->y2)-((b)->y1))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XKBgeom.h 95 short x2,y2; member in struct:_XkbBounds
98 #define XkbBoundsHeight(b) (((b)->y2)-((b)->y1))
  /external/skia/legacy/src/core/
SkPath.cpp 490 void SkPath::quadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
497 pts[1].set(x2, y2);
505 void SkPath::rQuadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
508 this->quadTo(pt.fX + x1, pt.fY + y1, pt.fX + x2, pt.fY + y2);
511 void SkPath::cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
519 pts[1].set(x2, y2);
528 void SkPath::rCubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
532 this->cubicTo(pt.fX + x1, pt.fY + y1, pt.fX + x2, pt.fY + y2,
896 void SkPath::arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
907 (x1 == x2 && y1 == y2) ||
    [all...]

Completed in 784 milliseconds

1 2 3 4 5 6 7 8 91011>>