Home | History | Annotate | Download | only in nav

Lines Matching defs: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();
2919 InlineTextBox *textBox = renderText->firstTextBox();
2920 if (textBox == NULL)
2929 if (ConstructTextRect((Text*) test, textBox, 0, INT_MAX,
2989 InlineTextBox* textBox, int start, int relEnd, int x, int y,
2998 int textBoxStart = textBox->start();
2999 int textBoxEnd = textBoxStart + textBox->len();
3004 IntRect bounds = textBox->selectionRect((int) pt.x(), (int) pt.y(),
3019 } while ((textBox = textBox->nextTextBox()) != NULL);
3032 InlineTextBox *textBox = renderText->firstTextBox();
3033 if (textBox != NULL) {
3035 if ((int) textBox->end() >= start)
3037 } while ((textBox = textBox->nextTextBox()) != NULL);
3038 if (textBox && ConstructTextRect(node, textBox, start, relEnd,