HomeSort by relevance Sort by last modified time
    Searched refs:ParcelableSparseArray (Results 1 - 13 of 13) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/util/
ParcelableSparseArray.java 22 public class ParcelableSparseArray extends SparseArray<Parcelable> implements Parcelable {
36 public static final Parcelable.Creator<ParcelableSparseArray> CREATOR =
37 new Parcelable.Creator<ParcelableSparseArray>() {
38 public ParcelableSparseArray createFromParcel(Parcel source) {
39 final ParcelableSparseArray array = new ParcelableSparseArray();
48 public ParcelableSparseArray[] newArray(int size) {
49 return new ParcelableSparseArray[size];
  /frameworks/support/design/src/android/support/design/internal/
ParcelableSparseArray.java 30 public class ParcelableSparseArray extends SparseArray<Parcelable> implements Parcelable {
32 public ParcelableSparseArray() {
36 public ParcelableSparseArray(Parcel source, ClassLoader loader) {
66 public static final Creator<ParcelableSparseArray> CREATOR =
67 new ClassLoaderCreator<ParcelableSparseArray>() {
69 public ParcelableSparseArray createFromParcel(Parcel source, ClassLoader loader) {
70 return new ParcelableSparseArray(source, loader);
74 public ParcelableSparseArray createFromParcel(Parcel source) {
75 return new ParcelableSparseArray(source, null);
79 public ParcelableSparseArray[] newArray(int size)
    [all...]
NavigationMenuPresenter.java 562 SparseArray<ParcelableSparseArray> actionViewStates = new SparseArray<>();
569 ParcelableSparseArray container = new ParcelableSparseArray();
597 SparseArray<ParcelableSparseArray> actionViewStates = state
613 ParcelableSparseArray container = actionViewStates.get(item.getItemId());
  /frameworks/base/core/java/android/appwidget/
AppWidgetHostView.java 216 final ParcelableSparseArray jail = new ParcelableSparseArray();
230 ParcelableSparseArray jail = null;
231 if (parcelable != null && parcelable instanceof ParcelableSparseArray) {
232 jail = (ParcelableSparseArray) parcelable;
235 if (jail == null) jail = new ParcelableSparseArray();
743 private static class ParcelableSparseArray extends SparseArray<Parcelable> implements Parcelable {
757 public static final Parcelable.Creator<ParcelableSparseArray> CREATOR =
758 new Parcelable.Creator<ParcelableSparseArray>() {
759 public ParcelableSparseArray createFromParcel(Parcel source)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java 59 import com.android.launcher3.util.ParcelableSparseArray;
433 ParcelableSparseArray jail = getJailedArray(container);
446 private ParcelableSparseArray getJailedArray(SparseArray<Parcelable> container) {
448 return parcelable instanceof ParcelableSparseArray ?
449 (ParcelableSparseArray) parcelable : new ParcelableSparseArray();
    [all...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 
  /frameworks/base/
compiled-classes-phone 682 android.appwidget.AppWidgetHostView$ParcelableSparseArray
683 android.appwidget.AppWidgetHostView$ParcelableSparseArray$1
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 169 milliseconds