HomeSort by relevance Sort by last modified time
    Searched defs:Recycler (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Support/
Recycler.h 1 //==- llvm/Support/Recycler.h - Recycling Allocator --------------*- C++ -*-==//
10 // This file defines the Recycler class template. See the doxygen comment for
11 // Recycler for more details.
32 /// RecyclerStruct - Implementation detail for Recycler. This is a
33 /// class that the recycler imposes on free'd memory to carve out
58 llvm_unreachable("Recycler's ilist_traits shouldn't see a deleteNode call!");
62 /// Recycler - This class manages a linked-list of deallocated nodes
67 class Recycler {
74 ~Recycler() {
77 // clear() before deleting the Recycler
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 39 * The recycler is responsible for deleting old messages.
41 public abstract class Recycler {
43 private static final String TAG = "Recycler";
66 Recycler smsRecycler = getSmsRecycler();
67 Recycler mmsRecycler = getMmsRecycler();
74 Log.v(TAG, "Recycler.deleteOldMessages this: " + this);
94 Log.v(TAG, "Recycler.deleteOldMessagesByThreadId this: " + this +
132 public static class SmsRecycler extends Recycler {
239 Log.v(TAG, "Recycler message " +
282 public static class MmsRecycler extends Recycler {
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 64 // ImageViewTouchBase will pass a Bitmap to the Recycler if it has finished
66 public interface Recycler {
70 public void setRecycler(Recycler r) {
74 private Recycler mRecycler;

Completed in 95 milliseconds