Searched refs:runEnd (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
D | DecodeEscapeSequences.h | 46 size_t runEnd = startPosition; in findEndOfRun() local 47 … while (endPosition - runEnd >= sequenceSize && string[runEnd] == '%' && string[runEnd + 1] == 'u' in findEndOfRun() 48 && isASCIIHexDigit(string[runEnd + 2]) && isASCIIHexDigit(string[runEnd + 3]) in findEndOfRun() 49 && isASCIIHexDigit(string[runEnd + 4]) && isASCIIHexDigit(string[runEnd + 5])) { in findEndOfRun() 50 runEnd += sequenceSize; in findEndOfRun() 52 return runEnd; in findEndOfRun() 84 size_t runEnd = startPosition; in findEndOfRun() local 86 while (runEnd < endPosition) { in findEndOfRun() 87 if (string[runEnd] == '%') { in findEndOfRun() 88 …if (endPosition - runEnd >= sequenceSize && isASCIIHexDigit(string[runEnd + 1]) && isASCIIHexDigit… in findEndOfRun() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | PlainTextRange.cpp | 113 Position runEnd = VisiblePosition(runStart).next().deepEquivalent(); in createRangeFor() local 114 if (runEnd.isNotNull()) in createRangeFor() 115 …textRunRange->setEnd(runEnd.containerNode(), runEnd.computeOffsetInContainerNode(), ASSERT_NO_EXCE… in createRangeFor()
|
D | ApplyStyleCommand.cpp | 786 Node* runEnd = node.get(); in applyInlineStyleToNodeRange() local 791 runEnd = sibling; in applyInlineStyleToNodeRange() 792 sibling = runEnd->nextSibling(); in applyInlineStyleToNodeRange() 794 ASSERT(runEnd); in applyInlineStyleToNodeRange() 795 next = NodeTraversal::nextSkippingChildren(*runEnd); in applyInlineStyleToNodeRange() 797 Node* pastEndNode = NodeTraversal::nextSkippingChildren(*runEnd); in applyInlineStyleToNodeRange() 801 runs.append(InlineRunToApplyStyle(runStart, runEnd, pastEndNode)); in applyInlineStyleToNodeRange() 845 …eStyleFromRun(EditingStyle* style, RefPtr<Node>& runStart, RefPtr<Node>& runEnd, PassRefPtr<Node> … in removeConflictingInlineStyleFromRun() argument 847 ASSERT(runStart && runEnd); in removeConflictingInlineStyleFromRun() 867 if (runEnd == node) in removeConflictingInlineStyleFromRun() [all …]
|
D | TextIterator.cpp | 573 int runEnd = min(strLength, end); in handleTextNode() local 575 if (runStart >= runEnd) in handleTextNode() 578 emitText(m_node, runStart, runEnd); in handleTextNode() 644 unsigned runEnd = min(textBoxEnd, end); in handleTextBox() local 656 if (runStart < runEnd) { in handleTextBox() 665 if (subrunEnd == kNotFound || subrunEnd > runEnd) in handleTextBox() 666 subrunEnd = runEnd; in handleTextBox() 679 if (nextRunStart > runEnd) in handleTextBox()
|
D | ApplyStyleCommand.h | 80 …gInlineStyleFromRun(EditingStyle*, RefPtr<Node>& runStart, RefPtr<Node>& runEnd, PassRefPtr<Node> …
|
/external/icu4c/layoutex/ |
D | ParagraphLayout.cpp | 1029 le_int32 runEnd = runStart + runLength - 1; in computeVisualRuns() local 1031 le_int32 lastRun = getCharRun(runEnd); in computeVisualRuns() 1038 le_int32 lastChar = (run == lastRun)? runEnd : fStyleRunInfo[run].runLimit - 1; in computeVisualRuns()
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/ |
D | HarfBuzzShaper.cpp | 729 bool runEnd = i + 1 == numGlyphs; in setGlyphPositionsForHarfBuzzRun() local 736 bool isClusterEnd = runEnd || glyphInfos[i].cluster != glyphInfos[i + 1].cluster; in setGlyphPositionsForHarfBuzzRun()
|