OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ColorTransform
(Results
1 - 12
of
12
) sorted by null
/frameworks/base/core/java/android/view/
Display.java
694
public void requestColorTransform(
ColorTransform
colorTransform
) {
695
mGlobal.requestColorTransform(mDisplayId,
colorTransform
.getId());
702
public
ColorTransform
getColorTransform() {
713
public
ColorTransform
getDefaultColorTransform() {
734
public
ColorTransform
[] getSupportedColorTransforms() {
737
ColorTransform
[] transforms = mDisplayInfo.supportedColorTransforms;
[
all
...]
DisplayInfo.java
179
public Display.
ColorTransform
[] supportedColorTransforms = Display.
ColorTransform
.EMPTY_ARRAY;
379
supportedColorTransforms = new Display.
ColorTransform
[nColorTransforms];
381
supportedColorTransforms[i] = Display.
ColorTransform
.CREATOR.createFromParcel(source);
499
public Display.
ColorTransform
getColorTransform() {
503
public Display.
ColorTransform
getDefaultColorTransform() {
507
private Display.
ColorTransform
findColorTransform(int colorTransformId) {
509
Display.
ColorTransform
colorTransform
= supportedColorTransforms[i];
510
if (
colorTransform
.getId() == colorTransformId)
[
all
...]
/packages/apps/Settings/src/com/android/settings/
ColorModePreference.java
27
import android.view.Display.
ColorTransform
;
88
desc.
colorTransform
= transforms[i];
94
// Match up a
ColorTransform
to every description.
95
ColorTransform
[] supportedColorTransforms = mDisplay.getSupportedColorTransforms();
98
if (mDescriptions.get(j).
colorTransform
113
ColorTransform
currentTransform = mDisplay.getColorTransform();
116
if (mDescriptions.get(i).
colorTransform
== currentTransform.getColorTransform()) {
138
private int
colorTransform
;
141
private
ColorTransform
transform;
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
ColorModePreference.java
27
import android.view.Display.
ColorTransform
;
90
desc.
colorTransform
= transforms[i];
96
// Match up a
ColorTransform
to every description.
97
ColorTransform
[] supportedColorTransforms = mDisplay.getSupportedColorTransforms();
100
if (mDescriptions.get(j).
colorTransform
115
ColorTransform
currentTransform = mDisplay.getColorTransform();
118
if (mDescriptions.get(i).
colorTransform
== currentTransform.getColorTransform()) {
140
private int
colorTransform
;
143
private
ColorTransform
transform;
/frameworks/base/services/core/java/com/android/server/display/
DisplayAdapter.java
144
public static Display.
ColorTransform
createColorTransform(int
colorTransform
) {
145
return new Display.
ColorTransform
(
146
NEXT_COLOR_TRANSFORM_ID.getAndIncrement(),
colorTransform
);
LocalDisplayAdapter.java
147
private final SparseArray<Display.
ColorTransform
> mSupportedColorTransforms =
183
ArrayList<Display.
ColorTransform
> colorTransforms = new ArrayList<>();
187
Display.
ColorTransform
activeColorTransform = null;
193
if (colorTransforms.get(j).getColorTransform() == info.
colorTransform
) {
201
Display.
ColorTransform
colorTransform
= findColorTransform(info);
202
if (
colorTransform
== null) {
203
colorTransform
= createColorTransform(info.
colorTransform
);
206
colorTransforms.add(
colorTransform
);
[
all
...]
DisplayDeviceInfo.java
165
public Display.
ColorTransform
[] supportedColorTransforms = Display.
ColorTransform
.EMPTY_ARRAY;
/external/pdfium/core/src/fxcodec/codec/
fx_codec_jpeg.cpp
320
FX_BOOL
ColorTransform
);
403
FX_BOOL
ColorTransform
) {
417
m_bJpegTransform =
ColorTransform
;
518
FX_BOOL
ColorTransform
) {
524
ColorTransform
)) {
codec_int.h
171
FX_BOOL
ColorTransform
) override;
/external/pdfium/core/include/fxcodec/
fx_codec.h
210
FX_BOOL
ColorTransform
) = 0;
/frameworks/native/services/surfaceflinger/DisplayHardware/
HWC2On1Adapter.cpp
78
static constexpr Attribute
ColorTransform
= static_cast<Attribute>(6);
[
all
...]
/frameworks/base/
compiled-classes-phone
[
all
...]
Completed in 209 milliseconds