Home | History | Annotate | Download | only in os

Lines Matching refs:loader

108  * that class to be reconstructed from the appropriate class loader when
1402 public final void readMap(Map outVal, ClassLoader loader) {
1404 readMapInternal(outVal, N, loader);
1409 * dataPosition(), using the given class loader to load any enclosed
1410 * Parcelables. If it is null, the default class loader is used.
1412 loader) {
1414 readListInternal(outVal, N, loader);
1421 * class loader to load any enclosed Parcelables. Returns null if
1424 public final HashMap readHashMap(ClassLoader loader)
1431 readMapInternal(m, N, loader);
1446 * dataPosition(), using the given class loader to initialize the class
1447 * loader of the Bundle for later retrieval of Parcelable objects.
1450 public final Bundle readBundle(ClassLoader loader) {
1457 if (loader != null) {
1458 bundle.setClassLoader(loader);
1527 * null. The given class loader will be used to load any enclosed
1530 public final ArrayList readArrayList(ClassLoader loader) {
1536 readListInternal(l, N, loader);
1543 * null. The given class loader will be used to load any enclosed
1546 public final Object[] readArray(ClassLoader loader) {
1552 readArrayInternal(l, N, loader);
1559 * null. The given class loader will be used to load any enclosed
1562 public final SparseArray readSparseArray(ClassLoader loader) {
1568 readSparseArrayInternal(sa, N, loader);
1825 * Read a typed object from a parcel. The given class loader will be
1827 * loader will be used.
1829 public final Object readValue(ClassLoader loader) {
1843 return readHashMap(loader);
1846 return readParcelable(loader);
1867 return readArrayList(loader);
1885 return readArray(loader);
1900 return readParcelableArray(loader);
1903 return readSparseArray(loader);
1909 return readBundle(loader); // loading will be deferred
1919 * Read and return a new Parcelable from the parcel. The given class loader
1921 * class loader will be used.
1922 * @param loader A ClassLoader from which to instantiate the Parcelable
1923 * object, or null for the default class loader.
1929 public final <T extends Parcelable> T readParcelable(ClassLoader loader) {
1936 HashMap<String,Parcelable.Creator> map = mCreators.get(loader);
1939 mCreators.put(loader, map);
1944 Class c = loader == null ?
1945 Class.forName(name) : Class.forName(name, true, loader);
1986 * The given class loader will be used to load any enclosed
1990 public final Parcelable[] readParcelableArray(ClassLoader loader) {
1997 p[i] = (Parcelable) readParcelable(loader);
2080 ClassLoader loader) {
2082 Object key = readValue(loader);
2083 Object value = readValue(loader);
2090 ClassLoader loader) {
2092 Object value = readValue(loader);
2100 ClassLoader loader) {
2102 Object value = readValue(loader);
2109 ClassLoader loader) {
2112 Object value = readValue(loader);