Home
last modified time | relevance | path

Searched refs:lastRun (Results 1 – 8 of 8) sorted by relevance

/external/skia/modules/skparagraph/src/
DTextWrapper.cpp319 Run* lastRun = nullptr; in breakTextIntoLines() local
322 if (r == lastRun) { in breakTextIntoLines()
325 lastRun = r; in breakTextIntoLines()
326 if (lastRun->placeholderStyle() != nullptr) { in breakTextIntoLines()
327 SkASSERT(lastRun->size() == 1); in breakTextIntoLines()
330 lastRun->updateMetrics(&fEndLine.metrics()); in breakTextIntoLines()
DTextLine.cpp529 RunIndex lastRun = EMPTY_RUN; in createEllipsis() local
534 if (lastRun != cluster.runIndex()) { in createEllipsis()
539 lastRun = EMPTY_RUN; in createEllipsis()
543 lastRun = cluster.runIndex(); in createEllipsis()
1094 const Run* lastRun = nullptr; in getRectsForRange() local
1097 [textRange0, rectHeightStyle, rectWidthStyle, &boxes, &lastRun, startBox, this] in getRectsForRange()
1101 …[run, runOffsetInLine, textRange0, rectHeightStyle, rectWidthStyle, &boxes, &lastRun, startBox, th… in getRectsForRange()
1227 auto merge = [&lastRun, &context, &boxes](SkRect clip) { in getRectsForRange()
1230 lastRun != nullptr && in getRectsForRange()
1231 context.run->leftToRight() == lastRun->leftToRight() && in getRectsForRange()
[all …]
/external/skia/experimental/sktext/tests/
DSelectableText.cpp172 auto lastRun = testVisitor.fTestRuns.back(); in UNIX_ONLY_TEST() local
176 …REPORTER_ASSERT(reporter, lastPosition.fGlyphRange == GlyphRange(lastRun.glyphs.size(), lastRun.gl… in UNIX_ONLY_TEST()
177 …T(reporter, SkScalarNearlyEqual(lastPosition.fBoundaries.fLeft, lastRun.positions[lastRun.glyphs.s… in UNIX_ONLY_TEST()
/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp1036 le_int32 lastRun = getCharRun(runEnd); in computeVisualRuns() local
1037 le_int32 startRun = (runDirection == UBIDI_LTR)? firstRun : lastRun; in computeVisualRuns()
1038 le_int32 stopRun = (runDirection == UBIDI_LTR)? lastRun + 1 : firstRun - 1; in computeVisualRuns()
1043 le_int32 lastChar = (run == lastRun)? runEnd : fStyleRunInfo[run].runLimit - 1; in computeVisualRuns()
1202 const VisualRun *lastRun = getVisualRun(fRunCount - 1); in getWidth() local
1204 if (lastRun == NULL) { in getWidth()
1208 le_int32 glyphCount = lastRun->getGlyphCount(); in getWidth()
1209 const float *positions = lastRun->getPositions(); in getWidth()
/external/vogar/src/vogar/
DConsole.java220 Long lastRun = annotatedOutcome.lastRun(null); in summarizeOutcomes() local
222 if (lastRun == null) { in summarizeOutcomes()
225 timestamp = formatElapsedTime(new Date().getTime() - lastRun); in summarizeOutcomes()
DAnnotatedOutcome.java105 public Long lastRun(Long defaultValue) { in lastRun() method in AnnotatedOutcome
/external/lz4/lib/
Dlz4.c1268 { size_t lastRun = (size_t)(iend - anchor); in LZ4_compress_generic_validated() local
1270 (op + lastRun + 1 + ((lastRun+255-RUN_MASK)/255) > olimit)) { in LZ4_compress_generic_validated()
1274 lastRun = (size_t)(olimit-op) - 1/*token*/; in LZ4_compress_generic_validated()
1275 lastRun -= (lastRun + 256 - RUN_MASK) / 256; /*additional length tokens*/ in LZ4_compress_generic_validated()
1281 DEBUGLOG(6, "Final literal run : %i literals", (int)lastRun); in LZ4_compress_generic_validated()
1282 if (lastRun >= RUN_MASK) { in LZ4_compress_generic_validated()
1283 size_t accumulator = lastRun - RUN_MASK; in LZ4_compress_generic_validated()
1288 *op++ = (BYTE)(lastRun<<ML_BITS); in LZ4_compress_generic_validated()
1290 LZ4_memcpy(op, anchor, lastRun); in LZ4_compress_generic_validated()
1291 ip = anchor + lastRun; in LZ4_compress_generic_validated()
[all …]
/external/skia/src/core/
DSkTextBlob.cpp622 auto* lastRun = reinterpret_cast<SkTextBlob::RunRecord*>(fStorage.get() + fLastRun); in make() local
623 lastRun->fFlags |= SkTextBlob::RunRecord::kLast_Flag; in make()