HomeSort by relevance Sort by last modified time
    Searched defs:mAttributes (Results 1 - 19 of 19) sorted by null

  /frameworks/base/drm/java/android/drm/
DrmInfo.java 39 private final HashMap<String, Object> mAttributes = new HashMap<String, Object>();
83 mAttributes.put(key, value);
94 return mAttributes.get(key);
104 return mAttributes.keySet().iterator();
114 return mAttributes.values().iterator();
DrmEvent.java 48 private HashMap<String, Object> mAttributes = new HashMap<String, Object>();
68 mAttributes = attributes;
122 return mAttributes.get(key);
  /frameworks/base/core/java/android/hardware/usb/
UsbEndpoint.java 36 private final int mAttributes;
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/include/drm/
DrmInfo.h 170 KeyedVector<String8, String8> mAttributes;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeLayoutParamsMapAttributes.java 34 private final Map<String, String> mAttributes;
37 mAttributes = attributes;
42 return mAttributes.get(name);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
DeclareStyleableInfo.java 29 private final AttributeInfo[] mAttributes;
43 mAttributes = attributes == null ? new AttributeInfo[0] : attributes;
66 mAttributes = new AttributeInfo[0];
68 mAttributes = new AttributeInfo[attrs.length];
69 System.arraycopy(attrs, 0, mAttributes, 0, attrs.length);
80 return mAttributes;
ViewClassInfo.java 37 private AttributeInfo[] mAttributes;
47 private AttributeInfo[] mAttributes;
54 mAttributes = new AttributeInfo[0];
71 return mAttributes;
75 mAttributes = attributes;
89 mAttributes = new AttributeInfo[0];
119 return mAttributes;
146 mAttributes = attributes;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestDragElement.java 35 private Map<String, TestAttribute> mAttributes = new HashMap<String, TestAttribute>();
62 if (mAttributes == null) {
63 mAttributes = new HashMap<String, TestAttribute>();
66 mAttributes.put(uri + name, new TestAttribute(uri, name, value));
103 if (mAttributes == null) {
107 return mAttributes.get(uri + localName);
111 return mAttributes.values().toArray(new IDragAttribute[mAttributes.size()]);
140 return "TestDragElement [fqn=" + mFqcn + ", attributes=" + mAttributes + ", bounds="
TestNode.java 43 private Map<String, IAttribute> mAttributes = new HashMap<String, IAttribute>();
129 return mAttributes.values().toArray(new IAttribute[mAttributes.size()]);
146 IAttribute attr = mAttributes.get(uri + attrName);
173 mAttributes.put(uri + localName, new TestAttribute(uri, localName, value));
180 + ", attributes=" + mAttributes + ", bounds=" + mBounds + "]";
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyStyles.java 128 private final HashMap<Integer, Object> mAttributes = new HashMap<Integer, Object>();
133 ? super.getTextArray(a, index) : (CharSequence[])mAttributes.get(index);
139 ? super.getText(a, index) : (CharSequence)mAttributes.get(index);
144 final Integer value = (Integer)mAttributes.get(index);
150 final Integer value = (Integer)mAttributes.get(index);
156 final Boolean value = (Boolean)mAttributes.get(index);
183 mAttributes.put(index, a.getText(index));
188 mAttributes.put(index, a.getInt(index, 0));
192 final Integer value = (Integer)mAttributes.get(index);
194 mAttributes.put(index, a.getInt(index, 0) | (value != null ? value : 0))
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Shader.h 139 AttributeArray mAttributes;
  /frameworks/base/tools/aapt/
XMLNode.h 188 Vector<attribute_entry> mAttributes;
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 29 private NamedNodeMap mAttributes = new NamedNodeMapImpl();
59 return (Attr)mAttributes.getNamedItem(name);
111 mAttributes.setNamedItem(attribute);
147 return mAttributes;
152 return (mAttributes.getLength() > 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
WidgetPullParser.java 37 private String[][] mAttributes = new String[][] {
47 mAttributes[0][1] = segments[segments.length-1];
68 return mAttributes.length; // text attribute
72 if (index < mAttributes.length) {
73 return mAttributes[index][0];
89 if (index < mAttributes.length) {
90 return mAttributes[index][1];
98 for (String[] attribute : mAttributes) {
  /frameworks/base/media/java/android/media/
ExifInterface.java 107 private HashMap<String, String> mAttributes;
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.size()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ElementDescriptor.java 51 private AttributeDescriptor[] mAttributes;
172 mAttributes != null ? mAttributes.length : 0,
296 return mAttributes;
301 mAttributes = attributes;
457 for (AttributeDescriptor desc : mAttributes) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElement.java 43 private final List<IDragAttribute> mAttributes = new ArrayList<IDragAttribute>();
103 mCachedAttributes = mAttributes.toArray(new IDragAttribute[mAttributes.size()]);
109 for (IDragAttribute attr : mAttributes) {
127 mAttributes.add(attr);
153 for (IDragAttribute a : mAttributes) {
291 mAttributes.size() == se.mAttributes.size() &&
293 mAttributes.equals(se.mAttributes) &
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 42 private MockNamedNodeMap mAttributes;
95 if (mAttributes == null) {
96 mAttributes = new MockNamedNodeMap();
99 MockXmlNode node = mAttributes.addAttribute(namespaceURI, localName, value);
128 return mAttributes;
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 1099 milliseconds