caption           115 Source/core/accessibility/AXTable.cpp     if (!tableElement->summary().isEmpty() || tableElement->tHead() || tableElement->tFoot() || tableElement->caption())
caption           538 Source/core/accessibility/AXTable.cpp         HTMLTableCaptionElement* caption = toHTMLTableElement(tableElement)->caption();
caption           539 Source/core/accessibility/AXTable.cpp         if (caption)
caption           540 Source/core/accessibility/AXTable.cpp             title = caption->innerText();
caption           162 Source/core/html/HTMLTableElement.cpp     if (HTMLTableCaptionElement* existingCaption = caption())
caption           164 Source/core/html/HTMLTableElement.cpp     RefPtr<HTMLTableCaptionElement> caption = HTMLTableCaptionElement::create(document());
caption           165 Source/core/html/HTMLTableElement.cpp     setCaption(caption, IGNORE_EXCEPTION);
caption           166 Source/core/html/HTMLTableElement.cpp     return caption.release();
caption           171 Source/core/html/HTMLTableElement.cpp     removeChild(caption(), IGNORE_EXCEPTION);
caption            43 Source/core/html/HTMLTableElement.h     HTMLTableCaptionElement* caption() const;
caption           214 Source/core/rendering/RenderTable.cpp void RenderTable::addCaption(const RenderTableCaption* caption)
caption           216 Source/core/rendering/RenderTable.cpp     ASSERT(m_captions.find(caption) == kNotFound);
caption           217 Source/core/rendering/RenderTable.cpp     m_captions.append(const_cast<RenderTableCaption*>(caption));
caption           366 Source/core/rendering/RenderTable.cpp void RenderTable::layoutCaption(RenderTableCaption* caption)
caption           368 Source/core/rendering/RenderTable.cpp     LayoutRect captionRect(caption->frameRect());
caption           370 Source/core/rendering/RenderTable.cpp     if (caption->needsLayout()) {
caption           373 Source/core/rendering/RenderTable.cpp         caption->setLogicalLocation(LayoutPoint(caption->marginStart(), collapsedMarginBeforeForChild(caption) + logicalHeight()));
caption           375 Source/core/rendering/RenderTable.cpp         caption->layoutIfNeeded();
caption           378 Source/core/rendering/RenderTable.cpp     LayoutUnit captionLogicalTop = collapsedMarginBeforeForChild(caption) + logicalHeight();
caption           380 Source/core/rendering/RenderTable.cpp         captionLogicalTop += caption->paginationStrut();
caption           381 Source/core/rendering/RenderTable.cpp         caption->setPaginationStrut(0);
caption           383 Source/core/rendering/RenderTable.cpp     caption->setLogicalLocation(LayoutPoint(caption->marginStart(), captionLogicalTop));
caption           385 Source/core/rendering/RenderTable.cpp     if (!selfNeedsLayout() && caption->checkForRepaintDuringLayout())
caption           386 Source/core/rendering/RenderTable.cpp         caption->repaintDuringLayoutIfMoved(captionRect);
caption           388 Source/core/rendering/RenderTable.cpp     setLogicalHeight(logicalHeight() + caption->logicalHeight() + collapsedMarginBeforeForChild(caption) + collapsedMarginAfterForChild(caption));