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

1 2 3 4 5 6 7 8 910

  /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 40 private final HashMap<String, Object> mAttributes = new HashMap<String, Object>();
98 mAttributes.put(key, value);
109 return mAttributes.get(key);
119 return mAttributes.keySet().iterator();
129 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/base/media/java/android/media/
AudioFocusInfo.java 32 private final AudioAttributes mAttributes;
54 mAttributes = aa == null ? new AudioAttributes.Builder().build() : aa;
70 public AudioAttributes getAttributes() { return mAttributes; }
123 mAttributes.writeToParcel(dest, flags);
136 return Objects.hash(mAttributes, mClientUid, mClientId, mPackageName, mGainRequest, mFlags);
149 if (!mAttributes.equals(other.mAttributes)) {
PlayerBase.java 56 protected AudioAttributes mAttributes;
85 mAttributes = attr;
109 new PlayerIdCard(mImplType, mAttributes, new IPlayerWrapper(this)));
130 boolean attributesChanged = (mAttributes != attr);
131 mAttributes = attr;
265 mAttributes.getUsage(),
314 if ((mAttributes.getAllFlags() & AudioAttributes.FLAG_BYPASS_INTERRUPTION_POLICY) != 0) {
318 if (((mAttributes.getAllFlags() & AudioAttributes.FLAG_AUDIBILITY_ENFORCED) != 0)
319 && (mAttributes.getUsage() == AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)) {
503 public final AudioAttributes mAttributes;
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
OSUResponse.java 20 private final Map<String, String> mAttributes;
40 mAttributes = new HashMap<>();
46 mAttributes.put(attribute, value);
49 mAttributes = null;
88 return mAttributes;
  /tools/tradefederation/core/src/com/android/tradefed/device/
PackageInfo.java 38 private Map<String, String> mAttributes = new HashMap<String, String>();
71 return mAttributes.get("versionName");
79 mAttributes.put(name, value);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioSourceDescriptor.h 37 mDevice(device), mAttributes(*attributes), mUid(uid) {}
45 const audio_attributes_t mAttributes;
  /tools/loganalysis/src/com/android/loganalysis/item/
GenericItem.java 30 private Map<String, Object> mAttributes = new HashMap<String, Object>();
74 return mAttributes;
152 for (Map.Entry<String, Object> entry : mAttributes.entrySet()) {
179 mAttributes.put(attribute, value);
193 return mAttributes.get(attribute);
  /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 42 private final int mAttributes;
65 mAttributes = attributes;
95 return (mAttributes & ATTR_SELF_POWERED) != 0;
105 return (mAttributes & ATTR_REMOTE_WAKEUP) != 0;
146 ",mName=" + mName + ",mAttributes=" + mAttributes +
181 parcel.writeInt(mAttributes);
  /frameworks/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="
  /frameworks/base/tools/aapt/
XMLNode.h 199 Vector<attribute_entry> mAttributes;
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripItemAttributes.java 39 private final EnumSet<Attributes> mAttributes;
45 mAttributes = attributes;
49 return mAttributes.contains(Attributes.HAS_DETAILED_CAPTURE_INFO);
54 return mAttributes.contains(Attributes.CAN_SHARE);
59 return mAttributes.contains(Attributes.CAN_EDIT);
64 return mAttributes.contains(Attributes.CAN_DELETE);
68 return mAttributes.contains(Attributes.CAN_SWIPE_AWAY);
72 return mAttributes.contains(Attributes.CAN_ZOOM_IN_PLACE);
76 return mAttributes.contains(Attributes.IS_RENDERING);
81 return mAttributes.contains(Attributes.IS_IMAGE)
    [all...]
FilmstripItemBase.java 49 protected final FilmstripItemAttributes mAttributes;
59 mAttributes = attributes;
116 return mAttributes;
PlaceholderItem.java 47 private final FilmstripItemAttributes mAttributes;
76 mAttributes = PLACEHOLDER_ITEM_ATTRIBUTES;
86 return mAttributes;
SessionItem.java 44 private final FilmstripItemAttributes mAttributes;
79 mAttributes = new FilmstripItemAttributes.Builder()
169 return mAttributes;
  /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/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
LayoutParserWrapper.java 49 private List<Attribute> mAttributes;
112 mAttributes = count > 0 ? new ArrayList<Attribute>(count) :
115 mAttributes.add(new Attribute(mDelegate.getAttributeNamespace(i),
127 mAttributes = null;
177 if (mAttributes == null) {
184 for (Attribute attribute : mAttributes) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FormatSpec.java 269 public final HashMap<String, String> mAttributes;
271 mAttributes = attributes;
287 for (final String optionKey : mAttributes.keySet()) {
294 1000 * Long.parseLong(mAttributes.get(optionKey))).toString());
296 s.append(mAttributes.get(optionKey));
  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/presubmit/
IntegrationTest.java 97 private Map<String, String> mAttributes;
101 mAttributes = new HashMap<>();
122 mAttributes.put(CompatibilityBuildHelper.ROOT_DIR, mRootDir.getAbsolutePath());
123 mAttributes.put(CompatibilityBuildHelper.SUITE_NAME, suiteName);
124 mAttributes.put(CompatibilityBuildHelper.START_TIME_MS, "0");
125 mAttributes.put(CompatibilityBuildHelper.SUITE_VERSION, "10");
126 mAttributes.put(CompatibilityBuildHelper.SUITE_PLAN, "cts");
127 mAttributes.put(CompatibilityBuildHelper.SUITE_BUILD, "good-build");
128 mAttributes.put(CompatibilityBuildHelper.COMMAND_LINE_ARGS, COMMAND_LINE);
131 mAttributes.put("cts:build_fingerprint", "fingerprint")
    [all...]

Completed in 2350 milliseconds

1 2 3 4 5 6 7 8 910