Searched refs:isPlaceholder (Results 1 – 14 of 14) sorted by relevance
/third_party/flutter/flutter/packages/flutter/lib/src/painting/ |
D | inline_span.dart | 52 /// [isPlaceholder]. 55 this.isPlaceholder = false, 59 assert(isPlaceholder != null), 60 …assert(isPlaceholder == false || (text == '\uFFFC' && semanticsLabel == null && recognizer == null… 61 requiresOwnNode = isPlaceholder || recognizer != null; 64 …anSemanticsInformation placeholder = InlineSpanSemanticsInformation('\uFFFC', isPlaceholder: true); 77 final bool isPlaceholder; 82 /// [isPlaceholder] is true. 90 …sLabel == semanticsLabel && other.recognizer == recognizer && other.isPlaceholder == isPlaceholder; 94 int get hashCode => hashValues(text, semanticsLabel, recognizer, isPlaceholder);
|
/third_party/skia/modules/skparagraph/src/ |
D | TextWrapper.cpp | 62 } else if (cluster->run().isPlaceholder()) { in lookAhead() 88 if (further->run().isPlaceholder()) { in lookAhead() 142 if (cluster->run().isPlaceholder()) { in lookAhead() 212 if (cluster->run().isPlaceholder()) { in getClustersTrimmedWidth() 431 } else if (cluster->run().isPlaceholder()) { in breakTextIntoLines()
|
D | TextWrapper.h | 84 if (!cluster->isHardBreak() && !r.isPlaceholder()) { in extend() 104 if (!r->isPlaceholder()) { in startFrom()
|
D | Iterators.h | 33 while (++fCurrentStyle != fTextStyles.end() && !fCurrentStyle->fStyle.isPlaceholder()) { in consume()
|
D | ParagraphCache.cpp | 89 if (ts.fStyle.isPlaceholder()) { in operator ()() 158 if (tsa.fStyle.isPlaceholder()) { in operator ==()
|
D | Run.cpp | 200 SkASSERT(isPlaceholder()); in updateMetrics() 292 if (isPlaceholder()) { in placeholderStyle()
|
D | ParagraphImpl.cpp | 388 cluster_count += run.isPlaceholder() ? 1 : run.size(); in buildClusterTable() 396 if (run.isPlaceholder()) { in buildClusterTable() 438 if (run.isPlaceholder()) { in spaceGlyphs() 454 SkASSERT(!currentStyle->fStyle.isPlaceholder()); in spaceGlyphs()
|
D | TextLine.cpp | 119 if (b->fStyle.isPlaceholder()) { in TextLine() 158 if (!cluster->run().isPlaceholder()) { in TextLine() 606 } else if (run->isPlaceholder()) { in measureTextInsideOneRun() 1264 if (!run->isPlaceholder()) { in getRectsForPlaceholders()
|
D | Run.h | 103 bool isPlaceholder() const { return fPlaceholderIndex != std::numeric_limits<size_t>::max(); } in isPlaceholder() function
|
/third_party/flutter/flutter/dev/benchmarks/microbenchmarks/lib/language/ |
D | sync_star_semantics_bench.dart | 22 InlineSpanSemanticsInformation(words[i], isPlaceholder: false), 26 InlineSpanSemanticsInformation(words[i], isPlaceholder: true),
|
/third_party/flutter/engine/flutter/third_party/txt/src/txt/ |
D | paint_record.h | 89 bool isPlaceholder() const { return placeholder_run_ == nullptr; } in isPlaceholder() function
|
/third_party/flutter/txt/src/txt/ |
D | paint_record.h | 89 bool isPlaceholder() const { return placeholder_run_ == nullptr; } in isPlaceholder() function
|
/third_party/skia/modules/skparagraph/include/ |
D | TextStyle.h | 248 bool isPlaceholder() const { return fIsPlaceholder; } in isPlaceholder() function
|
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/ |
D | paragraph.dart | 835 if (info.isPlaceholder) {
|