/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/ |
D | Delay.kt | 217 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/ |
D | Tokenizer.java | 33 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()
|
D | Dictionary.java | 318 T lastValue = null; in next() local 323 if (lastValue == null) { in next() 327 matchValue = lastValue; in next() 338 lastValue = getMatchValue(); in next()
|
D | Pick.java | 373 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/ |
D | CryptRand.c | 326 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/guava/src/com/google/common/collect/ |
D | TreeBasedTable.java | 330 @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/guava/android/guava/src/com/google/common/collect/ |
D | TreeBasedTable.java | 330 @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/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/ |
D | MutableAggregation.java | 482 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/ |
D | AggregationData.java | 488 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/perfetto/ui/src/tracks/counter/ |
D | controller.ts | 149 data.lastValues[i] = it.row.lastValue;
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestLocale.java | 653 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()
|
D | TestSupplementalInfo.java | 1419 Date lastValue = currencyLastValid.get(currency); in TestCurrency() local 1420 if (lastValue == null || lastValue.compareTo(end) > 0) { in TestCurrency()
|
D | TestUnits.java | 1254 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/ |
D | format.h | 203 int64_t lastValue; in NextToken() local 208 lastValue = integerValue_; in NextToken() 211 if (lastValue > integerValue_) { in NextToken()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateCoverageLevels.java | 251 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()
|
D | ShowData.java | 290 String lastValue = null; in main() 328 valuesToLocales.put(lastValue + "→→" + value, locale); in main()
|
/external/ms-tpm-20-ref/TPMCmd/tpm/include/ |
D | CryptRand.h | 142 UINT32 lastValue[4]; // used when the TPM does continuous self-test member
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | TupleVariation.py | 221 lastValue = 0 228 delta = curValue - lastValue 241 lastValue = curValue
|
/external/protobuf/js/binary/ |
D | decoder.js | 192 var lastValue = this.nextValue_; 208 return lastValue;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/transform/ |
D | FastFourierTransformer.java | 707 Complex lastValue = (Complex) lastDimension[vector[dimensionSize.length - 1]]; in set() local 710 return lastValue; in set()
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationTimelineSemaphoreTests.cpp | 532 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()
|
D | vktSynchronizationSignalOrderTests.cpp | 335 deUint64 lastValue, in QueueTimelineIteration() 343 timelineValue = lastValue + rng.getInt(1, 100); in QueueTimelineIteration()
|
/external/deqp/modules/gles31/functional/ |
D | es31fAtomicCounterTests.cpp | 714 …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/ |
D | MatroskaExtractor.java | 1588 int lastValue = (int) (timeUs / lastTimecodeValueScalingFactor); in formatSubtitleTimecode() local 1591 String.format(Locale.US, timecodeFormat, hours, minutes, seconds, lastValue)); in formatSubtitleTimecode()
|
/external/clang/include/clang/AST/ |
D | Decl.h | 608 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue; } in classofKind()
|