HomeSort by relevance Sort by last modified time
    Searched defs:caption (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/chrome/browser/
chrome_browser_main_win.cc 344 const base::string16 caption = l10n_util::GetStringUTF16(IDS_PRODUCT_NAME); local
346 if (IDOK == ui::MessageBox(NULL, msg, caption, flags))
377 const base::string16 caption = l10n_util::GetStringUTF16(IDS_PRODUCT_NAME); local
379 ui::MessageBox(NULL, text, caption, flags);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableElement.cpp 67 HTMLTableCaptionElement* HTMLTableElement::caption() const function in class:blink::HTMLTableElement
153 if (HTMLTableCaptionElement* existingCaption = caption())
155 RefPtrWillBeRawPtr<HTMLTableCaptionElement> caption = HTMLTableCaptionElement::create(document());
156 setCaption(caption, IGNORE_EXCEPTION);
157 return caption.release();
162 removeChild(caption(), IGNORE_EXCEPTION);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTable.cpp 154 // If there is a caption element, summary, THEAD, or TFOOT section, it's most certainly a data table
155 if (!tableElement->summary().isEmpty() || tableElement->tHead() || tableElement->tFoot() || tableElement->caption())
564 // see if there is a caption
567 HTMLTableCaptionElement* caption = toHTMLTableElement(tableElement)->caption(); local
568 if (caption)
569 title = caption->innerText();
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/linux/
main_wnd.cc 165 void GtkMainWnd::MessageBox(const char* caption, const char* text,
171 gtk_window_set_title(GTK_WINDOW(dialog), caption); local
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main_wnd.cc 207 void MainWnd::MessageBox(const char* caption, const char* text, bool is_error) {
212 ::MessageBoxA(handle(), text, caption, flags); local

Completed in 206 milliseconds