Searched defs:mAttributes (Results 26 - 36 of 36) sorted by relevance

12

/frameworks/base/media/java/android/media/
H A DTtmlRenderer.java260 out.append(node.mAttributes);
295 public final String mAttributes; field in class:TtmlNode
306 this.mAttributes = attributes;
H A DAudioRecord.java479 private AudioAttributes mAttributes; field in class:AudioRecord.Builder
501 mAttributes = new AudioAttributes.Builder()
526 mAttributes = attributes;
609 if (mAttributes == null) {
610 mAttributes = new AudioAttributes.Builder()
623 mAttributes, mFormat, mBufferSizeInBytes, mSessionId);
H A DAudioTrack.java551 if (shouldEnablePowerSaving(mAttributes, format, bufferSizeInBytes, mode)) {
552 mAttributes = new AudioAttributes.Builder(mAttributes)
553 .replaceFlags((mAttributes.getAllFlags()
602 int initResult = native_setup(new WeakReference<AudioTrack>(this), mAttributes,
613 if ((mAttributes.getFlags() & AudioAttributes.FLAG_HW_AV_SYNC) != 0) {
676 null /*mAttributes - NA*/,
734 private AudioAttributes mAttributes; field in class:AudioTrack.Builder
760 mAttributes = attributes;
878 if (mAttributes
[all...]
H A DExifInterface.java1301 private final HashMap[] mAttributes = new HashMap[EXIF_TAGS.length]; field in class:ExifInterface
1415 Object value = mAttributes[i].get(tag);
1536 mAttributes[i].remove(tag);
1562 mAttributes[i].put(tag, ExifAttribute.createByte(value));
1567 mAttributes[i].put(tag, ExifAttribute.createString(value));
1576 mAttributes[i].put(tag,
1586 mAttributes[i].put(tag,
1596 mAttributes[i].put(tag,
1608 mAttributes[i].put(tag,
1620 mAttributes[
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java128 private AudioAttributes mAttributes; field in class:NotificationRecord
155 mAttributes = calculateAttributes();
502 pw.println(prefix + "mAttributes= " + mAttributes);
867 return mAttributes;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java56 private HashMap<String, VertexAttribute> mAttributes = new HashMap<String, VertexAttribute>(); field in class:ImageShader
632 for (VertexAttribute attr : mAttributes.values()) {
760 VertexAttribute result = mAttributes.get(name);
765 mAttributes.put(name, result);
/frameworks/base/core/java/android/print/
H A DPrintAttributes.java1389 private final PrintAttributes mAttributes = new PrintAttributes(); field in class:PrintAttributes.Builder
1398 mAttributes.setMediaSize(mediaSize);
1409 mAttributes.setResolution(resolution);
1421 mAttributes.setMinMargins(margins);
1435 mAttributes.setColorMode(colorMode);
1450 mAttributes.setDuplexMode(duplexMode);
1460 return mAttributes;
/frameworks/native/libs/hwc2on1adapter/include/hwc2on1adapter/
H A DHWC2On1Adapter.h287 mAttributes() {}
319 std::unordered_map<HWC2::Attribute, int32_t> mAttributes; member in class:android::HWC2On1Adapter::Display::Config
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java1798 private ArrayList<Pair<String, String>> mAttributes; field in class:AssistStructure.HtmlInfoNode
1820 if (mAttributes == null && mNames != null) {
1821 mAttributes = new ArrayList<>(mNames.length);
1824 mAttributes.add(i, pair);
1827 return mAttributes;
/frameworks/support/exifinterface/src/android/support/media/
H A DExifInterface.java3678 private final HashMap<String, ExifAttribute>[] mAttributes = new HashMap[EXIF_TAGS.length]; field in class:ExifInterface
3753 ExifAttribute value = mAttributes[i].get(tag);
3883 mAttributes[i].remove(tag);
3908 mAttributes[i].put(tag, ExifAttribute.createByte(value));
3913 mAttributes[i].put(tag, ExifAttribute.createString(value));
3922 mAttributes[i].put(tag,
3932 mAttributes[i].put(tag,
3942 mAttributes[i].put(tag,
3954 mAttributes[i].put(tag,
3966 mAttributes[
[all...]
/frameworks/base/core/java/android/view/
H A DView.java4526 public String[] mAttributes; field in class:View
5479 mAttributes = trimmed;
26241 int n = mAttributes != null ? mAttributes.length : 0;
26244 stream.addProperty("meta:__attr__" + mAttributes[i], mAttributes[i+1]);

Completed in 1572 milliseconds

12