HomeSort by relevance Sort by last modified time
    Searched refs:bitmaps (Results 1 - 25 of 45) sorted by null

1 2

  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
AlbumArtCache.java 96 Bitmap[] bitmaps; local
102 bitmaps = new Bitmap[] {bitmap, icon};
103 mCache.put(artUrl, bitmaps);
109 return bitmaps;
113 protected void onPostExecute(Bitmap[] bitmaps) {
114 if (bitmaps == null) {
115 listener.onError(artUrl, new IllegalArgumentException("got null bitmaps"));
118 bitmaps[BIG_BITMAP_INDEX], bitmaps[ICON_BITMAP_INDEX]);
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
AlbumArtCache.java 97 Bitmap[] bitmaps; local
103 bitmaps = new Bitmap[] {bitmap, icon};
104 mCache.put(artUrl, bitmaps);
109 return bitmaps;
113 protected void onPostExecute(Bitmap[] bitmaps) {
114 if (bitmaps == null) {
115 listener.onError(artUrl, new IllegalArgumentException("got null bitmaps"));
118 bitmaps[BIG_BITMAP_INDEX], bitmaps[ICON_BITMAP_INDEX]);
  /packages/apps/Gallery/src/com/android/camera/
PhotoAppWidgetBind.java 43 // This is dangerous because the caller could set bitmaps on
52 final ArrayList<Bitmap> bitmaps = local
55 if (appWidgetIds == null || bitmaps == null
56 || appWidgetIds.length != bitmaps.size()) {
66 helper.setPhoto(appWidgetId, bitmaps.get(i));
  /external/skia/tests/
CanvasStateTest.cpp 101 SkBitmap bitmaps[2]; local
103 bitmaps[j].allocPixels(SkImageInfo::Make(WIDTH, HEIGHT,
107 SkCanvas canvas(bitmaps[j]);
145 // now we memcmp the two bitmaps
146 REPORTER_ASSERT(reporter, bitmaps[0].getSize() == bitmaps[1].getSize());
147 REPORTER_ASSERT(reporter, !memcmp(bitmaps[0].getPixels(),
148 bitmaps[1].getPixels(),
149 bitmaps[0].getSize()));
208 SkBitmap bitmaps[2] local
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
sbixBitmapSet.py 28 self.bitmaps = {}
42 # calculate number of bitmaps
46 # ^ -1 because there's one more offset than bitmaps
50 for i in range(self.numBitmaps + 1): # + 1 because there's one more offset than bitmaps
55 # iterate through offset list and slice raw data into bitmaps
59 self.bitmaps[myBitmap.glyphName] = myBitmap
72 if glyphName in self.bitmaps:
74 myBitmap = self.bitmaps[glyphName]
110 if glyphOrder[i] in self.bitmaps:
111 self.bitmaps[glyphOrder[i]].toXML(xmlWriter, ttFont
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue11286.go 7 // Test that pointer bitmaps of types with large scalar tails are
issue7944.go 8 // Liveness bitmaps said b was live at call to g,
  /prebuilts/go/linux-x86/test/fixedbugs/
issue11286.go 7 // Test that pointer bitmaps of types with large scalar tails are
issue7944.go 8 // Liveness bitmaps said b was live at call to g,
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
LruBitmapPool.java 97 // Bitmaps in the pool contain random data that in some cases must be cleared for an image to be rendered
187 private final Set<Bitmap> bitmaps = Collections.synchronizedSet(new HashSet<Bitmap>()); field in class:LruBitmapPool.ThrowingBitmapTracker
191 if (bitmaps.contains(bitmap)) {
195 bitmaps.add(bitmap);
200 if (!bitmaps.contains(bitmap)) {
203 bitmaps.remove(bitmap);
  /system/extras/ext4_utils/
allocate.h 51 u8 *bitmaps; member in struct:block_group_info
allocate.c 294 bg->bitmaps = calloc(info.block_size, 2);
295 bg->block_bitmap = bg->bitmaps;
296 bg->inode_bitmap = bg->bitmaps + info.block_size;
304 sparse_file_add_data(ext4_sparse_file, bg->bitmaps, 2 * info.block_size,
350 free(aux_info.bgs[i].bitmaps);
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/service/
UtilityService.java 333 HashMap<String, Bitmap> bitmaps = new HashMap<>(); local
336 bitmaps.put(attractions.get(i).name,
361 .bigPicture(bitmaps.get(attraction.name))
391 .setBackground(bitmaps.get(attractions.get(i).name))
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/service/
UtilityService.java 333 HashMap<String, Bitmap> bitmaps = new HashMap<>(); local
336 bitmaps.put(attractions.get(i).name,
361 .bigPicture(bitmaps.get(attraction.name))
391 .setBackground(bitmaps.get(attractions.get(i).name))
  /development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/service/
UtilityService.java 333 HashMap<String, Bitmap> bitmaps = new HashMap<>(); local
336 bitmaps.put(attractions.get(i).name,
361 .bigPicture(bitmaps.get(attraction.name))
391 .setBackground(bitmaps.get(attractions.get(i).name))
  /frameworks/base/libs/hwui/tests/unit/
RecordingCanvasTests.cpp 751 auto& bitmaps = dl->getBitmapResources(); local
752 EXPECT_EQ(1u, bitmaps.size());
769 auto& bitmaps = dl->getBitmapResources(); local
770 EXPECT_EQ(1u, bitmaps.size());
798 auto& bitmaps = dl->getBitmapResources(); local
799 EXPECT_EQ(1u, bitmaps.size());
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
plive.go     [all...]
obj.go 275 // Runtime reads the bitmaps as byte arrays. Oblige.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
plive.go     [all...]
obj.go 275 // Runtime reads the bitmaps as byte arrays. Oblige.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
UserSwitcherController.java 180 SparseArray<Bitmap> bitmaps = new SparseArray<>(mUsers.size()); local
188 bitmaps.put(r.info.id, r.picture);
197 final SparseArray<Bitmap> bitmaps = params[0]; local
222 Bitmap picture = bitmaps.get(info.id);
290 }.execute((SparseArray) bitmaps);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/gcprog/
gcprog.go 5 // Package gcprog implements an encoder for packed GC pointer bitmaps,
  /prebuilts/go/linux-x86/src/cmd/internal/gcprog/
gcprog.go 5 // Package gcprog implements an encoder for packed GC pointer bitmaps,
  /prebuilts/go/darwin-x86/src/runtime/
mbitmap.go 5 // Garbage collector: type and heap bitmaps.
7 // Stack, data, and bss bitmaps
10 // by 1-bit bitmaps in which 0 means uninteresting and 1 means live pointer
25 // bitmaps: 0 means uninteresting and 1 means live pointer to be visited during GC.
607 // If dst is a global, use the data or BSS bitmaps to
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mbitmap.go 5 // Garbage collector: type and heap bitmaps.
7 // Stack, data, and bss bitmaps
10 // by 1-bit bitmaps in which 0 means uninteresting and 1 means live pointer
25 // bitmaps: 0 means uninteresting and 1 means live pointer to be visited during GC.
607 // If dst is a global, use the data or BSS bitmaps to
    [all...]

Completed in 1183 milliseconds

1 2