Searched refs:colorValueBuckets (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/hardware/display/ |
D | BrightnessChangeEvent.java | 114 public final long[] colorValueBuckets; field in BrightnessChangeEvent 132 boolean isUserSetBrightness, long[] colorValueBuckets, long colorSampleDuration) { in BrightnessChangeEvent() argument 150 this.colorValueBuckets = colorValueBuckets; in BrightnessChangeEvent() 173 this.colorValueBuckets = other.colorValueBuckets; in BrightnessChangeEvent() 195 colorValueBuckets = source.createLongArray(); in BrightnessChangeEvent() 233 dest.writeLongArray(colorValueBuckets); in writeToParcel() 257 + ", colorValueBuckets: " + Arrays.toString(colorValueBuckets) in toString() 388 public Builder setColorValues(@NonNull long[] colorValueBuckets, long colorSampleDuration) { in setColorValues() argument 389 Objects.requireNonNull(colorValueBuckets); in setColorValues() 390 mColorValueBuckets = colorValueBuckets; in setColorValues()
|
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/ |
D | BrightnessTrackerTest.java | 419 assertArrayEquals(new long[] {1, 10, 100, 1000, 300, 30, 10, 1}, event.colorValueBuckets); in testBrightnessFullPopulatedEvent() 542 assertNull(event.colorValueBuckets); in testReadEvents() 564 assertArrayEquals(new long[] {123L, 598L, 23L, 19L}, event.colorValueBuckets); in testReadEvents() 669 assertArrayEquals(new long[] {1, 10, 100, 1000, 300, 30, 10, 1}, event.colorValueBuckets); in testWriteThenRead() 724 assertArrayEquals(event.colorValueBuckets, event2.colorValueBuckets); in testParcelUnParcel()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | BrightnessTracker.java | 653 if (toWrite[i].colorValueBuckets != null in writeEventsLocked() 654 && toWrite[i].colorValueBuckets.length > 0) { in writeEventsLocked() 658 for (int j = 0; j < toWrite[i].colorValueBuckets.length; ++j) { in writeEventsLocked() 662 buckets.append(Long.toString(toWrite[i].colorValueBuckets[j])); in writeEventsLocked()
|
/frameworks/base/core/api/ |
D | system-current.txt | 5073 field @Nullable public final long[] colorValueBuckets;
|