/frameworks/native/services/surfaceflinger/ |
D | ScreenCaptureOutput.h | 30 const compositionengine::Output::ColorProfile& colorProfile; 52 const compositionengine::Output::ColorProfile& colorProfile, 69 const compositionengine::Output::ColorProfile& mColorProfile;
|
D | ScreenCaptureOutput.cpp | 31 const compositionengine::Output::ColorProfile&, in createScreenCaptureOutput() 65 const RenderArea& renderArea, const compositionengine::Output::ColorProfile& colorProfile, in ScreenCaptureOutput()
|
D | SurfaceFlinger.cpp | 3779 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/ |
D | BatteryDrawableState.kt | 26 enum class ColorProfile { class 48 val color: ColorProfile = ColorProfile.None,
|
D | BatteryLayersDrawable.kt | 129 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/ |
D | BatteryMeterView.java | 56 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/ |
D | DisplayTest.cpp | 399 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()
|
D | OutputTest.cpp | 182 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/ |
D | Output.h | 136 struct ColorProfile { struct 198 virtual void setColorProfile(const ColorProfile&) = 0;
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/ |
D | Display.h | 54 void setColorProfile(const ColorProfile&) override;
|
D | Output.h | 58 void setColorProfile(const ColorProfile&) override; 173 compositionengine::Output::ColorProfile pickColorProfile(
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/ |
D | Output.h | 52 MOCK_METHOD1(setColorProfile, void(const ColorProfile&));
|
/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
D | Output.cpp | 267 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()
|
D | Display.cpp | 114 void Display::setColorProfile(const ColorProfile& colorProfile) { in setColorProfile()
|