HomeSort by relevance Sort by last modified time
    Searched defs:bitmap (Results 1 - 25 of 1029) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/core/fpdfapi/page/
cpdf_stitchfunc_embeddertest.cpp 17 FPDF_BITMAP bitmap = RenderPage(page); local
18 CompareBitmap(bitmap, 612, 792, "1940568c9ba33bac5d0b1ee9558c76b3");
19 FPDFBitmap_Destroy(bitmap);
  /external/pdfium/core/fpdfapi/render/
fpdf_render_loadimage_embeddertest.cpp 16 FPDF_BITMAP bitmap = RenderPage(page); local
17 CompareBitmap(bitmap, 612, 792, "a14d7ee573c1b2456d7bf6b7762823cf");
18 FPDFBitmap_Destroy(bitmap);
27 FPDF_BITMAP bitmap = RenderPage(page); local
28 CompareBitmap(bitmap, 24, 24, "dc0ea1b743c2edb22c597cadc8537f7b");
29 FPDFBitmap_Destroy(bitmap);
38 FPDF_BITMAP bitmap = RenderPage(page); local
39 CompareBitmap(bitmap, 749, 749, "b9e75190cdc5edf0069a408744ca07dc");
40 FPDFBitmap_Destroy(bitmap);
fpdf_render_pattern_embeddertest.cpp 14 FPDF_BITMAP bitmap = RenderPage(page); local
15 CompareBitmap(bitmap, 612, 792, "1940568c9ba33bac5d0b1ee9558c76b3");
16 FPDFBitmap_Destroy(bitmap);
  /external/pdfium/core/fxcodec/codec/
fx_codec_embeddertest.cpp 16 FPDF_BITMAP bitmap = RenderPage(page); local
17 CompareBitmap(bitmap, 691, 432, "24d75af646f8772c5ee7ced260452ae4");
18 FPDFBitmap_Destroy(bitmap);
  /external/pdfium/core/fxge/
fx_ge_text_embeddertest.cpp 15 FPDF_BITMAP bitmap = RenderPage(page); local
16 FPDFBitmap_Destroy(bitmap);
  /frameworks/opt/bitmap/src/com/android/bitmap/
BitmapCache.java 17 package com.android.bitmap;
DecodeAggregator.java 17 package com.android.bitmap;
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapResource.java 1 package com.bumptech.glide.load.resource.bitmap;
3 import android.graphics.Bitmap;
10 * A resource wrapping a {@link android.graphics.Bitmap} object.
12 public class BitmapResource implements Resource<Bitmap> {
13 private final Bitmap bitmap; field in class:BitmapResource
17 * Returns a new {@link BitmapResource} wrapping the given {@link Bitmap} if the Bitmap is non-null or null if the
18 * given Bitmap is null.
20 * @param bitmap A Bitmap
    [all...]
  /frameworks/support/compat/src/androidTest/java/android/support/v4/testutils/
TestUtils.java 23 import android.graphics.Bitmap;
63 // Create a bitmap
64 Bitmap bitmap = Bitmap.createBitmap(drawableWidth, drawableHeight, Bitmap.Config.ARGB_8888); local
65 // Create a canvas that wraps the bitmap
66 Canvas canvas = new Canvas(bitmap);
69 // And ask the drawable to draw itself to the canvas / bitmap
75 bitmap.getPixels(rowPixels, 0, drawableWidth, 0, row, drawableWidth, 1)
    [all...]
  /frameworks/support/viewpager/src/androidTest/java/android/support/v4/testutils/
TestUtils.java 23 import android.graphics.Bitmap;
63 // Create a bitmap
64 Bitmap bitmap = Bitmap.createBitmap(drawableWidth, drawableHeight, Bitmap.Config.ARGB_8888); local
65 // Create a canvas that wraps the bitmap
66 Canvas canvas = new Canvas(bitmap);
69 // And ask the drawable to draw itself to the canvas / bitmap
75 bitmap.getPixels(rowPixels, 0, drawableWidth, 0, row, drawableWidth, 1)
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
BigRleTest.java 19 import android.graphics.Bitmap;
36 Bitmap bitmap = BitmapFactory.decodeStream(exploitImage); local
ZeroHeightTiffTest.java 19 import android.graphics.Bitmap;
39 Bitmap bitmap = BitmapFactory.decodeStream(exploitImage); local
40 assertNull(bitmap);
  /external/pdfium/fpdfsdk/
fpdfeditimg_unittest.cpp 55 FPDF_BITMAP bitmap = FPDFBitmap_Create(kBitmapSize, kBitmapSize, 0); local
56 FPDFBitmap_FillRect(bitmap, 0, 0, kBitmapSize, kBitmapSize, 0x00000000);
57 EXPECT_EQ(kBitmapSize, FPDFBitmap_GetWidth(bitmap));
58 EXPECT_EQ(kBitmapSize, FPDFBitmap_GetHeight(bitmap));
61 ASSERT_TRUE(FPDFImageObj_SetBitmap(&page, 0, page_image, bitmap));
68 FPDFBitmap_Destroy(bitmap);
fpdfsave_embeddertest.cpp 69 FPDF_BITMAP bitmap = RenderPage(page); local
70 EXPECT_EQ(612, FPDFBitmap_GetWidth(bitmap));
71 EXPECT_EQ(792, FPDFBitmap_GetHeight(bitmap));
72 original_md5[i] = HashBitmap(bitmap);
73 FPDFBitmap_Destroy(bitmap);
87 FPDF_BITMAP bitmap = RenderSavedPage(page); local
88 EXPECT_EQ(original_md5[i], HashBitmap(bitmap));
89 FPDFBitmap_Destroy(bitmap);
  /external/skia/fuzz/oss_fuzz/
FuzzImageFilterDeserialize.cpp 17 SkBitmap bitmap; local
18 bitmap.allocN32Pixels(BitmapSize, BitmapSize);
19 SkCanvas canvas(bitmap);
34 canvas.drawBitmap(bitmap, 0, 0, &paint);
  /external/skia/gm/
colorfilteralpha8.cpp 28 SkBitmap bitmap; variable
30 bitmap.allocPixels(info);
31 bitmap.eraseColor(0x88FFFFFF);
42 canvas->drawBitmap(bitmap, 100.0f, 100.0f, &paint);
  /external/skia/tests/
PathOpsExtendedTest.h 25 const SkPath& one, const SkPath& two, SkBitmap& bitmap);
29 SkBitmap bitmap; local
30 return comparePaths(reporter, filename, one, two, bitmap);
  /external/skqp/gm/
colorfilteralpha8.cpp 28 SkBitmap bitmap; variable
30 bitmap.allocPixels(info);
31 bitmap.eraseColor(0x88FFFFFF);
42 canvas->drawBitmap(bitmap, 100.0f, 100.0f, &paint);
  /external/skqp/tests/
PathOpsExtendedTest.h 25 const SkPath& one, const SkPath& two, SkBitmap& bitmap);
29 SkBitmap bitmap; local
30 return comparePaths(reporter, filename, one, two, bitmap);
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_frame_win.h 23 // Frame data is stored in a GDI bitmap.
31 HBITMAP bitmap() { return bitmap_; } function in class:webrtc::DesktopFrameWin
38 HBITMAP bitmap);
  /external/wpa_supplicant_8/src/ap/
p2p_hostapd.c 96 u8 bitmap; local
105 bitmap = P2P_MAN_DEVICE_MANAGEMENT;
107 bitmap |= P2P_MAN_CROSS_CONNECTION_PERMITTED;
108 bitmap |= P2P_MAN_COEXISTENCE_OPTIONAL;
109 *eid++ = bitmap;
  /frameworks/base/core/jni/android/graphics/
Bitmap.h 20 #include <android/bitmap.h>
26 class Bitmap;
28 namespace bitmap { namespace in namespace:android
36 jobject createBitmap(JNIEnv* env, Bitmap* bitmap,
43 Bitmap& toBitmap(JNIEnv* env, jobject bitmap);
44 Bitmap& toBitmap(JNIEnv* env, jlong bitmapHandle);
47 void imageInfo(JNIEnv* env, jobject bitmap, AndroidBitmapInfo* info);
48 // Returns a pointer to the pixels or nullptr if the bitmap is not vali
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
Parallaxable.java 17 package com.android.bitmap.drawable;
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
Bitmaps.java 19 import android.graphics.Bitmap;
25 public static Bitmap createTestBitmap(int width, int height) {
26 final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); local
28 return bitmap;
  /cts/tests/tests/graphics/src/android/graphics/cts/
MediaVulkanGpuTest.java 19 import android.graphics.Bitmap;
38 Bitmap bitmap = BitmapFactory.decodeStream(assets.open("test_video_frame.png")); local
39 int[] framePixels = new int[bitmap.getWidth() * bitmap.getHeight()];
40 bitmap.getPixels(framePixels, 0, bitmap.getWidth(), 0, 0, bitmap.getWidth(),
41 bitmap.getHeight());

Completed in 1236 milliseconds

1 2 3 4 5 6 7 8 91011>>