Home
last modified time | relevance | path

Searched refs:vOffset (Results 1 – 22 of 22) sorted by relevance

/frameworks/av/media/libstagefright/yuv/
DYUVImage.cpp88 int32_t *yOffset, int32_t *uOffset, int32_t *vOffset) const { in getOffsets()
94 *vOffset = uvOffset; in getOffsets()
99 *vOffset = 2*uvOffset; in getOffsets()
148 int32_t vOffset; in getYUVAddresses() local
149 if (!getOffsets(x, y, &yOffset, &uOffset, &vOffset)) return false; in getYUVAddresses()
153 *vAddr = getVAddress(vOffset); in getYUVAddresses()
/frameworks/base/libs/hwui/font/
DFont.cpp242 void Font::drawCachedGlyph(CachedGlyphInfo* glyph, float x, float hOffset, float vOffset, in drawCachedGlyph() argument
247 vOffset += glyph->mBitmapTop + height; in drawCachedGlyph()
256 destination[0].set(-tangent->fX * halfWidth - tangent->fY * vOffset, in drawCachedGlyph()
257 -tangent->fY * halfWidth + tangent->fX * vOffset); in drawCachedGlyph()
258 destination[1].set(tangent->fX * halfWidth - tangent->fY * vOffset, in drawCachedGlyph()
259 tangent->fY * halfWidth + tangent->fX * vOffset); in drawCachedGlyph()
306 int numGlyphs, const SkPath* path, float hOffset, float vOffset) { in render() argument
346 drawCachedGlyph(cachedGlyph, penX, hOffset, vOffset, measure, &position, &tangent); in render()
DFont.h89 int numGlyphs, const SkPath* path, float hOffset, float vOffset);
141 void drawCachedGlyph(CachedGlyphInfo* glyph, float x, float hOffset, float vOffset,
/frameworks/base/core/jni/
Dandroid_graphics_Canvas.cpp583 float vOffset, const Paint& paint, const SkPath& path) in DrawTextOnPathFunctor() argument
584 : layout(layout), canvas(canvas), hOffset(hOffset), vOffset(vOffset), in DrawTextOnPathFunctor()
592 float y = vOffset + layout.getY(i); in operator ()()
600 float vOffset; member in android::CanvasJNI::DrawTextOnPathFunctor
606 const SkPath& path, float hOffset, float vOffset, in drawTextOnPath() argument
618 DrawTextOnPathFunctor f(layout, canvas, hOffset, vOffset, paintCopy, path); in drawTextOnPath()
624 jfloat vOffset, jint bidiFlags, jlong paintHandle, in drawTextOnPathChars() argument
633 hOffset, vOffset, *paint, typeface); in drawTextOnPathChars()
639 jlong pathHandle, jfloat hOffset, jfloat vOffset, in drawTextOnPathString() argument
649 hOffset, vOffset, *paint, typeface); in drawTextOnPathString()
/frameworks/base/libs/hwui/
DPatch.cpp121 float vOffset = y1 == y2 ? 0.0f : 0.5 - (0.5 * segment / (y2 - y1)); in Patch() local
122 float v2 = std::max(0.0f, stepY - vOffset) / bitmapHeight; in Patch()
123 v1 += vOffset / bitmapHeight; in Patch()
DCanvas.h159 float hOffset, float vOffset, const SkPaint& paint) = 0;
DFontRenderer.h98 float hOffset, float vOffset, Rect* bounds, TextDrawFunctor* functor);
DSkiaCanvas.cpp127 float hOffset, float vOffset, const SkPaint& paint) override;
700 float hOffset, float vOffset, const SkPaint& paint) { in drawTextOnPath() argument
701 mCanvas->drawTextOnPathHV(glyphs, count << 1, path, hOffset, vOffset, paint); in drawTextOnPath()
DDisplayListCanvas.cpp428 const SkPath& path, float hOffset, float vOffset, const SkPaint& paint) { in drawTextOnPath() argument
434 hOffset, vOffset, refPaint(&paint)); in drawTextOnPath()
DFontRenderer.cpp673 float hOffset, float vOffset, Rect* bounds, TextDrawFunctor* functor) { in renderTextOnPath() argument
680 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, path, hOffset, vOffset); in renderTextOnPath()
DDisplayListCanvas.h237 float hOffset, float vOffset, const SkPaint& paint) override;
DOpenGLRenderer.h215 float hOffset, float vOffset, const SkPaint* paint);
DDisplayListOp.h1283 const SkPath* path, float hOffset, float vOffset, const SkPaint* paint) in DrawTextOnPathOp() argument
1285 mPath(path), mHOffset(hOffset), mVOffset(vOffset) { in DrawTextOnPathOp()
DOpenGLRenderer.cpp2294 const SkPath* path, float hOffset, float vOffset, const SkPaint* paint) {
2315 hOffset, vOffset, hasLayer() ? &bounds : nullptr, &functor)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DFakeShadowDrawable.java135 int vOffset = (int) Math.ceil(calculateVerticalPadding(mRawMaxShadowSize, mCornerRadius, in getPadding() local
139 padding.set(hOffset, vOffset, hOffset, vOffset); in getPadding()
/frameworks/support/v7/cardview/eclair-mr1/android/support/v7/widget/
DRoundRectDrawableWithShadow.java158 int vOffset = (int) Math.ceil(calculateVerticalPadding(mRawMaxShadowSize, mCornerRadius, in getPadding() local
162 padding.set(hOffset, vOffset, hOffset, vOffset); in getPadding()
/frameworks/support/design/base/android/support/design/widget/
DShadowDrawableWrapper.java146 int vOffset = (int) Math.ceil(calculateVerticalPadding(mRawMaxShadowSize, mCornerRadius, in getPadding() local
150 padding.set(hOffset, vOffset, hOffset, vOffset); in getPadding()
/frameworks/av/include/media/stagefright/
DYUVImage.h150 int32_t *yOffset, int32_t *uOffset, int32_t *vOffset) const;
/frameworks/base/graphics/java/android/graphics/
DCanvas.java1882 float hOffset, float vOffset, @NonNull Paint paint) { in drawTextOnPath() argument
1887 path.ni(), hOffset, vOffset, in drawTextOnPath()
1905 float vOffset, @NonNull Paint paint) { in drawTextOnPath() argument
1907 native_drawTextOnPath(mNativeCanvasWrapper, text, path.ni(), hOffset, vOffset, in drawTextOnPath()
2118 float vOffset, int bidiFlags, in native_drawTextOnPath() argument
2123 float vOffset, in native_drawTextOnPath() argument
/frameworks/base/media/java/android/media/audiofx/
DAudioEffect.java1172 int vOffset = msg.arg1; in handleMessage() local
1182 System.arraycopy(p, vOffset, value, 0, vsize); in handleMessage()
/frameworks/base/core/java/com/android/internal/widget/
DRotarySelector.java355 final int vOffset = mBackgroundWidth - height; in onDraw() local
356 final int midX = isHoriz() ? width / 2 : mBackgroundWidth / 2 - vOffset; in onDraw()
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DCanvas_Delegate.java891 float vOffset, int bidiFlags, in native_drawTextOnPath() argument
902 float vOffset, in native_drawTextOnPath() argument