HomeSort by relevance Sort by last modified time
    Searched refs:textBox (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextChunkBuilder.cpp 34 void SVGTextChunkBuilder::transformationForTextBox(SVGInlineTextBox* textBox, AffineTransform& transform) const
37 if (!m_textBoxTransformations.contains(textBox)) {
42 transform = m_textBoxTransformations.get(textBox);
55 SVGInlineTextBox* textBox = lineLayoutBoxes[boxPosition];
56 if (!textBox->startsNewTextChunk())
91 SVGInlineTextBox* textBox = lineLayoutBoxes[boxStart];
92 ASSERT(textBox);
94 RenderSVGInlineText& textRenderer = toRenderSVGInlineText(textBox->textRenderer());
96 const RenderStyle* style = toRenderSVGInlineText(textBox->textRenderer()).style();
190 SVGInlineTextBox* textBox = boxes[boxPosition]
    [all...]
SVGTextLayoutEngine.cpp 115 void SVGTextLayoutEngine::recordTextFragment(SVGInlineTextBox* textBox, Vector<SVGTextMetrics>& textMetricsValues)
142 textBox->textFragments().append(m_currentTextFragment);
239 void SVGTextLayoutEngine::layoutInlineTextBox(SVGInlineTextBox* textBox)
241 ASSERT(textBox);
243 RenderSVGInlineText& text = toRenderSVGInlineText(textBox->textRenderer());
251 textBox->clearTextFragments();
253 layoutTextOnLineOrPath(textBox, &text, style);
256 m_pathLayoutBoxes.append(textBox);
260 m_lineLayoutBoxes.append(textBox);
270 SVGInlineTextBox* textBox = boxes.at(boxPosition)
    [all...]
RenderSVGInlineText.cpp 112 InlineTextBox* textBox = toInlineTextBox(box);
113 if (static_cast<unsigned>(caretOffset) < textBox->start() || static_cast<unsigned>(caretOffset) > textBox->start() + textBox->len())
117 if (static_cast<unsigned>(caretOffset) < textBox->start() + textBox->len()) {
118 LayoutRect rect = textBox->localSelectionRect(caretOffset, caretOffset + 1);
123 LayoutRect rect = textBox->localSelectionRect(caretOffset - 1, caretOffset);
181 SVGInlineTextBox* textBox = toSVGInlineTextBox(box);
182 Vector<SVGTextFragment>& fragments = textBox->textFragments()
    [all...]
SVGTextChunk.cpp 41 SVGInlineTextBox* textBox = m_boxes.at(boxPosition);
42 Vector<SVGTextFragment>& fragments = textBox->textFragments();
SVGRootInlineBox.cpp 130 SVGInlineTextBox* textBox = toSVGInlineTextBox(child);
131 boxRect = textBox->calculateBoundaries();
132 textBox->setX(boxRect.x());
133 textBox->setY(boxRect.y());
134 textBox->setLogicalWidth(boxRect.width());
135 textBox->setLogicalHeight(boxRect.height());
SVGTextQuery.cpp 40 , textBox(0)
47 const SVGInlineTextBox* textBox;
114 queryData->textBox = m_textBoxes.at(textBoxPosition);
115 queryData->textRenderer = &toRenderSVGInlineText(queryData->textBox->textRenderer());
120 const Vector<SVGTextFragment>& fragments = queryData->textBox->textFragments();
150 if (!queryData->textBox->mapStartEndPositionsIntoFragmentCoordinates(fragment, startPosition, endPosition))
161 unsigned boxStart = queryData->textBox->start();
162 unsigned boxLength = queryData->textBox->len();
SVGRenderTreeAsText.cpp 399 static inline void writeSVGInlineTextBox(TextStream& ts, SVGInlineTextBox* textBox, int indent)
401 Vector<SVGTextFragment>& fragments = textBox->textFragments();
405 RenderSVGInlineText& textRenderer = toRenderSVGInlineText(textBox->textRenderer());
408 String text = textBox->textRenderer().text();
434 startOffset -= textBox->start();
435 endOffset -= textBox->start();
445 if (!textBox->isLeftToRightDirection() || textBox->dirOverride()) {
446 ts << (textBox->isLeftToRightDirection() ? " LTR" : " RTL");
447 if (textBox->dirOverride()
    [all...]
SVGInlineTextBox.cpp 729 SVGInlineTextBox* textBox = toSVGInlineTextBox(box);
731 int markerStartPosition = max<int>(marker->startOffset() - textBox->start(), 0);
732 int markerEndPosition = min<int>(marker->endOffset() - textBox->start(), textBox->len());
737 const Vector<SVGTextFragment>& fragments = textBox->textFragments();
744 if (!textBox->mapStartEndPositionsIntoFragmentCoordinates(fragment, fragmentStartPosition, fragmentEndPosition))
747 FloatRect fragmentRect = textBox->selectionRectForTextFragment(fragment, fragmentStartPosition, fragmentEndPosition, style);
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/util/
HumanReadables.java 177 private static void innerDescribe(TextView textBox, ToStringHelper helper) {
178 if (null != textBox.getText()) {
179 helper.add("text", textBox.getText());
182 if (null != textBox.getError()) {
183 helper.add("error-text", textBox.getError());
186 if (null != textBox.getHint()) {
187 helper.add("hint", textBox.getHint());
190 helper.add("input-type", textBox.getInputType());
191 helper.add("ime-target", textBox.isInputMethodTarget());
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisibleUnits.cpp 207 static const InlineTextBox* logicallyPreviousBox(const VisiblePosition& visiblePosition, const InlineTextBox* textBox,
210 const InlineBox* startBox = textBox;
212 const InlineTextBox* previousBox = leafBoxes.previousTextBox(&startBox->root(), textBox);
248 static const InlineTextBox* logicallyNextBox(const VisiblePosition& visiblePosition, const InlineTextBox* textBox,
251 const InlineBox* startBox = textBox;
253 const InlineTextBox* nextBox = leafBoxes.nextTextBox(&startBox->root(), textBox);
288 static TextBreakIterator* wordBreakIteratorForMinOffsetBoundary(const VisiblePosition& visiblePosition, const InlineTextBox* textBox,
294 const InlineTextBox* previousBox = logicallyPreviousBox(visiblePosition, textBox, previousBoxInDifferentBlock, leafBoxes);
303 textBox->textRenderer().text().appendTo(string, textBox->start(), textBox->len())
    [all...]
CompositeEditCommand.cpp 728 for (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBox())
729 sortedTextBoxes.append(textBox);
    [all...]
TextIterator.cpp 649 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
650 m_sortedTextBoxes.append(textBox);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLineBoxList.cpp 306 InlineTextBox* textBox = toRenderText(curr)->lastTextBox();
307 if (textBox)
308 box = &textBox->root();
RenderText.cpp 317 for (InlineTextBox* textBox = firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
318 String text = m_text.substring(textBox->start(), textBox->len()).simplifyWhiteSpace(WTF::DoNotStripWhiteSpace);
320 if (textBox->nextTextBox() && textBox->nextTextBox()->start() > textBox->end() && text.length() && !text.right(1).containsOnlyWhitespace())
    [all...]
InlineFlowBox.cpp     [all...]
RenderBlockLineLayout.cpp 112 InlineTextBox* textBox = toRenderText(obj)->createInlineTextBox();
116 textBox->setIsText(isOnlyRun || obj->document().inNoQuirksMode());
117 return textBox;
523 InlineTextBox* textBox = toInlineTextBox(r->m_box);
525 textBox->setExpansion(expansion);
    [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
pdf_processor.js 87 var texts = page['textBox'];

Completed in 319 milliseconds