HomeSort by relevance Sort by last modified time
    Searched defs:mAttributes (Results 1 - 25 of 50) 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);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwPrintDocumentAdapter.java 25 private PrintAttributes mAttributes;
54 mAttributes = newAttributes;
68 mPdfExporter.exportToPdf(destination, mAttributes, new ValueCallback<Boolean>() {
AwPdfExporter.java 29 private PrintAttributes mAttributes;
71 mAttributes = attributes;
103 mAttributes = null;
110 return mAttributes.getMediaSize().getWidthMils();
115 return mAttributes.getMediaSize().getHeightMils();
120 return getPrintDpi(mAttributes);
125 return mAttributes.getMinMargins().getLeftMils();
130 return mAttributes.getMinMargins().getRightMils();
135 return mAttributes.getMinMargins().getTopMils();
140 return mAttributes.getMinMargins().getBottomMils()
    [all...]
  /frameworks/av/include/drm/
DrmInfo.h 170 KeyedVector<String8, String8> mAttributes;
  /frameworks/base/core/java/android/hardware/usb/
UsbEndpoint.java 35 private final int mAttributes;
45 mAttributes = attributes;
93 return mAttributes;
109 return mAttributes & UsbConstants.USB_ENDPOINT_XFERTYPE_MASK;
132 return "UsbEndpoint[mAddress=" + mAddress + ",mAttributes=" + mAttributes +
157 parcel.writeInt(mAttributes);
UsbConfiguration.java 39 private final int mAttributes;
62 mAttributes = attributes;
92 return (mAttributes & ATTR_SELF_POWERED) != 0;
102 return (mAttributes & ATTR_REMOTE_WAKEUP) != 0;
143 ",mName=" + mName + ",mAttributes=" + mAttributes +
178 parcel.writeInt(mAttributes);
  /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);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictUtils.java 41 options.mAttributes.put(DictionaryHeader.DICTIONARY_LOCALE_KEY, "en_US");
42 options.mAttributes.put(DictionaryHeader.DICTIONARY_ID_KEY, id);
43 options.mAttributes.put(DictionaryHeader.DICTIONARY_VERSION_KEY, version);
45 options.mAttributes.put(DictionaryHeader.HAS_HISTORICAL_INFO_KEY,
47 options.mAttributes.put(DictionaryHeader.USES_FORGETTING_CURVE_KEY,
  /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="
  /frameworks/base/tools/aapt/
XMLNode.h 195 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);
  /packages/inputmethods/LatinIME/tools/dicttool/tests/com/android/inputmethod/latin/dicttool/
BinaryDictOffdeviceUtilsTests.java 53 testOptions.mAttributes.put(DictionaryHeader.DICTIONARY_VERSION_KEY, VERSION);
54 testOptions.mAttributes.put(DictionaryHeader.DICTIONARY_LOCALE_KEY, LOCALE);
55 testOptions.mAttributes.put(DictionaryHeader.DICTIONARY_ID_KEY, ID);
84 assertEquals("Wrong version attribute", VERSION, resultDict.mOptions.mAttributes.get(
86 assertEquals("Wrong locale attribute", LOCALE, resultDict.mOptions.mAttributes.get(
88 assertEquals("Wrong id attribute", ID, resultDict.mOptions.mAttributes.get(
  /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) {
  /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...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FormatSpec.java 336 public final HashMap<String, String> mAttributes;
338 mAttributes = attributes;
354 for (final String optionKey : mAttributes.keySet()) {
361 1000 * Long.parseLong(mAttributes.get(optionKey))).toString());
363 s.append(mAttributes.get(optionKey));
  /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...]
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
cpp_bindings.h 13 struct nlattr *mAttributes[NL80211_ATTR_MAX_INTERNAL + 1];
19 memset(mAttributes, 0, sizeof(mAttributes));
56 return mAttributes;
60 return mAttributes[attribute];
64 return mAttributes[attribute] ? nla_get_u8(mAttributes[attribute]) : 0;
68 return mAttributes[attribute] ? nla_get_u16(mAttributes[attribute]) : 0;
72 return mAttributes[attribute] ? nla_get_u32(mAttributes[attribute]) : 0
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
cpp_bindings.h 30 struct nlattr *mAttributes[NL80211_ATTR_MAX_INTERNAL + 1];
36 memset(mAttributes, 0, sizeof(mAttributes));
73 return mAttributes;
77 return mAttributes[attribute];
81 return mAttributes[attribute] ? nla_get_u8(mAttributes[attribute]) : 0;
85 return mAttributes[attribute] ? nla_get_u16(mAttributes[attribute]) : 0;
89 return mAttributes[attribute] ? nla_get_u32(mAttributes[attribute]) : 0
    [all...]

Completed in 339 milliseconds

1 2