Home
last modified time | relevance | path

Searched refs:textWithSpaces (Results 1 – 7 of 7) sorted by relevance

/external/skia/modules/skparagraph/src/
DTextLine.h51 TextRange textWithSpaces,
58 TextRange textWithSpaces() const { return fTextWithWhitespacesRange; } in textWithSpaces() function
DTextWrapper.cpp339 …TextRange textWithSpaces(fEndLine.startCluster()->textRange().start, startLine->textRange().start); in breakTextIntoLines() local
341 textWithSpaces.end = parent->text().size(); in breakTextIntoLines()
362 addLine(text, textWithSpaces, clusters, clustersWithGhosts, widthWithSpaces, in breakTextIntoLines()
DParagraphImpl.cpp519 TextRange textWithSpaces, in breakShapedTextIntoLines()
530 …auto& line = this->addLine(offset, advance, text, textWithSpaces, clusters, clustersWithGhosts, wi… in breakShapedTextIntoLines()
643 TextRange textWithSpaces, in addLine() argument
650 …return fLines.emplace_back(this, offset, advance, blocks, text, textWithSpaces, clusters, clusters… in addLine()
701 auto lineText = line.textWithSpaces(); in getRectsForRange()
DTextLine.cpp86 TextRange textWithSpaces, in TextLine() argument
94 , fTextWithWhitespacesRange(textWithSpaces) in TextLine()
850 auto textRange = includingGhostSpaces ? this->textWithSpaces() : this->trimmedText(); in iterateThroughVisualRuns()
1038 if (this->trimmedText().end < this->textWithSpaces().end && // Line has trailing spaces in getRectsForRange()
1039 … this->textWithSpaces().end == intersect.end && // Range is at the end of the line in getRectsForRange()
DTextWrapper.h167 TextRange textWithSpaces,
DParagraphImpl.h128 TextLine& addLine(SkVector offset, SkVector advance, TextRange text, TextRange textWithSpaces,
/external/dokka/core/src/test/kotlin/markdown/
DParserTest.kt22 @Test fun textWithSpaces() { in textWithSpaces() method in org.jetbrains.dokka.tests.ParserTest