Searched refs:SortedList (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/libs/hwui/utils/
H A DSortedList.h36 class SortedList: private SortedListImpl { class in namespace:android::uirenderer
40 SortedList();
41 SortedList(const SortedList<TYPE>& rhs);
42 virtual ~SortedList();
44 const SortedList<TYPE>& operator =(const SortedList<TYPE>& rhs) const;
45 SortedList<TYPE>& operator =(const SortedList<TYPE>& rhs);
86 ssize_t merge(const SortedList<TYP
110 inline SortedList<TYPE>::SortedList(): function in class:android::uirenderer::SortedList
117 inline SortedList<TYPE>::SortedList(const SortedList<TYPE>& rhs): SortedListImpl(rhs) { function in class:android::uirenderer::SortedList
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/util/
H A DSortedListAdapterCallback.java19 import android.support.v7.util.SortedList;
23 * A {@link SortedList.Callback} implementation that can bind a {@link SortedList} to a
26 public abstract class SortedListAdapterCallback<T2> extends SortedList.Callback<T2> {
31 * Creates a {@link SortedList.Callback} that will forward data change events to the provided
34 * @param adapter The Adapter instance which should receive events from the SortedList.
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
H A DSortedListAdapterCallbackWrapperTest.java25 import static android.support.v7.util.SortedList.BatchedCallback.TYPE_NONE;
26 import static android.support.v7.util.SortedList.BatchedCallback.TYPE_ADD;
27 import static android.support.v7.util.SortedList.BatchedCallback.TYPE_REMOVE;
28 import static android.support.v7.util.SortedList.BatchedCallback.TYPE_CHANGE;
29 import static android.support.v7.util.SortedList.BatchedCallback.TYPE_MOVE;
38 private SortedList.Callback<Object> mCallback = new SortedList.Callback<Object>() {
83 private SortedList.BatchedCallback<Object> mBatched =
84 new SortedList.BatchedCallback<Object>(mCallback);
H A DSortedListTest.java36 SortedList<Item> mList;
41 private SortedList.Callback<Item> mCallback;
64 mCallback = new SortedList.Callback<Item>() {
108 mList = new SortedList<Item>(Item.class, mCallback);
245 assertFalse(mList.indexOf(copy.get(index)) == SortedList.INVALID_POSITION);
265 log.append("SortedList:\n");
/frameworks/base/libs/hwui/
H A DLayerCache.h22 #include "utils/SortedList.h"
136 SortedList<LayerEntry> mCache;
H A DRenderBufferCache.h23 #include "utils/SortedList.h"
121 SortedList<RenderBufferEntry> mCache;
/frameworks/support/v7/recyclerview/src/android/support/v7/util/
H A DSortedList.java37 public class SortedList<T> { class
65 * The callback instance that controls the behavior of the SortedList and get notified when
76 * Creates a new SortedList of type T.
78 * @param klass The class of the contents of the SortedList.
79 * @param callback The callback that controls the behavior of SortedList.
81 public SortedList(Class<T> klass, Callback<T> callback) { method in class:SortedList
86 * Creates a new SortedList of type T.
88 * @param klass The class of the contents of the SortedList.
89 * @param callback The callback that controls the behavior of SortedList.
92 public SortedList(Clas method in class:SortedList
[all...]

Completed in 218 milliseconds