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

1 2

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadRecord.java 29 public final ContentValues mAttributes;
32 mAttributes = attributes;
35 return null == mAttributes;
  /frameworks/base/drm/java/android/drm/
DrmInfo.java 39 private final HashMap<String, Object> mAttributes = new HashMap<String, Object>();
97 mAttributes.put(key, value);
108 return mAttributes.get(key);
118 return mAttributes.keySet().iterator();
128 return mAttributes.values().iterator();
DrmEvent.java 52 private HashMap<String, Object> mAttributes = new HashMap<String, Object>();
72 mAttributes = attributes;
126 return mAttributes.get(key);
  /frameworks/av/include/drm/
DrmInfo.h 170 KeyedVector<String8, String8> mAttributes;
  /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);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwPdfExporter.java 30 private AwPdfExportAttributes mAttributes;
58 mAttributes = attributes;
78 mAttributes = null;
85 return mAttributes.pageWidth;
90 return mAttributes.pageHeight;
95 return mAttributes.dpi;
100 return mAttributes.leftMargin;
105 return mAttributes.rightMargin;
110 return mAttributes.topMargin;
115 return mAttributes.bottomMargin
    [all...]
AwPrintDocumentAdapter.java 31 private PrintAttributes mAttributes;
46 mAttributes = newAttributes;
62 if (mAttributes.getMediaSize() == null) {
65 if (mAttributes.getResolution() == null) {
68 if (mAttributes.getMinMargins() == null) {
74 pdfAttributes.pageWidth = mAttributes.getMediaSize().getWidthMils();
75 pdfAttributes.pageHeight = mAttributes.getMediaSize().getHeightMils();
76 pdfAttributes.dpi = getPrintDpi(mAttributes);
77 pdfAttributes.leftMargin = mAttributes.getMinMargins().getLeftMils();
78 pdfAttributes.rightMargin = mAttributes.getMinMargins().getRightMils()
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeLayoutParamsMapAttributes.java 34 private final Map<String, String> mAttributes;
37 mAttributes = attributes;
43 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 38 private Map<String, TestAttribute> mAttributes = new HashMap<String, TestAttribute>();
65 if (mAttributes == null) {
66 mAttributes = new HashMap<String, TestAttribute>();
69 mAttributes.put(uri + name, new TestAttribute(uri, name, value));
107 if (mAttributes == null) {
111 return mAttributes.get(uri + localName);
116 return mAttributes.values().toArray(new IDragAttribute[mAttributes.size()]);
150 return "TestDragElement [fqn=" + mFqcn + ", attributes=" + mAttributes + ", bounds="
TestNode.java 67 private Map<String, IAttribute> mAttributes = new HashMap<String, IAttribute>();
161 return mAttributes.values().toArray(new IAttribute[mAttributes.size()]);
181 IAttribute attr = mAttributes.get(uri + attrName);
212 mAttributes.put(uri + localName, new TestAttribute(uri, localName, value));
220 + mAttributeInfos + ", attributes=" + mAttributes + ", bounds=" + mBounds + "]";
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Shader.h 166 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 38 private String[][] mAttributes = new String[][] {
48 mAttributes[0][1] = segments[segments.length-1];
73 return mAttributes.length; // text attribute
78 if (index < mAttributes.length) {
79 return mAttributes[index][0];
98 if (index < mAttributes.length) {
99 return mAttributes[index][1];
108 for (String[] attribute : mAttributes) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 308 public final HashMap<String, String> mAttributes;
311 mAttributes = attributes;
329 for (final String optionKey : mAttributes.keySet()) {
336 1000 * Long.parseLong(mAttributes.get(optionKey))).toString());
338 s.append(mAttributes.get(optionKey));
363 mOptions.mAttributes.put(key, value);
    [all...]
  /frameworks/base/media/java/android/media/
ExifInterface.java 107 private HashMap<String, String> mAttributes;
134 return mAttributes.get(tag);
146 String value = mAttributes.get(tag);
164 String value = mAttributes.get(tag);
185 mAttributes.put(tag, value);
189 * Initialize mAttributes with the attributes from the file mFilename.
191 * mAttributes is a HashMap which stores the Exif attributes of the file.
203 mAttributes = new HashMap<String, String>();
234 mAttributes.put(attrName, attrValue);
252 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 46 private final List<IDragAttribute> mAttributes = new ArrayList<IDragAttribute>();
112 mCachedAttributes = mAttributes.toArray(new IDragAttribute[mAttributes.size()]);
119 for (IDragAttribute attr : mAttributes) {
138 mAttributes.add(attr);
201 for (IDragAttribute a : mAttributes) {
339 mAttributes.size() == se.mAttributes.size() &&
341 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);
130 return mAttributes;
  /frameworks/base/core/java/android/print/
PrintJobInfo.java 159 private PrintAttributes mAttributes;
188 mAttributes = other.mAttributes;
212 mAttributes = (PrintAttributes) parcel.readParcelable(null);
468 return mAttributes;
479 mAttributes = attributes;
609 parcel.writeParcelable(mAttributes, flags);
626 builder.append(", attributes: " + (mAttributes != null
627 ? mAttributes.toString() : null));
701 mPrototype.mAttributes = attributes
    [all...]
PrintAttributes.java     [all...]
  /frameworks/base/libs/hwui/
Program.h 421 KeyedVector<const char*, int> mAttributes;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ImageShader.java 56 private HashMap<String, VertexAttribute> mAttributes = new HashMap<String, VertexAttribute>();
632 for (VertexAttribute attr : mAttributes.values()) {
760 VertexAttribute result = mAttributes.get(name);
765 mAttributes.put(name, result);

Completed in 405 milliseconds

1 2