Home
last modified time | relevance | path

Searched refs:currentLength (Results 1 – 6 of 6) sorted by relevance

/external/lottie/lottie/src/main/java/com/airbnb/lottie/animation/content/
DBaseStrokeContent.java202 float currentLength = 0; in applyTrimPath() local
208 if (endLength > totalLength && endLength - totalLength < currentLength + length && in applyTrimPath()
209 currentLength < endLength - totalLength) { in applyTrimPath()
223 if (currentLength + length < startLength || currentLength > endLength) { in applyTrimPath()
225 } else if (currentLength + length <= endLength && startLength < currentLength) { in applyTrimPath()
229 if (startLength < currentLength) { in applyTrimPath()
232 startValue = (startLength - currentLength) / length; in applyTrimPath()
235 if (endLength > currentLength + length) { in applyTrimPath()
238 endValue = (endLength - currentLength) / length; in applyTrimPath()
243 currentLength += length; in applyTrimPath()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz77support/
DLZ77Compressor.java540 int currentLength = 0; in longestMatch() local
545 currentLength++; in longestMatch()
547 if (currentLength > longestMatchLength) { in longestMatch()
548 longestMatchLength = currentLength; in longestMatch()
550 if (currentLength >= niceBackReferenceLength) { in longestMatch()
/external/clang/tools/clang-format/
Dclang-format-bbedit.applescript23 set currentLength to length of contents of text document 1
24 select characters 1 thru currentLength of text document 1
/external/llvm-project/clang/tools/clang-format/
Dclang-format-bbedit.applescript23 set currentLength to length of contents of text document 1
24 select characters 1 thru currentLength of text document 1
/external/skia/experimental/skrive/src/reader/
DJsonReader.cpp139 return SkToU8(this->currentLength()); in readLength8()
143 return SkToU16(this->currentLength()); in readLength16()
146 size_t currentLength() const { in currentLength() function in skrive::internal::__anon5e60dc860111::JsonReader
/external/cldr/tools/java/org/unicode/cldr/draft/
DShortestCanonicalForm.java170 final int currentLength = s.codePointCount(0, s.length()); in getShortest() local
171 if (currentLength < bestLength) { in getShortest()
172 bestLength = currentLength; in getShortest()