Home | History | Annotate | Download | only in nav

Lines Matching refs:textBox

542                     InlineTextBox* textBox = renderText->firstTextBox();
544 while (textBox) {
546 IntRect rect = textBox->selectionRect((int) pt.x(), (int) pt.y(), 0, INT_MAX);
551 textBox->len(), 0 /*textBox->selectionHeight()*/,
552 0 /*textBox->selectionTop()*/);
554 0 /*textBox->spaceAdd()*/, textBox->start(), 0 /*textBox->textPos()*/);
556 textBox->x(), textBox->y(), textBox->width(), textBox->height());
557 int baseline = textBox->renderer()->style(textBox->isFirstLineStyle())->font().ascent();
560 wideString(node->textContent().characters() + textBox->start(), textBox->len(), true);
562 textBox = textBox->nextTextBox();
2926 InlineTextBox *textBox = renderText->firstTextBox();
2927 if (textBox == NULL)
2936 if (ConstructTextRect((Text*) test, textBox, 0, INT_MAX,
2996 InlineTextBox* textBox, int start, int relEnd, int x, int y,
3005 int textBoxStart = textBox->start();
3006 int textBoxEnd = textBoxStart + textBox->len();
3011 IntRect bounds = textBox->selectionRect((int) pt.x(), (int) pt.y(),
3026 } while ((textBox = textBox->nextTextBox()) != NULL);
3039 InlineTextBox *textBox = renderText->firstTextBox();
3040 if (textBox != NULL) {
3042 if ((int) textBox->end() >= start)
3044 } while ((textBox = textBox->nextTextBox()) != NULL);
3045 if (textBox && ConstructTextRect(node, textBox, start, relEnd,