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

12 3 4 5

  /external/skia/src/sfnt/
SkOTTable_EBDT.h 90 SK_OT_CHAR yOffset; // Position of component top
  /frameworks/base/core/java/android/animation/
PathKeyframes.java 144 int yOffset = base + Y_OFFSET;
145 mTempPointF.set(mKeyframeData[xOffset], mKeyframeData[yOffset]);
  /frameworks/base/telephony/java/android/telephony/
SubscriptionInfo.java 227 final float yOffset = (height / 2.f) - textBound.centerY();
228 canvas.drawText(index, xOffset, yOffset, paint);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
Lines2Activity.java 75 private void drawLines(Canvas canvas, Paint p, float xOffset, float yOffset) {
76 canvas.drawLine(10 + xOffset, yOffset, 10 + xOffset, 40 + yOffset, p);
77 canvas.drawLine(30 + xOffset, yOffset, 40 + xOffset, 40 + yOffset, p);
78 canvas.drawLine(40 + xOffset, yOffset, 75 + xOffset, 35 + yOffset, p);
79 canvas.drawLine(50 + xOffset, 5+ yOffset, 100 + xOffset, 15 + yOffset, p);
80 canvas.drawLine(60 + xOffset, yOffset, 110 + xOffset, 2 + yOffset, p)
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
MeshTest.java 112 final float yOffset = (normalizedY - 0.5f) * height;
117 tmb.addVertex(xOffset, yOffset);
UiTest.java 161 float yOffset = height/2;
163 tmb.addVertex(-1.0f * xOffset, -1.0f * yOffset);
165 tmb.addVertex(xOffset, -1.0f * yOffset);
167 tmb.addVertex(xOffset, yOffset);
169 tmb.addVertex(-1.0f * xOffset, yOffset);
  /packages/apps/Launcher2/src/com/android/launcher2/
ButtonDropTarget.java 152 final int yOffset = (int) -(viewHeight - height) / 2;
153 to.offset(xOffset, yOffset);
  /packages/apps/Launcher3/src/com/android/launcher3/
ButtonDropTarget.java 154 final int yOffset = (int) -(viewHeight - height) / 2;
155 to.offset(xOffset, yOffset);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderReplaced.cpp 319 LayoutUnit yOffset = minimumValueForLength(style()->objectPosition().y(), contentRect.height() - finalRect.height());
320 finalRect.move(xOffset, yOffset);
  /external/chromium_org/third_party/freetype/src/cff/
cf2hints.h 218 CF2_Fixed yOffset;
cf2hints.c     [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkMagnifierImageFilter.cpp 31 float yOffset,
38 yOffset,
64 float yOffset,
71 , fYOffset(yOffset)
278 SkScalar yOffset = (texture->origin() == kTopLeft_GrSurfaceOrigin) ? fSrcRect.y() :
283 yOffset / texture->height(),
  /external/freetype/src/cff/
cf2hints.h 219 CF2_Fixed yOffset;
cf2hints.c     [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
cf2hints.h 218 CF2_Fixed yOffset;
cf2hints.c     [all...]
  /external/skia/src/effects/
SkMagnifierImageFilter.cpp 30 float yOffset,
37 yOffset,
64 float yOffset,
71 , fYOffset(yOffset)
258 SkScalar yOffset = (texture->origin() == kTopLeft_GrSurfaceOrigin) ? fSrcRect.y() :
263 yOffset / texture->height(),
  /frameworks/av/media/libstagefright/yuv/
YUVImage.cpp 88 int32_t *yOffset, int32_t *uOffset, int32_t *vOffset) const {
89 *yOffset = y*mWidth + x;
146 int32_t yOffset;
149 if (!getOffsets(x, y, &yOffset, &uOffset, &vOffset)) return false;
151 *yAddr = getYAddress(yOffset);
  /frameworks/native/include/input/
InputTransport.h 93 float yOffset;
240 float yOffset,
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
StateTransitionAnimation.java 153 int yOffset = view.getHeight() / 2;
154 canvas.translate(xOffset, yOffset);
156 mOldScreenTexture.draw(canvas, -xOffset, -yOffset);
168 int yOffset = view.getHeight() / 2;
169 canvas.translate(xOffset, yOffset);
171 canvas.translate(-xOffset, -yOffset);
  /device/generic/goldfish/opengl/system/gralloc/
gralloc.cpp 841 size_t yOffset;
849 yOffset = 0;
860 ycbcr->y = cpu_addr + yOffset;
  /device/moto/shamu/camera/mm-image-codec/qomx_core/
QOMX_JpegExtensions.h 145 * @yOffset - Offset within the Y buffer
161 OMX_U32 yOffset;
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp 774 const int yOffset = -dragImageOffset.y();
777 return IntPoint(mouseDraggedPoint.x() - dragImageOffset.x(), mouseDraggedPoint.y() + yOffset);
779 return IntPoint(dragOrigin.x() - dragImageOffset.x(), dragOrigin.y() + yOffset);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fPrimitiveRestartTests.cpp 468 int yOffset = rnd.getInt(0, yOffsetMax);
472 glViewport(xOffset, yOffset, width, height);
487 glu::readPixels(m_context.getRenderContext(), xOffset, yOffset, resultImg.getAccess());
492 glu::readPixels(m_context.getRenderContext(), xOffset, yOffset, referenceImg.getAccess());
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.h 224 unsigned yOffset() const { return m_yOffset; }

Completed in 4997 milliseconds

12 3 4 5