Home
last modified time | relevance | path

Searched refs:isPlaceholder (Results 1 – 14 of 14) sorted by relevance

/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dinline_span.dart52 /// [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/
DTextWrapper.cpp62 } 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()
DTextWrapper.h84 if (!cluster->isHardBreak() && !r.isPlaceholder()) { in extend()
104 if (!r->isPlaceholder()) { in startFrom()
DIterators.h33 while (++fCurrentStyle != fTextStyles.end() && !fCurrentStyle->fStyle.isPlaceholder()) { in consume()
DParagraphCache.cpp89 if (ts.fStyle.isPlaceholder()) { in operator ()()
158 if (tsa.fStyle.isPlaceholder()) { in operator ==()
DRun.cpp200 SkASSERT(isPlaceholder()); in updateMetrics()
292 if (isPlaceholder()) { in placeholderStyle()
DParagraphImpl.cpp388 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()
DTextLine.cpp119 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()
DRun.h103 bool isPlaceholder() const { return fPlaceholderIndex != std::numeric_limits<size_t>::max(); } in isPlaceholder() function
/third_party/flutter/flutter/dev/benchmarks/microbenchmarks/lib/language/
Dsync_star_semantics_bench.dart22 InlineSpanSemanticsInformation(words[i], isPlaceholder: false),
26 InlineSpanSemanticsInformation(words[i], isPlaceholder: true),
/third_party/flutter/engine/flutter/third_party/txt/src/txt/
Dpaint_record.h89 bool isPlaceholder() const { return placeholder_run_ == nullptr; } in isPlaceholder() function
/third_party/flutter/txt/src/txt/
Dpaint_record.h89 bool isPlaceholder() const { return placeholder_run_ == nullptr; } in isPlaceholder() function
/third_party/skia/modules/skparagraph/include/
DTextStyle.h248 bool isPlaceholder() const { return fIsPlaceholder; } in isPlaceholder() function
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dparagraph.dart835 if (info.isPlaceholder) {