/frameworks/av/media/libstagefright/yuv/ |
D | YUVImage.cpp | 88 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/ |
D | Font.cpp | 242 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()
|
D | Font.h | 89 int numGlyphs, const SkPath* path, float hOffset, float vOffset); 141 void drawCachedGlyph(CachedGlyphInfo* glyph, float x, float hOffset, float vOffset,
|
/frameworks/base/core/jni/ |
D | android_graphics_Canvas.cpp | 583 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/ |
D | Patch.cpp | 121 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()
|
D | Canvas.h | 159 float hOffset, float vOffset, const SkPaint& paint) = 0;
|
D | FontRenderer.h | 98 float hOffset, float vOffset, Rect* bounds, TextDrawFunctor* functor);
|
D | SkiaCanvas.cpp | 127 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()
|
D | DisplayListCanvas.cpp | 428 const SkPath& path, float hOffset, float vOffset, const SkPaint& paint) { in drawTextOnPath() argument 434 hOffset, vOffset, refPaint(&paint)); in drawTextOnPath()
|
D | FontRenderer.cpp | 673 float hOffset, float vOffset, Rect* bounds, TextDrawFunctor* functor) { in renderTextOnPath() argument 680 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, path, hOffset, vOffset); in renderTextOnPath()
|
D | DisplayListCanvas.h | 237 float hOffset, float vOffset, const SkPaint& paint) override;
|
D | OpenGLRenderer.h | 215 float hOffset, float vOffset, const SkPaint* paint);
|
D | DisplayListOp.h | 1283 const SkPath* path, float hOffset, float vOffset, const SkPaint* paint) in DrawTextOnPathOp() argument 1285 mPath(path), mHOffset(hOffset), mVOffset(vOffset) { in DrawTextOnPathOp()
|
D | OpenGLRenderer.cpp | 2294 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/ |
D | FakeShadowDrawable.java | 135 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/ |
D | RoundRectDrawableWithShadow.java | 158 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/ |
D | ShadowDrawableWrapper.java | 146 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/ |
D | YUVImage.h | 150 int32_t *yOffset, int32_t *uOffset, int32_t *vOffset) const;
|
/frameworks/base/graphics/java/android/graphics/ |
D | Canvas.java | 1882 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/ |
D | AudioEffect.java | 1172 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/ |
D | RotarySelector.java | 355 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/ |
D | Canvas_Delegate.java | 891 float vOffset, int bidiFlags, in native_drawTextOnPath() argument 902 float vOffset, in native_drawTextOnPath() argument
|