Searched defs:bitmapHeight (Results 1 - 10 of 10) sorted by relevance

/frameworks/support/core-utils/api21/android/support/v4/graphics/drawable/
H A DRoundedBitmapDrawable21.java53 void gravityCompatApply(int gravity, int bitmapWidth, int bitmapHeight, argument
55 Gravity.apply(gravity, bitmapWidth, bitmapHeight,
/frameworks/support/core-utils/java/android/support/v4/graphics/drawable/
H A DRoundedBitmapDrawableFactory.java55 void gravityCompatApply(int gravity, int bitmapWidth, int bitmapHeight, argument
57 GravityCompat.apply(gravity, bitmapWidth, bitmapHeight,
/frameworks/base/libs/hwui/
H A DPatchCache.cpp226 const Patch* PatchCache::get( const uint32_t bitmapWidth, const uint32_t bitmapHeight, argument
229 const PatchDescription description(bitmapWidth, bitmapHeight, pixelWidth, pixelHeight, patch);
233 Patch* newMesh = new Patch(bitmapWidth, bitmapHeight,
H A DPatch.cpp38 Patch::Patch(const float bitmapWidth, const float bitmapHeight, argument
93 const float fixed = bitmapHeight - stretchSize;
120 float v2 = std::max(0.0f, stepY - vOffset) / bitmapHeight;
121 v1 += vOffset / bitmapHeight;
129 v1 = stepY / bitmapHeight;
134 if (previousStepY != bitmapHeight) {
H A DPatchCache.h56 const Patch* get(const uint32_t bitmapWidth, const uint32_t bitmapHeight,
91 PatchDescription(const uint32_t bitmapWidth, const uint32_t bitmapHeight, argument
93 mPatch(patch), mBitmapWidth(bitmapWidth), mBitmapHeight(bitmapHeight),
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/
H A DPdfManipulationService.java105 public void renderPage(int pageIndex, int bitmapWidth, int bitmapHeight, argument
128 (float) bitmapHeight / srcHeightPts);
131 displayScale = (float) bitmapHeight / dstHeightPts;
154 clip.bottom = (int) (bitmapHeight - paddingBottomPts * displayScale);
160 Bitmap bitmap = getBitmapForSize(bitmapWidth, bitmapHeight);
/frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
H A DTestUtils.java57 final int bitmapHeight = view.getHeight();
60 final Bitmap bitmap = Bitmap.createBitmap(bitmapWidth, bitmapHeight,
150 int bitmapWidth, int bitmapHeight, @ColorInt int color,
153 for (int row = 0; row < bitmapHeight; row++) {
163 + bitmapWidth + "," + bitmapHeight + ") found "
149 assertAllPixelsOfColor(String failMessagePrefix, @NonNull Bitmap bitmap, int bitmapWidth, int bitmapHeight, @ColorInt int color, int allowedComponentVariance, boolean throwExceptionIfFails) argument
/frameworks/support/core-utils/gingerbread/android/support/v4/graphics/drawable/
H A DRoundedBitmapDrawable.java218 void gravityCompatApply(int gravity, int bitmapWidth, int bitmapHeight, argument
/frameworks/base/libs/hwui/font/
H A DFont.cpp207 uint32_t bitmapWidth, uint32_t bitmapHeight, Rect* bounds, const float* pos) {
206 drawCachedGlyphBitmap(CachedGlyphInfo* glyph, int x, int y, uint8_t* bitmap, uint32_t bitmapWidth, uint32_t bitmapHeight, Rect* bounds, const float* pos) argument
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPageContentRepository.java359 final int bitmapHeight; field in class:PageContentRepository.RenderSpec
362 public RenderSpec(int bitmapWidth, int bitmapHeight, argument
365 this.bitmapHeight = bitmapHeight;
382 if (bitmapHeight != other.bitmapHeight) {
401 && bitmap.getHeight() == bitmapHeight;
407 result = 31 * result + bitmapHeight;
587 final int bitmapSizeInBytes = renderSpec.bitmapWidth * renderSpec.bitmapHeight
836 * mRenderSpec.bitmapHeight * BYTES_PER_PIXE
[all...]

Completed in 801 milliseconds