Home
last modified time | relevance | path

Searched refs:mSupportedHdrTypes (Results 1 – 7 of 7) sorted by relevance

/aosp12/frameworks/base/apex/media/framework/java/android/media/
H A DApplicationMediaCapabilities.java94 private Set<String> mSupportedHdrTypes = new HashSet<>(); field in ApplicationMediaCapabilities
104 mSupportedHdrTypes.addAll(b.getSupportedHdrTypes()); in ApplicationMediaCapabilities()
138 if (mSupportedHdrTypes.contains(hdrType)) { in isHdrTypeSupported()
179 dest.writeInt(mSupportedHdrTypes.size()); in writeToParcel()
180 for (String cap : mSupportedHdrTypes) { in writeToParcel()
197 caps += "Supported HDR types: " + mSupportedHdrTypes.toString(); in toString()
269 return new ArrayList<>(mSupportedHdrTypes); in getSupportedHdrTypes()
331 private Set<String> mSupportedHdrTypes = new HashSet<>(); field in ApplicationMediaCapabilities.Builder
466 mSupportedHdrTypes.add(MediaFeature.HdrType.HLG); in parseFormatTag()
574 mSupportedHdrTypes.add(hdrType); in addSupportedHdrType()
[all …]
/aosp12/frameworks/native/libs/ui/
H A DHdrCapabilities.cpp31 mSupportedHdrTypes.size() * sizeof(ui::Hdr); in getFlattenedSize()
44 buf[3] = static_cast<int32_t>(mSupportedHdrTypes.size()); in flatten()
45 for (size_t i = 0, c = mSupportedHdrTypes.size(); i < c; ++i) { in flatten()
46 buf[4 + i] = static_cast<int32_t>(mSupportedHdrTypes[i]); in flatten()
74 mSupportedHdrTypes.resize(itemCount); in unflatten()
76 mSupportedHdrTypes[i] = static_cast<ui::Hdr>(buf[4 + i]); in unflatten()
/aosp12/frameworks/native/libs/ui/include/ui/
H A DHdrCapabilities.h34 : mSupportedHdrTypes(types), in HdrCapabilities()
40 : mSupportedHdrTypes(), in HdrCapabilities()
46 return mSupportedHdrTypes; in getSupportedHdrTypes()
59 std::vector<ui::Hdr> mSupportedHdrTypes;
/aosp12/frameworks/native/libs/ui/include_vndk/ui/
H A DHdrCapabilities.h34 : mSupportedHdrTypes(types), in HdrCapabilities()
40 : mSupportedHdrTypes(), in HdrCapabilities()
46 return mSupportedHdrTypes; in getSupportedHdrTypes()
59 std::vector<ui::Hdr> mSupportedHdrTypes;
/aosp12/frameworks/base/core/java/android/view/
H A DDisplay.java1940 private @HdrType int[] mSupportedHdrTypes = new int[0]; field in Display.HdrCapabilities
1957 mSupportedHdrTypes = supportedHdrTypes; in HdrCapabilities()
1958 Arrays.sort(mSupportedHdrTypes); in HdrCapabilities()
1969 return mSupportedHdrTypes; in getSupportedHdrTypes()
2001 return Arrays.equals(mSupportedHdrTypes, that.mSupportedHdrTypes) in equals()
2010 hash = hash * 17 + Arrays.hashCode(mSupportedHdrTypes); in hashCode()
2038 mSupportedHdrTypes = new int[types]; in readFromParcel()
2040 mSupportedHdrTypes[i] = source.readInt(); in readFromParcel()
2049 dest.writeInt(mSupportedHdrTypes.length); in writeToParcel()
2050 for (int i = 0; i < mSupportedHdrTypes.length; ++i) { in writeToParcel()
[all …]
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
H A DDisplayColorProfileTest.cpp54 HdrCapabilities(mSupportedHdrTypes, mMaxLuminance, mMaxAverageLuminance, in build()
72 mSupportedHdrTypes.emplace_back(value); in addHdrType()
78 mSupportedHdrTypes.emplace_back(value); in addHdrTypes()
156 std::vector<Hdr> mSupportedHdrTypes; member in android::compositionengine::__anon8fc873750110::ProfileFactory
/aosp12/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt63002 Landroid/view/Display$HdrCapabilities;->mSupportedHdrTypes:[I