/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | Roundable.kt | 77 sourceType: SourceType, in <lambda>() 86 roundnessMap.remove(sourceType) in <lambda>() 88 roundnessMap[sourceType] = value in <lambda>() 121 sourceType: SourceType, in <lambda>() 125 sourceType = sourceType, in <lambda>() 144 sourceType: SourceType, in <lambda>() 153 roundnessMap.remove(sourceType) in <lambda>() 155 roundnessMap[sourceType] = value in <lambda>() 188 sourceType: SourceType, in <lambda>() 192 sourceType = sourceType, in <lambda>() [all …]
|
/frameworks/base/core/java/android/hardware/hdmi/ |
D | HdmiTvClient.java | 340 public void startTimerRecording(int recorderAddress, int sourceType, TimerRecordSource source) { 345 checkTimerRecordingSourceType(sourceType); 350 mService.startTimerRecording(recorderAddress, sourceType, data); 356 private void checkTimerRecordingSourceType(int sourceType) { 357 switch (sourceType) { 363 throw new IllegalArgumentException("Invalid source type:" + sourceType); 371 public void clearTimerRecording(int recorderAddress, int sourceType, TimerRecordSource source) { 376 checkTimerRecordingSourceType(sourceType); 380 mService.clearTimerRecording(recorderAddress, sourceType, data);
|
D | HdmiControlServiceWrapper.java | 249 public void startTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) { 251 recorderAddress, sourceType, recordSource); 255 public void clearTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) { 257 recorderAddress, sourceType, recordSource); 499 public void startTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) {} in startTimerRecording() argument 502 public void clearTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) {} in clearTimerRecording() argument
|
D | IHdmiControlService.aidl | 84 void startTimerRecording(int recorderAddress, int sourceType, in byte[] recordSource); in startTimerRecording() argument 85 void clearTimerRecording(int recorderAddress, int sourceType, in byte[] recordSource); in clearTimerRecording() argument
|
D | HdmiRecordSources.java | 65 /* package */ RecordSource(int sourceType, int extraDataSize) { in RecordSource() argument 66 mSourceType = sourceType; in RecordSource()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | RoundableTest.kt | 41 roundable.requestTopRoundness(value = 1f, sourceType = SOURCE1) in requestTopRoundness_update_and_invalidate_targetView() 49 roundable.requestBottomRoundness(value = 1f, sourceType = SOURCE1) in requestBottomRoundness_update_and_invalidate_targetView() 57 roundable.requestRoundness(top = 1f, bottom = 1f, sourceType = SOURCE1) in requestRoundness_update_and_invalidate_targetView() 70 roundable.requestRoundnessReset(sourceType = SOURCE1) in requestRoundnessReset_update_and_invalidate_targetView() 79 roundable.requestRoundness(top = 1f, bottom = 1f, sourceType = SOURCE1) in hasRoundedCorner_return_true_ifRoundnessIsGreaterThenZero() 82 roundable.requestRoundness(top = 1f, bottom = 0f, sourceType = SOURCE1) in hasRoundedCorner_return_true_ifRoundnessIsGreaterThenZero() 85 roundable.requestRoundness(top = 0f, bottom = 1f, sourceType = SOURCE1) in hasRoundedCorner_return_true_ifRoundnessIsGreaterThenZero() 88 roundable.requestRoundness(top = 0f, bottom = 0f, sourceType = SOURCE1) in hasRoundedCorner_return_true_ifRoundnessIsGreaterThenZero()
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | RcsContactUceCapability.java | 137 public OptionsBuilder(@NonNull Uri contact, @SourceType int sourceType) { in OptionsBuilder() argument 139 sourceType); in OptionsBuilder() 195 public PresenceBuilder(@NonNull Uri contact, @SourceType int sourceType, in PresenceBuilder() argument 198 sourceType); in PresenceBuilder() 250 @SourceType int sourceType) { in RcsContactUceCapability() argument 253 mSourceType = sourceType; in RcsContactUceCapability()
|
/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/presence/pidfparser/ |
D | RcsContactUceCapabilityWrapper.java | 50 public RcsContactUceCapabilityWrapper(@NonNull Uri contact, int sourceType, int requestResult) { in RcsContactUceCapabilityWrapper() argument 52 mSourceType = sourceType; in RcsContactUceCapabilityWrapper()
|
/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/util/ |
D | FeatureTags.java | 145 @SourceType int sourceType, List<String> featureTags) { in getContactCapability() argument 146 OptionsBuilder builder = new OptionsBuilder(contact, sourceType); in getContactCapability()
|
/frameworks/native/libs/gui/aidl/android/gui/ |
D | HdrConversionCapability.aidl | 22 int sourceType;
|
/frameworks/base/media/java/android/media/metrics/ |
D | MediaItemInfo.java | 161 @SourceType int sourceType, in MediaItemInfo() 175 mSourceType = sourceType; in MediaItemInfo() 329 public @NonNull Builder setSourceType(@SourceType int sourceType) { in setSourceType() argument 330 mSourceType = sourceType; in setSourceType()
|
/frameworks/base/services/core/java/com/android/server/hdmi/ |
D | TimerRecordingAction.java | 46 TimerRecordingAction(HdmiCecLocalDevice source, int recorderAddress, int sourceType, in TimerRecordingAction() argument 50 mSourceType = sourceType; in TimerRecordingAction()
|
D | HdmiCecLocalDeviceTv.java | 1565 void startTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) { in startTimerRecording() argument 1581 if (!checkTimerRecordingSource(sourceType, recordSource)) { in startTimerRecording() 1590 new TimerRecordingAction(this, recorderAddress, sourceType, recordSource)); in startTimerRecording() 1592 + sourceType + ", RecordSource:" + Arrays.toString(recordSource)); in startTimerRecording() 1595 private boolean checkTimerRecordingSource(int sourceType, byte[] recordSource) { in checkTimerRecordingSource() argument 1597 && HdmiTimerRecordSources.checkTimerRecordSource(sourceType, recordSource); in checkTimerRecordingSource() 1601 void clearTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) { in clearTimerRecording() argument 1616 if (!checkTimerRecordingSource(sourceType, recordSource)) { in clearTimerRecording() 1623 sendClearTimerMessage(recorderAddress, sourceType, recordSource); in clearTimerRecording() 1626 private void sendClearTimerMessage(final int recorderAddress, int sourceType, in sendClearTimerMessage() argument [all …]
|
D | HdmiControlService.java | 2810 public void startTimerRecording(final int recorderAddress, final int sourceType, in startTimerRecording() argument 2820 tv().startTimerRecording(recorderAddress, sourceType, recordSource); in startTimerRecording() 2826 public void clearTimerRecording(final int recorderAddress, final int sourceType, in clearTimerRecording() argument 2836 tv().clearTimerRecording(recorderAddress, sourceType, recordSource); in clearTimerRecording()
|
/frameworks/av/services/mediametrics/ |
D | AudioTypes.cpp | 506 int32_t lookup<SOURCE_TYPE>(const std::string &sourceType) in lookup() argument 509 if (!TypeConverter<SourceTraits>::fromString(sourceType, value)) { in lookup() 516 std::string lookup<SOURCE_TYPE>(const std::string &sourceType) in lookup() argument 519 if (!TypeConverter<SourceTraits>::fromString(sourceType, value)) { in lookup() 522 return sourceType.c_str() + sizeof("AUDIO_SOURCE"); in lookup()
|
/frameworks/av/media/module/mpeg2ts/test/ |
D | Mpeg2tsUnitTest.cpp | 64 char sourceType = get<1>(params); in SetUp() local 68 mMediaType = (sourceType & 0x07); in SetUp()
|
/frameworks/base/core/tests/hdmitests/src/android/hardware/hdmi/ |
D | HdmiAudioSystemClientTest.java | 318 public void startTimerRecording(final int recorderAddress, final int sourceType, in startTimerRecording() argument 323 public void clearTimerRecording(final int recorderAddress, final int sourceType, in clearTimerRecording() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ActivatableNotificationView.java | 804 for (SourceType sourceType : mOnDetachResetRoundness) { in onDetachedFromWindow() 805 requestRoundnessReset(sourceType); in onDetachedFromWindow() 821 public void addOnDetachResetRoundness(SourceType sourceType) { in addOnDetachResetRoundness() argument 822 mOnDetachResetRoundness.add(sourceType); in addOnDetachResetRoundness()
|
/frameworks/base/tools/aapt/ |
D | ZipFile.h | 225 const char* storageName, int sourceType, int compressionMethod,
|
D | ZipFile.cpp | 359 const char* storageName, int sourceType, int compressionMethod, in addCommon() argument 414 if (sourceType == ZipEntry::kCompressStored) { in addCommon() 459 } else if (sourceType == ZipEntry::kCompressDeflated) { in addCommon()
|
/frameworks/base/core/java/com/android/internal/display/ |
D | BrightnessSynchronizer.java | 393 BrightnessUpdate(int sourceType, float brightness) { in BrightnessUpdate() argument 395 mSourceType = sourceType; in BrightnessUpdate()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationTestHelper.java | 287 SourceType sourceType in createRowWithRoundness() argument 290 row.requestRoundness(topRoundness, bottomRoundness, sourceType, /*animate = */ false); in createRowWithRoundness()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | CachedAppOptimizer.java | 649 public final CompactSource sourceType; field in CachedAppOptimizer.AggregatedSourceCompactionStats 651 AggregatedSourceCompactionStats(CompactSource sourceType) { this.sourceType = sourceType; } in AggregatedSourceCompactionStats() argument 773 pw.println("-----" + stats.sourceType + "-----"); in dump()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | ActivityMetricsLogger.java | 471 @VisibleForTesting final @SourceInfo.SourceType int sourceType; field in ActivityMetricsLogger.TransitionInfoSnapshot 511 sourceType = info.mSourceType; in TransitionInfoSnapshot() 1212 info.sourceType, in logAppTransition() 1396 info.sourceType, in logAppFullyDrawnMetrics()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | ActivityMetricsLaunchObserverTests.java | 341 assertWithMessage("Record start source").that(info.sourceType) in testOnReportFullyDrawn()
|