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

/frameworks/native/include/binder/
H A DPersistableBundle.h32 * C++ implementation of PersistableBundle, a mapping from String values to
35 class PersistableBundle : public Parcelable { class in namespace:android::os
37 PersistableBundle() = default;
38 virtual ~PersistableBundle() = default;
39 PersistableBundle(const PersistableBundle& bundle) = default;
49 * Setters for PersistableBundle. Adds a a key-value pair instantiated with
63 void putPersistableBundle(const String16& key, const PersistableBundle& value);
66 * Getters for PersistableBundle. If |key| exists, these methods write the
80 bool getPersistableBundle(const String16& key, PersistableBundle* ou
[all...]
/frameworks/base/core/java/android/os/
H A DPersistableBundle.java37 public final class PersistableBundle extends BaseBundle implements Cloneable, Parcelable, class in inherits:BaseBundle,Cloneable,Parcelable,XmlUtils.WriteMapCallback
40 public static final PersistableBundle EMPTY;
43 EMPTY = new PersistableBundle();
53 (value instanceof PersistableBundle) || (value == null) ||
58 * Constructs a new, empty PersistableBundle.
60 public PersistableBundle() { method in class:PersistableBundle
66 * Constructs a new, empty PersistableBundle sized to hold the given number of
67 * elements. The PersistableBundle will grow as needed.
69 * @param capacity the initial capacity of the PersistableBundle
71 public PersistableBundle(in method in class:PersistableBundle
82 public PersistableBundle(PersistableBundle b) { method in class:PersistableBundle
97 public PersistableBundle(Bundle b) { method in class:PersistableBundle
107 private PersistableBundle(ArrayMap<String, Object> map) { method in class:PersistableBundle
130 /* package */ PersistableBundle(Parcel parcelledData, int length) { method in class:PersistableBundle
[all...]

Completed in 288 milliseconds