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

1 2 3 4 5 6 7

  /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...]
PlaceholderItem.java 47 private final FilmstripItemAttributes mAttributes;
76 mAttributes = PLACEHOLDER_ITEM_ATTRIBUTES;
86 return mAttributes;
  /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 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/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);
  /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) {
  /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...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DictionaryHeader.java 66 final String localeString = dictionaryOptions.mAttributes.get(DICTIONARY_LOCALE_KEY);
70 final String versionString = dictionaryOptions.mAttributes.get(DICTIONARY_VERSION_KEY);
75 final String idString = dictionaryOptions.mAttributes.get(DICTIONARY_ID_KEY);
89 return mDictionaryOptions.mAttributes.get(DICTIONARY_DESCRIPTION_KEY);
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));
  /frameworks/base/media/java/android/media/
AudioFocusInfo.java 32 private AudioAttributes mAttributes;
52 mAttributes = aa == null ? new AudioAttributes.Builder().build() : aa;
66 public AudioAttributes getAttributes() { return mAttributes; }
113 mAttributes.writeToParcel(dest, flags);
124 return Objects.hash(mAttributes, mClientId, mPackageName, mGainRequest, mFlags);
137 if (!mAttributes.equals(other.mAttributes)) {
PlayerBase.java 43 protected AudioAttributes mAttributes;
63 mAttributes = attr;
96 mAttributes = attr;
150 mAttributes.getUsage(),
189 if ((mAttributes.getAllFlags() & AudioAttributes.FLAG_BYPASS_INTERRUPTION_POLICY) != 0) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
XMLNode.java 19 private final Map<String, NodeAttribute> mAttributes;
40 mAttributes = new HashMap<>();
44 mAttributes.put(attributes.getQName(n), new NodeAttribute(attributes.getQName(n),
57 mAttributes = new HashMap<>(attributes == null ? 0 : attributes.size());
61 mAttributes.put(entry.getKey(), new NodeAttribute(entry.getKey(), "", entry.getValue()));
81 || mAttributes.size() != that.mAttributes.size()
86 for (Map.Entry<String, NodeAttribute> entry : mAttributes.entrySet()) {
87 if (!entry.getValue().equals(that.mAttributes.get(entry.getKey()))) {
147 NodeAttribute urn = mAttributes.get(OMAConstants.SppMOAttribute)
    [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="
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioSourceDescriptor.h 37 mDevice(device), mAttributes(*attributes), mUid(uid) {}
45 const audio_attributes_t mAttributes;
  /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;
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
XMLNode.java 18 private final Map<String, NodeAttribute> mAttributes;
39 mAttributes = new HashMap<>();
43 mAttributes.put(attributes.getQName(n), new NodeAttribute(attributes.getQName(n),
56 mAttributes = new HashMap<>(attributes == null ? 0 : attributes.size());
60 mAttributes.put(entry.getKey(),
107 NodeAttribute urn = mAttributes.get(OMAConstants.SppMOAttribute);
152 return Collections.unmodifiableMap(mAttributes);
156 Map<String, String> map = new HashMap<>(mAttributes.size());
157 for (Map.Entry<String, NodeAttribute> entry : mAttributes.entrySet()) {
164 NodeAttribute nodeAttribute = mAttributes.get(name)
    [all...]
  /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];
88 final HashMap<String, String> options1 = new HashMap<>(dict1.mOptions.mAttributes);
89 for (final String optionKey : dict0.mOptions.mAttributes.keySet()) {
90 if (!dict0.mOptions.mAttributes.get(optionKey).equals(
91 dict1.mOptions.mAttributes.get(optionKey))) {
93 + dict0.mOptions.mAttributes.get(optionKey) + " <=> "
94 + dict1.mOptions.mAttributes.get(optionKey))
    [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...]
  /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...]

Completed in 747 milliseconds

1 2 3 4 5 6 7