Searched defs:PersistableBundle (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/include/binder/
H A DPersistableBundle.h33 * C++ implementation of PersistableBundle, a mapping from String values to
36 class PersistableBundle : public Parcelable { class in namespace:android::os
38 PersistableBundle() = default;
39 virtual ~PersistableBundle() = default;
40 PersistableBundle(const PersistableBundle& bundle) = default;
50 * Setters for PersistableBundle. Adds a a key-value pair instantiated with
64 void putPersistableBundle(const String16& key, const PersistableBundle& value);
67 * Getters for PersistableBundle. If |key| exists, these methods write the
81 bool getPersistableBundle(const String16& key, PersistableBundle* ou
[all...]
/frameworks/native/libs/binder/include/binder/
H A DPersistableBundle.h33 * C++ implementation of PersistableBundle, a mapping from String values to
36 class PersistableBundle : public Parcelable { class in namespace:android::os
38 PersistableBundle() = default;
39 virtual ~PersistableBundle() = default;
40 PersistableBundle(const PersistableBundle& bundle) = default;
50 * Setters for PersistableBundle. Adds a a key-value pair instantiated with
64 void putPersistableBundle(const String16& key, const PersistableBundle& value);
67 * Getters for PersistableBundle. If |key| exists, these methods write the
81 bool getPersistableBundle(const String16& key, PersistableBundle* ou
[all...]
/frameworks/base/core/java/android/os/
H A DPersistableBundle.java39 public final class PersistableBundle extends BaseBundle implements Cloneable, Parcelable, class in inherits:BaseBundle,Cloneable,Parcelable,XmlUtils.WriteMapCallback
42 public static final PersistableBundle EMPTY;
45 EMPTY = new PersistableBundle();
55 (value instanceof PersistableBundle) || (value == null) ||
60 * Constructs a new, empty PersistableBundle.
62 public PersistableBundle() { method in class:PersistableBundle
68 * Constructs a new, empty PersistableBundle sized to hold the given number of
69 * elements. The PersistableBundle will grow as needed.
71 * @param capacity the initial capacity of the PersistableBundle
73 public PersistableBundle(in method in class:PersistableBundle
87 public PersistableBundle(PersistableBundle b) { method in class:PersistableBundle
102 public PersistableBundle(Bundle b) { method in class:PersistableBundle
112 private PersistableBundle(ArrayMap<String, Object> map) { method in class:PersistableBundle
135 /* package */ PersistableBundle(Parcel parcelledData, int length) { method in class:PersistableBundle
143 PersistableBundle(boolean doInit) { method in class:PersistableBundle
[all...]

Completed in 77 milliseconds