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

<<1112131415

  /packages/apps/Gallery2/src/com/android/camera/ui/
PieRenderer.java 704 float y2 = mArcCenterY - getLevel() * mRadiusInc - y; local
705 res.y = (float) Math.sqrt(x * x + y2 * y2);
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 826 private void drawLine(Canvas graphics, int x1, int y1, int x2, int y2, Paint paint) {
829 graphics.drawLine(width - x1, y1, width - x2, y2, paint);
831 graphics.drawLine(x1, y1, x2, y2, paint);
1095 int y2 = vLocations[rowSpan.max]; local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp 1802 int y2 = ty + h; local
1871 int y2 = ty + h; local
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 941 int x2 = x1 >> SHIFT, y2 = y1 >> SHIFT;
943 (unsigned)y2 >= (unsigned)arows )
945 adata[y2*astep + x2]++;
    [all...]
cvmorph.cpp 322 int y0, int y1, int y2 )
329 return CvBaseImageFilter::fill_cyclic_buffer( src, src_step, y0, y1, y2 );
332 for( ; buf_count < buf_max_count && y < y2; buf_count++, y++, src += src_step )
    [all...]
cvshapedescr.cpp 143 double y2 = (pt1.y + pt2.y) * 0.5; local
149 if( icvIntersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 )
152 center->y = (float) (y2 + dy2 * t);
    [all...]
cvhaar.cpp 1012 int y1 = i*strip_size, y2 = (i+1)*strip_size\/* - ystep + 1*\/; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp 715 double y2 = y*y; local
718 mat.m_matrix[0][0] = 1.0f - 2.0f * (y2 + z2) * sinA2;
726 mat.m_matrix[2][2] = 1.0f - 2.0f * (x2 + y2) * sinA2;
    [all...]
  /external/webkit/Source/WebKit/android/plugins/
android_npapi.h 346 float x2, float y2);
    [all...]
  /prebuilts/devtools/tools/lib/
draw9patch.jar 
  /external/v8/test/mjsunit/
large-object-allocation.js 108 this.y2 = i;
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.idl 71 void arcTo(in float x1, in float y1, in float x2, in float y2, in float radius)
  /frameworks/rs/
rsFont.cpp 667 float x2, float y2, float z2,
682 ALOGE("V1 x: %f y: %f z: %f", x2, y2, z2);
694 (*currentPos++) = y2;
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosCamera.cpp     [all...]
ExynosCameraHWInterface.cpp     [all...]
  /hardware/samsung_slsi/exynos5/libcsc/
csc.c 476 g2d->src.rect.y2 = csc_handle->src_format.crop_top +
490 g2d->dst.rect.y2 = csc_handle->dst_format.crop_top +
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 479 public void drawLine(float x1, float y1, float x2, float y2, GLPaint paint) {
480 draw(GLES20.GL_LINE_STRIP, OFFSET_DRAW_LINE, COUNT_LINE_VERTEX, x1, y1, x2 - x1, y2 - y1,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 440 int endRow = grid.getRow(state.bounds.y2());
570 int endRow = grid.getRow(state.bounds.y2());
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_gtk.cc 1851 gint x1, x2, y1, y2; local
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/inc/
QCameraHWI.h 192 * x1, y1, x2, y2: from -1000 to 1000
196 int x1, y1, x2, y2; member in struct:__anon1601
  /device/lge/mako/camera/
QCameraHWI.h 192 * x1, y1, x2, y2: from -1000 to 1000
196 int x1, y1, x2, y2; member in struct:__anon1754
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3dtypes.h 146 LONG y2; member in union:_D3DRECT::__anon14249
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DTYPES.H 146 LONG y2; member in union:_D3DRECT::__anon14432
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCAAnimationWin.cpp 130 return RetainPtr<CACFTimingFunctionRef>(AdoptCF, CACFTimingFunctionCreate(static_cast<float>(ctf->x1()), static_cast<float>(ctf->y1()), static_cast<float>(ctf->x2()), static_cast<float>(ctf->y2())));
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 90 void map(double x1, double y1, double* x2, double* y2) const
95 *y2 = y1 * m_cosA - x1 * m_sinA + m_postShiftY;
97 void map(int x1, int y1, int* x2, int* y2) const
102 *y2 = stableRound(y1 * m_cosA - x1 * m_sinA) + m_postShiftY;
    [all...]

Completed in 783 milliseconds

<<1112131415