Home
last modified time | relevance | path

Searched refs:lastValue (Results 1 – 25 of 42) sorted by relevance

12

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DDelay.kt217 var lastValue: Any? = null in debounceInternal() variable
218 while (lastValue !== DONE) { in debounceInternal()
221 if (lastValue != null) { in debounceInternal()
222 timeoutMillis = timeoutMillisSelector(NULL.unbox(lastValue)) in debounceInternal()
225 downstream.emit(NULL.unbox(lastValue)) in debounceInternal()
226 lastValue = null // Consume the value in debounceInternal()
230 assert { lastValue == null || timeoutMillis > 0 } in debounceInternal()
234 if (lastValue != null) { in debounceInternal()
236 downstream.emit(NULL.unbox(lastValue)) in debounceInternal()
237 lastValue = null // Consume the value in debounceInternal()
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DTokenizer.java33 int lastValue = BACKEDUP_TOO_FAR; field in Tokenizer
140 return lastValue; in next()
146 if (index >= source.length()) return lastValue = DONE; in next()
163 return lastValue = UNICODESET; in next()
166 if (syntax.contains(cp)) return lastValue = cp; in next()
180 return lastValue = NUMBER; in next()
231 if (status > IN_STRING) return lastValue = UNTERMINATED_QUOTE; in next()
232 return lastValue = STRING; in next()
DDictionary.java318 T lastValue = null; in next() local
323 if (lastValue == null) { in next()
327 matchValue = lastValue; in next()
338 lastValue = getMatchValue(); in next()
DPick.java373 private String lastValue = null; field in Pick.Morph
390 if (DEBUG) System.out.println("Old: " + lastValue + ", New:" + newValue); in addTo()
393 if (lastValue != null) { in addTo()
398 int newLenLimit = pick(target.random, lastValue.length(), newValue.length()); in addTo()
402 && lastIndex < lastValue.length()) { in addTo()
409 lastIndex = getChar(lastValue, lastIndex, mergeBuffer, c < LEAST_SKIP); in addTo()
414 lastValue = newValue; in addTo()
/external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/
DCryptRand.c326 UINT32 *lastValue // Points to the last output value in EncryptDRBG() argument
348 if((lastValue[0] == temp[0]) in EncryptDRBG()
349 && (lastValue[1] == temp[1]) in EncryptDRBG()
350 && (lastValue[2] == temp[2]) in EncryptDRBG()
351 && (lastValue[3] == temp[3]) in EncryptDRBG()
357 lastValue[0] = temp[0]; in EncryptDRBG()
358 lastValue[1] = temp[1]; in EncryptDRBG()
359 lastValue[2] = temp[2]; in EncryptDRBG()
360 lastValue[3] = temp[3]; in EncryptDRBG()
367 NOT_REFERENCED(lastValue); in EncryptDRBG()
[all …]
/external/guava/android/guava/src/com/google/common/collect/
DTreeBasedTable.java330 @NullableDecl C lastValue; in createColumnKeyIterator()
336 boolean duplicate = lastValue != null && comparator.compare(next, lastValue) == 0; in createColumnKeyIterator()
340 lastValue = next; in createColumnKeyIterator()
341 return lastValue; in createColumnKeyIterator()
345 lastValue = null; // clear reference to unused data in createColumnKeyIterator()
/external/guava/guava/src/com/google/common/collect/
DTreeBasedTable.java330 @Nullable C lastValue; in createColumnKeyIterator()
336 boolean duplicate = lastValue != null && comparator.compare(next, lastValue) == 0; in createColumnKeyIterator()
340 lastValue = next; in createColumnKeyIterator()
341 return lastValue; in createColumnKeyIterator()
345 lastValue = null; // clear reference to unused data in createColumnKeyIterator()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DMutableAggregation.java482 private double lastValue = Double.NaN; field in MutableAggregation.MutableLastValueDouble
499 lastValue = value; in add()
512 this.lastValue = otherValue.initialized ? otherValue.getLastValue() : this.lastValue; in combine()
517 return AggregationData.LastValueDataDouble.create(lastValue); in toAggregationData()
522 return Point.create(Value.doubleValue(lastValue), timestamp); in toPoint()
527 return lastValue; in getLastValue()
/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DAggregationData.java488 public static LastValueDataDouble create(double lastValue) { in create() argument
489 return new AutoValue_AggregationData_LastValueDataDouble(lastValue); in create()
531 public static LastValueDataLong create(long lastValue) { in create() argument
532 return new AutoValue_AggregationData_LastValueDataLong(lastValue); in create()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestLocale.java653 String lastValue = null; in testAllVariants() local
693 if (lastValue != null) { in testAllVariants()
694 showItem(ltp, extension, key, gorp, value, lastValue); in testAllVariants()
696 lastValue = value; in testAllVariants()
DTestSupplementalInfo.java1419 Date lastValue = currencyLastValid.get(currency); in TestCurrency() local
1420 if (lastValue == null || lastValue.compareTo(end) > 0) { in TestCurrency()
DTestUnits.java1254 Rational lastValue = null; in checkUnitPreferences() local
1274 int diff = value.compareTo(lastValue); in checkUnitPreferences()
1282 lastValue = value; in checkUnitPreferences()
/external/llvm-project/flang/include/flang/Common/
Dformat.h203 int64_t lastValue; in NextToken() local
208 lastValue = integerValue_; in NextToken()
211 if (lastValue > integerValue_) { in NextToken()
/external/perfetto/ui/src/tracks/counter/
Dcontroller.ts149 data.lastValues[i] = it.row.lastValue;
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateCoverageLevels.java251 String lastValue = lastAttrs.get(key); in addDifferences() local
253 if (!Objects.equals(lastValue, nextValue)) { in addDifferences()
254 if (lastValue != null) old.put(key, lastValue); in addDifferences()
DShowData.java290 String lastValue = null; in main()
328 valuesToLocales.put(lastValue + "→→" + value, locale); in main()
/external/ms-tpm-20-ref/TPMCmd/tpm/include/
DCryptRand.h142 UINT32 lastValue[4]; // used when the TPM does continuous self-test member
/external/fonttools/Lib/fontTools/ttLib/tables/
DTupleVariation.py221 lastValue = 0
228 delta = curValue - lastValue
241 lastValue = curValue
/external/protobuf/js/binary/
Ddecoder.js192 var lastValue = this.nextValue_;
208 return lastValue;
/external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
DFastFourierTransformer.java707 Complex lastValue = (Complex) lastDimension[vector[dimensionSize.length - 1]]; in set() local
710 return lastValue; in set()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationTimelineSemaphoreTests.cpp532 deUint64 lastValue = 0; in run() local
540 if (value < lastValue) { in run()
545 lastValue = value; in run()
756 deUint64 lastValue, in TimelineIteration()
762 writeValue = lastValue + rng.getInt(1, 100); in TimelineIteration()
1243 deUint64 lastValue, in QueueTimelineIteration()
1251 timelineValue = lastValue + rng.getInt(1, 100); in QueueTimelineIteration()
DvktSynchronizationSignalOrderTests.cpp335 deUint64 lastValue, in QueueTimelineIteration()
343 timelineValue = lastValue + rng.getInt(1, 100); in QueueTimelineIteration()
/external/deqp/modules/gles31/functional/
Des31fAtomicCounterTests.cpp714 …const deUint32 lastValue = initialValue + (spec.useBranches ? spec.threadCount*spec.callCount - s… in checkPath() local
763 if (incrementCounts[pos] > 0 && pos >= (int)(lastValue - minValue)) in checkPath()
788 if (minValue + pos != lastValue) in checkPath()
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mkv/
DMatroskaExtractor.java1588 int lastValue = (int) (timeUs / lastTimecodeValueScalingFactor); in formatSubtitleTimecode() local
1591 String.format(Locale.US, timecodeFormat, hours, minutes, seconds, lastValue)); in formatSubtitleTimecode()
/external/kotlinc/lib/
Dkotlin-scripting-jvm.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/kotlin-scripting- ...

12