OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:firstTextBox
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.h
120
InlineTextBox*
firstTextBox
() const { return m_firstTextBox; }
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp
280
SVGInlineTextBox*
firstTextBox
= toSVGInlineTextBox(*first);
284
if (
firstTextBox
->len() == 1 &&
firstTextBox
->len() == lastTextBox->len()) {
285
RenderSVGInlineText* firstContext = toRenderSVGInlineText(
firstTextBox
->textRenderer());
291
swapItemsInLayoutAttributes(firstAttributes, lastAttributes,
firstTextBox
->start(), lastTextBox->start());
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp
582
if (renderer->
firstTextBox
())
583
m_textBox = renderer->
firstTextBox
();
589
if (!renderer->
firstTextBox
() && str.length() > 0 && !shouldHandleFirstLetter) {
602
for (InlineTextBox* textBox = renderer->
firstTextBox
(); textBox; textBox = textBox->nextTextBox()) {
629
InlineTextBox*
firstTextBox
= renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_sortedTextBoxes[0]) : renderer->
firstTextBox
();
631
|| (m_textBox ==
firstTextBox
&& textBoxStart == runStart && runStart > 0);
722
m_textBox = firstLetter->
firstTextBox
();
[
all
...]
Completed in 861 milliseconds