Searched refs:mAttributes (Results 1 - 11 of 11) sorted by relevance

/frameworks/av/drm/common/
H A DDrmInfo.cpp41 return mAttributes.size();
45 mAttributes.add(key, value);
50 if (NAME_NOT_FOUND != mAttributes.indexOfKey(key)) {
51 return mAttributes.valueFor(key);
57 return mAttributes.indexOfKey(key);
75 return (mIndex < mDrmInfo->mAttributes.size());
79 const String8& key = mDrmInfo->mAttributes.keyAt(mIndex);
103 return mIndex < mDrmInfo->mAttributes.size();
107 String8& value = mDrmInfo->mAttributes.editValueAt(mIndex);
/frameworks/base/core/java/android/hardware/usb/
H A DUsbEndpoint.java36 private final int mAttributes; field in class:UsbEndpoint
46 mAttributes = attributes;
94 return mAttributes;
110 return mAttributes & UsbConstants.USB_ENDPOINT_XFERTYPE_MASK;
133 return "UsbEndpoint[mAddress=" + mAddress + ",mAttributes=" + mAttributes +
158 parcel.writeInt(mAttributes);
/frameworks/base/drm/java/android/drm/
H A DDrmInfo.java39 private final HashMap<String, Object> mAttributes = new HashMap<String, Object>(); field in class:DrmInfo
97 mAttributes.put(key, value);
108 return mAttributes.get(key);
118 return mAttributes.keySet().iterator();
128 return mAttributes.values().iterator();
H A DDrmEvent.java52 private HashMap<String, Object> mAttributes = new HashMap<String, Object>(); field in class:DrmEvent
72 mAttributes = attributes;
126 return mAttributes.get(key);
/frameworks/base/media/java/android/media/
H A DExifInterface.java107 private HashMap<String, String> mAttributes; field in class:ExifInterface
131 return mAttributes.get(tag);
143 String value = mAttributes.get(tag);
161 String value = mAttributes.get(tag);
182 mAttributes.put(tag, value);
186 * Initialize mAttributes with the attributes from the file mFilename.
188 * mAttributes is a HashMap which stores the Exif attributes of the file.
200 mAttributes = new HashMap<String, String>();
231 mAttributes.put(attrName, attrValue);
249 int size = mAttributes
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java34 private final Map<String, String> mAttributes; field in class:BridgeLayoutParamsMapAttributes
37 mAttributes = attributes;
43 return mAttributes.get(name);
/frameworks/base/libs/hwui/
H A DProgram.cpp102 mAttributes.add(name, slot);
108 mAttributes.add(name, bindingSlot);
113 ssize_t index = mAttributes.indexOfKey(name);
115 return mAttributes.valueAt(index);
H A DProgram.h416 KeyedVector<const char*, int> mAttributes; member in class:android::uirenderer::Program
/frameworks/av/include/drm/
H A DDrmInfo.h170 KeyedVector<String8, String8> mAttributes; member in class:android::DrmInfo
/frameworks/base/tools/aapt/
H A DXMLNode.cpp662 return mAttributes;
668 for (size_t i=0; i<mAttributes.size(); i++) {
669 const attribute_entry& ae(mAttributes.itemAt(i));
681 for (size_t i=0; i<mAttributes.size(); i++) {
682 attribute_entry * ae = &mAttributes.editItemAt(i);
779 mAttributes.add(e);
780 mAttributeOrder.add(e.index, mAttributes.size()-1);
787 attribute_entry& e = mAttributes.editItemAt(attrIdx);
795 String8(mAttributes.itemAt(attrIdx).name).string(),
796 String8(mAttributes
[all...]
H A DXMLNode.h188 Vector<attribute_entry> mAttributes; member in class:XMLNode

Completed in 937 milliseconds