Searched defs:title (Results 151 - 175 of 814) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/views/accessibility/
H A Dbrowser_views_accessibility_browsertest.cc133 std::wstring title = UTF16ToWide( local
136 TestAccessibilityInfo(acc_obj, title, ROLE_SYSTEM_WINDOW);
/external/chromium_org/chrome/browser/ui/views/
H A Dfirst_run_bubble.cc43 views::Label* title = new views::Label( local
72 layout->AddView(title);
/external/chromium_org/chrome/browser/ui/views/renderer_context_menu/
H A Drender_view_context_menu_views.cc192 const base::string16& title) {
199 item->SetTitle(title);
189 UpdateMenuItem(int command_id, bool enabled, bool hidden, const base::string16& title) argument
/external/chromium_org/chrome/browser/ui/views/status_icons/
H A Dstatus_icon_win.cc125 const base::string16& title,
131 wcscpy_s(icon_data.szInfoTitle, title.c_str());
124 DisplayBalloon(const gfx::ImageSkia& icon, const base::string16& title, const base::string16& contents) argument
/external/chromium_org/chrome/browser/ui/webui/ntp/
H A Dapp_launcher_handler.h102 // Handles "generateAppForLink" message with |args| containing [url, title,
115 base::string16 title; member in struct:AppLauncherHandler::AppInstallInfo
H A Dnew_tab_page_sync_handler.cc169 std::string title; local
177 title = l10n_util::GetStringUTF8(IDS_SYNC_NTP_SYNC_SECTION_ERROR_TITLE);
179 title = l10n_util::GetStringUTF8(IDS_SYNC_NTP_SYNC_SECTION_PROMO_TITLE);
185 value.SetString("title", title);
/external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
H A Dfile_browser_handler.h38 // default title
39 const std::string& title() const { return title_; } function in class:FileBrowserHandler
40 void set_title(const std::string& title) { title_ = title; } argument
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_node.cc42 void BookmarkNode::SetTitle(const base::string16& title) { argument
46 base::ReplaceChars(title, kInvalidChars, base::ASCIIToUTF16(" "),
/external/chromium_org/components/dom_distiller/webui/
H A Ddom_distiller_handler.cc112 std::string title = (!article.has_title() || article.title().empty()) local
114 : article.title();
115 entry->SetString("title", net::EscapeForHTML(title));
/external/chromium_org/content/browser/loader/
H A Dresource_dispatcher_host_browsertest.cc68 bool GetPopupTitle(const GURL& url, base::string16* title) { argument
78 *title = new_shell->web_contents()->GetTitle();
93 // Test title for content created by javascript window.open().
99 base::string16 title; local
100 ASSERT_TRUE(GetPopupTitle(url, &title));
101 EXPECT_TRUE(StartsWith(title, ASCIIToUTF16("My Popup Title"), true))
102 << "Actual title: " << title;
105 // Test title for content created by javascript window.open().
111 base::string16 title; local
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DNavigationEntry.java25 String title, Bitmap favicon) {
30 mTitle = title;
73 * @return The title as set by the page. This will be empty if there is no
74 * title set. The caller is responsible for detecting when there is
75 * no title and displaying the appropriate "Untitled" label if this
24 NavigationEntry(int index, String url, String virtualUrl, String originalUrl, String title, Bitmap favicon) argument
/external/chromium_org/content/shell/browser/
H A Dshell_aura.cc67 void Shell::PlatformSetTitle(const base::string16& title) { argument
/external/chromium_org/content/shell/renderer/test_runner/
H A Dnotification_presenter.cc45 bool NotificationPresenter::SimulateClick(const std::string& title) { argument
46 ActiveNotificationMap::iterator iter = active_notifications_.find(title);
75 replacements_[replaceId] = notification.title().utf8();
79 if (!notification.title().isEmpty())
80 delegate_->printMessage(notification.title().utf8().data());
104 std::string title = notification.title().utf8(); local
105 active_notifications_[title] = notification;
114 std::string title = notification.title() local
127 std::string title = notification.title().utf8(); local
[all...]
/external/chromium_org/gpu/gles2_conform_support/native/
H A Degl_native.cc14 const char *title, int width, int height,
12 GTFNativeCreatePixmap(EGLNativeDisplayType nativeDisplay, EGLDisplay eglDisplay, EGLConfig eglConfig, const char *title, int width, int height, EGLNativePixmapType *pNativePixmap) argument
H A Degl_native_win.cc54 const char* title, int width, int height,
78 const std::wstring wnd_title(title, title + strlen(title));
80 const std::string wnd_title = title;
52 GTFNativeCreateWindow(EGLNativeDisplayType nativeDisplay, EGLDisplay eglDisplay, EGLConfig eglConfig, const char* title, int width, int height, EGLNativeWindowType *pNativeWindow) argument
/external/chromium_org/net/url_request/
H A Durl_request_file_dir_job.cc104 const base::string16& title = dir_path_.value(); local
111 const base::string16& title = base::WideToUTF16(
114 data_.append(GetDirectoryListingHeader(title));
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXMediaControls.cpp80 String AccessibilityMediaControl::title() const function in class:WebCore::AccessibilityMediaControl
87 return AXRenderObject::title();
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataObjectItem.h55 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromURL(const String& url, const String& title);
67 String title() const { return m_title; } function in class:WebCore::DataObjectItem
H A DPasteboard.cpp81 void Pasteboard::writeImage(Image* image, const KURL& url, const String& title) argument
90 blink::Platform::current()->clipboard()->writeImage(webImage, blink::WebURL(url), blink::WebString(title));
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAElement.cpp67 String SVGAElement::title() const function in class:WebCore::SVGAElement
69 // If the xlink:title is set (non-empty string), use it.
70 const AtomicString& title = fastGetAttribute(XLinkNames::titleAttr); local
71 if (!title.isEmpty())
72 return title;
74 // Otherwise, use the title of this element.
75 return SVGElement::title();
/external/chromium_org/third_party/WebKit/Source/platform/
H A DContextMenuItem.h75 void setTitle(const String& title) { m_title = title; } argument
76 const String& title() const { return m_title; } function in class:WebCore::ContextMenuItem
/external/chromium_org/third_party/WebKit/Source/web/
H A DValidationMessageClientImpl.cpp84 AtomicString title = m_currentAnchor->fastGetAttribute(HTMLNames::titleAttr); local
85 m_webView.client()->showValidationMessage(anchorInRootView, m_message, title, dir);
90 m_finishTime = monotonicallyIncreasingTime() + std::max(minimumSecondToShowValidationMessage, (message.length() + title.length()) * secondPerCharacter);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebDragData.h79 WebString title; member in struct:blink::WebDragData::Item
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dscreencastid.h39 const std::string& title() const { return title_; } function in class:cricket::ScreencastId
73 id.set_title(it->title());
/external/chromium_org/third_party/skia/include/views/
H A DSkWindow.h55 void setTitle(const char title[]);
64 virtual void onPDFSaved(const char title[], const char desc[], argument
76 virtual void onSetTitle(const char title[]) {} argument

Completed in 2993 milliseconds

1234567891011>>