/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
DownloadRecord.java | 29 public final ContentValues mAttributes; 32 mAttributes = attributes; 35 return null == mAttributes;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/ |
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;
|
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;
|
/frameworks/av/drm/common/ |
DrmInfo.cpp | 41 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/ |
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 | 29 private PrintAttributes mAttributes; 66 mAttributes = attributes; 98 mAttributes = null; 105 return mAttributes.getMediaSize().getWidthMils(); 110 return mAttributes.getMediaSize().getHeightMils(); 115 return getPrintDpi(mAttributes); 120 return mAttributes.getMinMargins().getLeftMils(); 125 return mAttributes.getMinMargins().getRightMils(); 130 return mAttributes.getMinMargins().getTopMils(); 135 return mAttributes.getMinMargins().getBottomMils() [all...] |
AwPrintDocumentAdapter.java | 25 private PrintAttributes mAttributes; 40 mAttributes = newAttributes; 55 mPdfExporter.exportToPdf(destination, mAttributes, new ValueCallback<Boolean>() {
|
/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);
|
/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...] |
/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="
|
/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/src/com/android/inputmethod/latin/dicttool/ |
Diff.java | 79 if (null == dict0.mOptions.mAttributes.get("locale")) return false; 80 if (null == dict1.mOptions.mAttributes.get("locale")) return false; 81 final String dict0Lang = dict0.mOptions.mAttributes.get("locale").split("_", 3)[0]; 82 final String dict1Lang = dict1.mOptions.mAttributes.get("locale").split("_", 3)[0]; 101 new HashMap<String, String>(dict1.mOptions.mAttributes); 102 for (final String optionKey : dict0.mOptions.mAttributes.keySet()) { 103 if (!dict0.mOptions.mAttributes.get(optionKey).equals( 104 dict1.mOptions.mAttributes.get(optionKey))) { 106 + dict0.mOptions.mAttributes.get(optionKey) + " <=> " 107 + dict1.mOptions.mAttributes.get(optionKey)) [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/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...] |
/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...] |
/frameworks/base/libs/hwui/ |
Program.cpp | 110 mAttributes.add(name, slot); 116 mAttributes.add(name, bindingSlot); 121 ssize_t index = mAttributes.indexOfKey(name); 123 return mAttributes.valueAt(index);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
FormatSpec.java | 386 return mDictionaryOptions.mAttributes.get(FileHeader.DICTIONARY_LOCALE_ATTRIBUTE); 391 return mDictionaryOptions.mAttributes.get(FileHeader.DICTIONARY_VERSION_ATTRIBUTE); 396 return mDictionaryOptions.mAttributes.get(FileHeader.DICTIONARY_ID_ATTRIBUTE); 403 return mDictionaryOptions.mAttributes.get(FileHeader.DICTIONARY_DESCRIPTION_ATTRIBUTE);
|
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...] |
/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.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/av/include/drm/ |
DrmInfo.h | 170 KeyedVector<String8, String8> mAttributes;
|
/frameworks/support/v4/kitkat/android/support/v4/print/ |
PrintHelperKitkat.java | 180 private PrintAttributes mAttributes; 189 mAttributes = newPrintAttributes; 204 mAttributes); 290 private PrintAttributes mAttributes; 302 mAttributes = newPrintAttributes; 367 mAttributes = newPrintAttributes; 391 mAttributes);
|
/frameworks/base/tools/aapt/ |
XMLNode.cpp | 662 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.itemAt(attrIdx).string).string() [all...] |