HomeSort by relevance Sort by last modified time
    Searched defs:py (Results 26 - 50 of 70) sorted by null

12 3

  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
PointCloud.java 211 final float py = point.y + mCenterY; local
221 canvas.scale(s, s, px, py);
222 canvas.translate(px - cx, py - cy);
228 canvas.drawCircle(px, py, pointSize, mPaint);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
PointCloud.java 213 final float py = point.y + mCenterY; local
223 canvas.scale(s, s, px, py);
224 canvas.translate(px - cx, py - cy);
230 canvas.drawCircle(px, py, pointSize, mPaint);
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
PointCloud.java 213 final float py = point.y + mCenterY; local
223 canvas.scale(s, s, px, py);
224 canvas.translate(px - cx, py - cy);
230 canvas.drawCircle(px, py, pointSize, mPaint);
  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 183 float py = (destHeight - src.getHeight()) / 2; local
184 dest.drawBitmap(mask, px + xy[0], py + xy[1],
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureStrokeWithPreviewPoints.java 174 final int[] py = mPreviewYCoordinates.getPrimitiveArray(); local
175 mInterpolator.reset(px, py, 0, size);
214 yCoords.add(d1, py[p2]);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 593 unsigned py = bbox->y0 & 63 & ~3; local
604 assert(py + 4 <= TILE_SIZE);
608 lp_rast_arg_triangle_contained(tri, px, py) );
622 py = MIN2(py, TILE_SIZE - 16);
625 assert(py + 16 <= TILE_SIZE);
630 lp_rast_arg_triangle_contained(tri, px, py) );
636 py = MIN2(py, TILE_SIZE - 16);
639 assert(py + 16 <= TILE_SIZE)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_bitmap.c 268 GLint px, GLint py, GLsizei width, GLsizei height,
273 destBuffer += py * destStride + px;
697 int px = -999, py = -999; local
706 py = y - cache->ypos;
708 py < 0 || py + height > BITMAP_CACHE_HEIGHT ||
722 py = (BITMAP_CACHE_HEIGHT - height) / 2;
724 cache->ypos = y - py;
731 assert(py != -999);
745 unpack_bitmap(st, px, py, width, height, unpack, bitmap
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aaline.c 95 const GLfloat py = y1 - y0;
97 const GLfloat qx = -py;
100 const GLfloat a = py * qz - pz * qy;
102 const GLfloat c = px * qy - py * qx;
111 const GLfloat py = y1 - y0; local
114 const GLfloat b = pz * py;
115 const GLfloat c = px * px + py * py;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 593 unsigned py = bbox->y0 & 63 & ~3; local
604 assert(py + 4 <= TILE_SIZE);
608 lp_rast_arg_triangle_contained(tri, px, py) );
622 py = MIN2(py, TILE_SIZE - 16);
625 assert(py + 16 <= TILE_SIZE);
630 lp_rast_arg_triangle_contained(tri, px, py) );
636 py = MIN2(py, TILE_SIZE - 16);
639 assert(py + 16 <= TILE_SIZE)
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bitmap.c 268 GLint px, GLint py, GLsizei width, GLsizei height,
273 destBuffer += py * destStride + px;
697 int px = -999, py = -999; local
706 py = y - cache->ypos;
708 py < 0 || py + height > BITMAP_CACHE_HEIGHT ||
722 py = (BITMAP_CACHE_HEIGHT - height) / 2;
724 cache->ypos = y - py;
731 assert(py != -999);
745 unpack_bitmap(st, px, py, width, height, unpack, bitmap
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aaline.c 95 const GLfloat py = y1 - y0;
97 const GLfloat qx = -py;
100 const GLfloat a = py * qz - pz * qy;
102 const GLfloat c = px * qy - py * qx;
111 const GLfloat py = y1 - y0; local
114 const GLfloat b = pz * py;
115 const GLfloat c = px * px + py * py;
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedRotateDrawable.java 80 float py = st.mPivotYRel ? (h * st.mPivotY) : st.mPivotY; local
82 canvas.rotate(mCurrentDegrees, px + bounds.left, py + bounds.top);
RotateDrawable.java 84 float py = st.mPivotYRel ? (h * st.mPivotY) : st.mPivotY; local
86 canvas.rotate(st.mCurrentDegrees, px + bounds.left, py + bounds.top);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
Spline.java 324 float py = mCurrentControlPoint.y * h; local
327 canvas.drawLine(px, py, px, h, paint);
328 canvas.drawLine(0, py, px, py, paint);
331 canvas.drawLine(px, py, px, h, paint);
332 canvas.drawLine(0, py, px, py, paint);
ImageCurves.java 225 float py = spline.getPoint(0).y; local
226 double delta = Math.sqrt((px - x) * (px - x) + (py - y) * (py - y));
229 py = spline.getPoint(i).y;
230 double currentDelta = Math.sqrt((px - x) * (px - x) + (py - y)
231 * (py - y));
ImageShow.java 531 int py = 0; local
534 py = mTouch.y - mImageBounds.top;
537 py = mImageBounds.height();
544 mImageBounds.left + px, mImageBounds.top + py);
548 mImageBounds.right, mImageBounds.top + py);
552 d.set(mImageBounds.left, mImageBounds.top + py,
    [all...]
  /packages/inputmethods/PinyinIME/jni/share/
userdict.cpp 492 const unsigned char py = *spl_trie.get_spelling_str(splid_str[i]); local
493 searchable->signature[i>>2] |= (py << (8 * (i % 4)));
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 521 float py = (float) (vy * pd); local
524 mCanvas.drawCircle(x + px - cx, y + py - cy, 1.0f, paint);
  /external/blktrace/btt/doc/
btt.tex     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ResourceType.js 173 "py": "text/x-python",
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
path.c 364 VGfloat sx, sy, px, py, ox, oy; local
388 sx = sy = px = py = ox = oy = 0.f;
420 py = y0;
432 py = y0;
443 py = y0;
454 py = y0;
475 py = y2;
498 py = y1;
523 y1 = 2*oy-py;
528 py = y1
952 VGfloat px, py, ox, oy, sx, sy; member in struct:path_iter_data
1233 VGfloat sx, sy, px, py, ox, oy; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
path.c 364 VGfloat sx, sy, px, py, ox, oy; local
388 sx = sy = px = py = ox = oy = 0.f;
420 py = y0;
432 py = y0;
443 py = y0;
454 py = y0;
475 py = y2;
498 py = y1;
523 y1 = 2*oy-py;
528 py = y1
952 VGfloat px, py, ox, oy, sx, sy; member in struct:path_iter_data
1233 VGfloat sx, sy, px, py, ox, oy; local
    [all...]
  /external/pixman/pixman/
pixman-bits-image.c 450 int32_t px, py; local
462 py = (y & 0xffff) >> y_phase_shift;
464 y_params = params + 4 + (1 << x_phase_bits) * cwidth + py * cheight;
772 int32_t px, py; local
787 py = (y & 0xffff) >> y_phase_shift;
796 y_params = params + 4 + (1 << x_phase_bits) * cwidth + py * cheight;
    [all...]
  /external/libmtp/src/
ptp-pack.c 1036 const MTPProperties *py = y; local
1038 return px->ObjectHandle - py->ObjectHandle;
    [all...]
  /prebuilts/devtools/tools/lib/
uiautomatorviewer.jar 

Completed in 1845 milliseconds

12 3