Searched defs:title (Results 401 - 425 of 521) sorted by relevance

<<11121314151617181920>>

/external/chromium/chrome/browser/ui/views/
H A Dshell_dialogs_win.cc323 // 'extension characters' in the title of the web page.
544 const string16& title,
558 const std::wstring& title,
567 title(title),
581 std::wstring title; member in struct:SelectFileDialogImpl::ExecuteSelectParams
609 // dialog box the value in |path| is not modified and returns false. |title|
610 // is the user-supplied title text to show for the dialog box. Run on the
612 bool RunSelectFolderDialog(const std::wstring& title,
618 bool RunOpenFileDialog(const std::wstring& title,
557 ExecuteSelectParams(Type type, const std::wstring& title, const FilePath& default_path, const FileTypeInfo* file_types, int file_type_index, const std::wstring& default_extension, RunState run_state, HWND owner, void* params) argument
647 SelectFileImpl( Type type, const string16& title, const FilePath& default_path, const FileTypeInfo* file_types, int file_type_index, const FilePath::StringType& default_extension, gfx::NativeWindow owning_window, void* params) argument
777 RunSelectFolderDialog(const std::wstring& title, HWND owner, FilePath* path) argument
829 RunOpenFileDialog( const std::wstring& title, const std::wstring& filter, HWND owner, FilePath* path) argument
884 RunOpenMultiFileDialog( const std::wstring& title, const std::wstring& filter, HWND owner, std::vector<FilePath>* paths) argument
[all...]
/external/chromium/chrome/browser/ui/views/tabs/
H A Dtab_strip.cc172 // If there is no control at this location, claim the hit was in the title
385 string16 title; local
386 if (!event.data().GetURLAndTitle(&url, &title) || !url.is_valid())
/external/chromium/chrome/browser/ui/webui/chromeos/
H A Dimageburner_ui.cc33 static const char kPropertyTitle[] = "title";
71 localized_strings.SetString("title",
314 std::string title = "/dev/" + disk_path.BaseName().value(); local
317 page_value->SetString(std::string(kPropertyTitle), title); local
318 page_value->SetString(std::string(kPropertyPath), title); local
/external/chromium/chrome/browser/ui/webui/options/
H A Dcertificate_manager_handler.cc935 void CertificateManagerHandler::ShowError(const std::string& title, argument
938 args.push_back(Value::CreateStringValue(title));
948 const std::string& title,
968 StringValue title_value(title);
947 ShowImportErrors( const std::string& title, const net::CertDatabase::ImportCertFailureList& not_imported) const argument
/external/guava/guava/lib/
H A Djdiff.jar ... .ClassAPI newClass int idx String link String id String title jdiff.PackageAPI oldPkg jdiff.PackageAPI newPkg double differs ...
/external/iproute2/ip/
H A Dipxfrm.c284 FILE *fp, const char *prefix, const char *title)
288 if (title)
289 fputs(title, fp);
799 const char *title)
808 prefix, title);
854 const char *title)
860 xfrm_selector_print(&xpinfo->sel, preferred_family, fp, title);
282 xfrm_id_info_print(xfrm_address_t *saddr, struct xfrm_id *id, __u8 mode, __u32 reqid, __u16 family, int force_spi, FILE *fp, const char *prefix, const char *title) argument
797 xfrm_state_info_print(struct xfrm_usersa_info *xsinfo, struct rtattr *tb[], FILE *fp, const char *prefix, const char *title) argument
852 xfrm_policy_info_print(struct xfrm_userpolicy_info *xpinfo, struct rtattr *tb[], FILE *fp, const char *prefix, const char *title) argument
/external/libxml2/
H A Dschematron.c138 const xmlChar *title; /* the title if any */ member in struct:_xmlSchematron
1157 if (IS_SCHEMATRON(cur, "title")) {
1158 xmlChar *title = xmlNodeGetContent(cur); local
1159 if (title != NULL) {
1160 ret->title = xmlDictLookup(ret->dict, title, -1);
1161 xmlFree(title);
/external/linux-tools-perf/util/ui/browsers/
H A Dhists.c293 static int hist_browser__run(struct hist_browser *self, const char *title) argument
305 if (ui_browser__show(&self->b, title,
1034 const char *ev_name, *title = "Available samples"; local
1037 if (ui_browser__show(&menu->b, title,
1055 ui_browser__show_title(&menu->b, title);
/external/proguard/src/proguard/gui/
H A DProGuardGUI.java809 * Adds a standard border with the title that corresponds to the given key
863 final String title)
871 fileChooser.setDialogTitle(title);
862 createBrowseButton(final JTextField textField, final String title) argument
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_video.c1671 * Sets/Gets the title and icon text of the display window, if any.
1673 void SDL_WM_SetCaption (const char *title, const char *icon) argument
1679 if ( title ) {
1683 video->wm_title = SDL_strdup(title);
1691 if ( (title || icon) && (video->SetCaption != NULL) ) {
1696 void SDL_WM_GetCaption (char **title, char **icon) argument
1701 if ( title ) {
1702 *title = video->wm_title;
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/
H A DSDL_dx5video.c1850 void PrintSurface(char *title, LPDIRECTDRAWSURFACE3 surface, Uint32 flags) argument
1863 fprintf(stderr, "%s:\n", title);
/external/webkit/Source/WebCore/editing/
H A Dmarkup.cpp906 String urlToMarkup(const KURL& url, const String& title) argument
912 appendCharactersReplacingEntities(markup, title.characters(), title.length(), EntityMaskInPCDATA);
/external/webkit/Source/WebCore/history/
H A DHistoryItem.cpp74 HistoryItem::HistoryItem(const String& urlString, const String& title, double time) argument
77 , m_title(title)
92 HistoryItem::HistoryItem(const String& urlString, const String& title, const String& alternateTitle, double time) argument
95 , m_title(title)
111 HistoryItem::HistoryItem(const KURL& url, const String& target, const String& parent, const String& title) argument
116 , m_title(title)
224 const String& HistoryItem::title() const function in class:WebCore::HistoryItem
300 void HistoryItem::setTitle(const String& title) argument
302 m_title = title;
376 void HistoryItem::visited(const String& title, doubl argument
758 String title = topTitle; local
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DDetailedHeapshotView.js34 object: { title: WebInspector.UIString("Object"), disclosure: true, sortable: true, sort: "ascending" },
35 shallowSize: { title: WebInspector.UIString("Shallow Size"), width: "90px", sortable: true },
36 retainedSize: { title: WebInspector.UIString("Retained Size"), width: "90px", sortable: true }
116 object: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true },
117 count: { title: WebInspector.UIString("#"), width: "45px", sortable: true },
118 shallowSize: { title: WebInspector.UIString("Shallow Size"), width: "90px", sortable: true },
119 retainedSize: { title: WebInspector.UIString("Retained Size"), width: "90px", sort: "descending", sortable: true }
161 object: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true },
162 addedCount: { title: WebInspector.UIString("# New"), width: "72px", sortable: true, sort: "descending" },
163 removedCount: { title
949 var title = list[i].title; variable
[all...]
H A DHeapSnapshotView.js74 cons: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true },
75 count: { title: WebInspector.UIString("Count"), width: "54px", sortable: true },
76 size: { title: WebInspector.UIString("Size"), width: "72px", sort: "descending", sortable: true },
78 countDelta: { title: WebInspector.UIString("\xb1 Count"), width: "72px", sortable: true },
79 sizeDelta: { title: WebInspector.UIString("\xb1 Size"), width: "72px", sortable: true }
479 var title = list[i].title; variable
480 if (!title.indexOf(UserInitiatedProfileName))
481 title = WebInspector.UIString("Snapshot %d", title
[all...]
H A DResourcesPanel.js198 var title = frame.name; variable
207 frameTreeElement.setTitles(title, subtitle);
214 console.warn("No frame with id:" + parentFrameId + " to route " + title + "/" + subtitle + " to.")
218 var frameTreeElement = new WebInspector.FrameTreeElement(this, frameId, title, subtitle);
577 column.title = columnNames[i];
808 WebInspector.BaseStorageTreeElement = function(storagePanel, representedObject, title, iconClasses, hasChildren, noIcon)
812 this._titleText = title;
837 this.titleElement.className = "base-storage-tree-element-title";
919 WebInspector.FrameTreeElement = function(storagePanel, frameId, title, subtitle)
923 this.setTitles(title, subtitl
[all...]
/external/webkit/Source/WebCore/loader/
H A DDocumentLoader.cpp652 void DocumentLoader::setTitle(const StringWithDirection& title) argument
654 if (title.isEmpty())
657 if (m_pageTitle != title) {
659 m_pageTitle = title;
/external/webkit/Source/WebCore/page/
H A DChrome.cpp346 void Chrome::registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title) argument
348 m_client->registerProtocolHandler(scheme, baseURL, url, title);
401 // Next we'll consider a tooltip for element with "title" attribute
403 toolTip = result.title(toolTipDirection);
H A DDragController.cpp115 String title; local
116 String url = dragData->asURL(frame, DragData::DoNotConvertFilenames, &title);
120 if (title.isEmpty()) {
123 title = dragData->asPlainText(frame);
124 if (title.isEmpty())
125 title = url;
127 RefPtr<Node> anchorText = document->createTextNode(title);
733 // Simplify whitespace so the title put on the clipboard resembles what the user sees
/external/webkit/Source/WebCore/platform/
H A DContextMenuItem.h187 String title; member in struct:WebCore::PlatformMenuItemDescription
205 String title; member in struct:WebCore::PlatformMenuItemDescription
221 String title; member in struct:WebCore::PlatformMenuItemDescription
260 // On Windows, the title (dwTypeData of the MENUITEMINFO) is not set in this function. Callers can set the title themselves,
261 // and handle the lifetime of the title, if they need it.
264 void setTitle(const String& title) { m_title = title; } argument
265 const String& title() const { return m_title; } function in class:WebCore::ContextMenuItem
276 String title() cons
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DClipboardUtilitiesWin.cpp83 static bool getWebLocData(IDataObject* dataObject, String& url, String* title) argument
108 if (title) {
110 *title = String((UChar*)filename);
124 static bool getWebLocData(const DragDataMap* dataObject, String& url, String* title) argument
140 if (title) {
142 *title = filename;
152 static String extractURL(const String &inURL, String* title) argument
157 if (title)
158 *title = url.substring(splitLoc+1);
160 } else if (title)
173 createGlobalData(const KURL& url, const String& title) argument
371 getURL(IDataObject* dataObject, DragData::FilenameConversionPolicy filenamePolicy, bool& success, String* title) argument
427 getURL(const DragDataMap* data, DragData::FilenameConversionPolicy filenamePolicy, String* title) argument
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebFrameClient.h209 // The page title is available.
211 virtual void didReceiveTitle(WebFrame*, const WebString& title) { } argument
212 virtual void didReceiveTitle(WebFrame* frame, const WebString& title, WebTextDirection direction) argument
214 didReceiveTitle(frame, title);
/external/webkit/Source/WebKit/chromium/src/
H A DChromeClientImpl.cpp508 void ChromeClientImpl::registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title) argument
510 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebview.cpp254 The title of an HTML document can be accessed with the title() property.
256 using the icon() property. If the title or the icon changes, the corresponding
522 \property QWebView::title
523 \brief the title of the web page currently viewed
529 QString QWebView::title() const function in class:QWebView
532 return d->page->mainFrame()->title();
1175 \fn void QWebView::titleChanged(const QString &title)
1177 This signal is emitted whenever the \a title of the main frame changes.
1179 \sa title()
[all...]
/external/webkit/Source/WebKit/qt/declarative/
H A Dqdeclarativewebview.cpp669 \qmlproperty string WebView::title
670 This property holds the title of the web page currently viewed
674 QString QDeclarativeWebView::title() const function in class:QDeclarativeWebView
676 return page()->mainFrame()->title();

Completed in 1042 milliseconds

<<11121314151617181920>>