Home
last modified time | relevance | path

Searched refs:ColorProfile (Results 1 – 14 of 14) sorted by relevance

/frameworks/native/services/surfaceflinger/
DScreenCaptureOutput.h30 const compositionengine::Output::ColorProfile& colorProfile;
52 const compositionengine::Output::ColorProfile& colorProfile,
69 const compositionengine::Output::ColorProfile& mColorProfile;
DScreenCaptureOutput.cpp31 const compositionengine::Output::ColorProfile&, in createScreenCaptureOutput()
65 const RenderArea& renderArea, const compositionengine::Output::ColorProfile& colorProfile, in ScreenCaptureOutput()
DSurfaceFlinger.cpp3779 compositionengine::Output::ColorProfile{defaultColorMode, defaultDataSpace, in setupNewDisplayDeviceInternal()
8541 compositionengine::Output::ColorProfile colorProfile{.dataspace = dataspace, in renderScreenImpl()
/frameworks/base/packages/SystemUI/src/com/android/systemui/battery/unified/
DBatteryDrawableState.kt26 enum class ColorProfile { class
48 val color: ColorProfile = ColorProfile.None,
DBatteryLayersDrawable.kt129 color: ColorProfile, in updateColorProfile()
139 ColorProfile.None -> { in updateColorProfile()
142 ColorProfile.Active -> { in updateColorProfile()
145 ColorProfile.Warning -> { in updateColorProfile()
148 ColorProfile.Error -> { in updateColorProfile()
/frameworks/base/packages/SystemUI/src/com/android/systemui/battery/
DBatteryMeterView.java56 import com.android.systemui.battery.unified.ColorProfile;
288 private ColorProfile getCurrentColorProfile() { in getCurrentColorProfile()
297 private ColorProfile getColorProfile( in getColorProfile()
303 if (isCharging) return ColorProfile.Active; in getColorProfile()
304 if (isPowerSave) return ColorProfile.Warning; in getColorProfile()
305 if (isBatteryDefender) return ColorProfile.None; in getColorProfile()
306 if (isLowBattery) return ColorProfile.Error; in getColorProfile()
308 return ColorProfile.None; in getColorProfile()
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DDisplayTest.cpp399 using ColorProfile = Output::ColorProfile; in TEST_F() typedef
412 mDisplay->setColorProfile(ColorProfile{ui::ColorMode::NATIVE, ui::Dataspace::UNKNOWN, in TEST_F()
426 mDisplay->setColorProfile(ColorProfile{ui::ColorMode::DISPLAY_P3, ui::Dataspace::DISPLAY_P3, in TEST_F()
435 using ColorProfile = Output::ColorProfile; in TEST_F() typedef
444 virtualDisplay->setColorProfile(ColorProfile{ui::ColorMode::DISPLAY_P3, in TEST_F()
DOutputTest.cpp182 using ColorProfile = compositionengine::Output::ColorProfile; typedef
184 void dumpColorProfile(ColorProfile profile, std::string& result, const char* name) { in dumpColorProfile()
545 using ColorProfile = Output::ColorProfile; in TEST_F() typedef
549 mOutput->setColorProfile(ColorProfile{ui::ColorMode::DISPLAY_P3, ui::Dataspace::DISPLAY_P3, in TEST_F()
560 using ColorProfile = Output::ColorProfile; in TEST_F() typedef
566 mOutput->setColorProfile(ColorProfile{ui::ColorMode::DISPLAY_P3, ui::Dataspace::DISPLAY_P3, in TEST_F()
2086 MOCK_METHOD1(setColorProfile, void(const ColorProfile&));
2139 ColorProfileEq(ColorProfile{ui::ColorMode::NATIVE, ui::Dataspace::UNKNOWN, in TEST_F()
2166 ColorProfileEq(ColorProfile{colorMode, dataspace, renderIntent}))); in expectBestColorModeCallResultUsedToSetColorProfile()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DOutput.h136 struct ColorProfile { struct
198 virtual void setColorProfile(const ColorProfile&) = 0;
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DDisplay.h54 void setColorProfile(const ColorProfile&) override;
DOutput.h58 void setColorProfile(const ColorProfile&) override;
173 compositionengine::Output::ColorProfile pickColorProfile(
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DOutput.h52 MOCK_METHOD1(setColorProfile, void(const ColorProfile&));
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DOutput.cpp267 void Output::setColorProfile(const ColorProfile& colorProfile) { in setColorProfile()
1001 compositionengine::Output::ColorProfile Output::pickColorProfile( in pickColorProfile()
1004 return ColorProfile{ui::ColorMode::NATIVE, ui::Dataspace::UNKNOWN, in pickColorProfile()
1051 return ColorProfile{outMode, outDataSpace, outRenderIntent}; in pickColorProfile()
DDisplay.cpp114 void Display::setColorProfile(const ColorProfile& colorProfile) { in setColorProfile()