Home
last modified time | relevance | path

Searched defs:newVal (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/log/table/
DDiffable.kt76 return this.pairwiseBy(getInitialValue) { prevVal: T, newVal: T -> in logDiffsForTable() method
96 return this.pairwiseBy(initialValueFun) { prevVal, newVal: Boolean -> in logDiffsForTable() method
115 return this.pairwiseBy(initialValueFun) { prevVal, newVal: Int -> in logDiffsForTable() method
134 return this.pairwiseBy(initialValueFun) { prevVal, newVal: Int? -> in logDiffsForTable() method
153 return this.pairwiseBy(initialValueFun) { prevVal, newVal: String? -> in logDiffsForTable() method
172 return this.pairwiseBy(initialValueFun) { prevVal, newVal: List<T> -> in logDiffsForTable() method
/frameworks/base/services/core/java/com/android/server/accounts/
DTokenCache.java120 protected void entryRemoved(boolean evicted, Key k, Value oldVal, Value newVal) { in entryRemoved()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/
DFlow.kt45 collect { newVal -> in <lambda>() method
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
DMobileConnectionsRepositoryImpl.kt318 .mapNotNull { (prevVal: Int?, newVal: Int?) -> in <lambda>() method
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerDecoder.cpp1254 int32_t oldVal, newVal; in supportsSeamlessAudioFormatChange() local
/frameworks/base/core/java/android/widget/
DNumberPicker.java535 void onValueChange(NumberPicker picker, int oldVal, int newVal); in onValueChange()