Searched refs:title (Results 276 - 300 of 1104) sorted by relevance

<<11121314151617181920>>

/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A DHTMLIFrameElement11.js79 and examine its title.
101 vtitle = cd.title;
H A Ddoc01.js78 Retrieve the title attribute of HTMLDocument and examine it's value.
95 vtitle = doc.title;
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfile.cpp34 PassRefPtr<Profile> Profile::create(const UString& title, unsigned uid) argument
36 return adoptRef(new Profile(title, uid));
39 Profile::Profile(const UString& title, unsigned uid) argument
40 : m_title(title)
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptHeapSnapshot.h59 String title() const;
H A DScriptProfile.h53 String title() const;
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HistoryCustom.cpp52 String title = toWebCoreStringWithNullOrUndefinedCheck(args[1]); local
64 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectPush, ec);
76 String title = toWebCoreStringWithNullOrUndefinedCheck(args[1]); local
88 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectReplace, ec);
/external/webkit/Source/WebCore/inspector/front-end/
H A DCheckbox.js36 this.element.title = tooltip;
H A DSidebarTreeElement.js26 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren)
28 TreeElement.call(this, title.escapeHTML(), representedObject || {}, hasChildren);
66 WebInspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildren)
87 this.titleElement.className = "title";
95 this.mainTitle = title;
H A DTimelinePanel.js175 recordStyles[recordTypes.EventDispatch] = { title: WebInspector.UIString("Event"), category: this.categories.scripting };
176 recordStyles[recordTypes.Layout] = { title: WebInspector.UIString("Layout"), category: this.categories.rendering };
177 recordStyles[recordTypes.RecalculateStyles] = { title: WebInspector.UIString("Recalculate Style"), category: this.categories.rendering };
178 recordStyles[recordTypes.Paint] = { title: WebInspector.UIString("Paint"), category: this.categories.rendering };
179 recordStyles[recordTypes.ParseHTML] = { title: WebInspector.UIString("Parse"), category: this.categories.loading };
180 recordStyles[recordTypes.TimerInstall] = { title: WebInspector.UIString("Install Timer"), category: this.categories.scripting };
181 recordStyles[recordTypes.TimerRemove] = { title: WebInspector.UIString("Remove Timer"), category: this.categories.scripting };
182 recordStyles[recordTypes.TimerFire] = { title: WebInspector.UIString("Timer Fired"), category: this.categories.scripting };
183 recordStyles[recordTypes.XHRReadyStateChange] = { title: WebInspector.UIString("XHR Ready State Change"), category: this.categories.scripting };
184 recordStyles[recordTypes.XHRLoad] = { title
[all...]
/external/webkit/Source/WebCore/platform/efl/
H A DDragDataEfl.cpp73 String DragData::asURL(Frame*, FilenameConversionPolicy filenamePolicy, String* title) const
/external/webkit/Source/WebCore/platform/win/
H A DContextMenuWin.cpp97 LPCWSTR title = 0; local
106 title = menuItem.dwTypeData;
117 ::InsertMenuW(menu, i, flags, newItem, title);
119 // ContextMenuItem::nativeMenuItem doesn't set the title of the MENUITEMINFO to make the
121 String itemTitle = item.title();
/external/webkit/Source/WebCore/platform/wince/
H A DDragDataWinCE.cpp40 String DragData::asURL(Frame*, FilenameConversionPolicy filenamePolicy, String* title) const
/external/webkit/Source/WebCore/platform/wx/
H A DDragDataWx.cpp79 String DragData::asURL(Frame*, FilenameConversionPolicy filenamePolicy, String* title) const
/external/webkit/Source/WebCore/wml/
H A DWMLElement.h40 virtual String title() const;
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DQtMaemoWebPopup.cpp128 // we try to get the standard list title the web browser is using
129 const char* title = ::dgettext("osso-browser-ui", "weba_ti_texlist_single"); local
130 if (qstrcmp(title, "weba_ti_texlist_single"))
131 setWindowTitle(QString::fromUtf8(title));
175 // we try to get the standard list title the web browser is using
176 const char* title = ::dgettext("osso-browser-ui", "weba_ti_textlist_multi"); local
177 if (qstrcmp(title, "weba_ti_textlist_multi"))
178 setWindowTitle(QString::fromUtf8(title));
200 // we try to get the standard Done button title
202 title
[all...]
/external/webkit/Source/WebKit/qt/examples/platformplugin/
H A DWebPlugin.cpp125 const char* title = "select"; local
126 if (qstrcmp(title, "weba_ti_texlist_single"))
127 setWindowTitle(QString::fromUtf8(title));
171 const char* title = "select"; local
172 if (qstrcmp(title, "weba_ti_textlist_multi"))
173 setWindowTitle(QString::fromUtf8(title));
196 title = "done";
197 if (qstrcmp(title, "wdgt_bd_done"))
198 done->setText(QString::fromUtf8(title));
/external/webkit/Source/WebKit2/Shared/
H A DWebContextMenuItem.h44 static PassRefPtr<WebContextMenuItem> create(const String& title, bool enabled, ImmutableArray* submenuItems);
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqgraphicswkview.h22 Q_PROPERTY(QString title READ title)
39 QString title() const;
58 Q_SIGNAL void titleChanged(const QString& title);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebHistoryClient.h45 void didUpdateHistoryTitle(WebContext*, WebPageProxy*, const String& title, const String& url, WebFrameProxy*);
/external/chromium/chrome/browser/ui/gtk/
H A Ddialogs_gtk.cc45 const string16& title,
70 GtkWidget* CreateSelectFolderDialog(const std::string& title,
73 GtkWidget* CreateFileOpenDialog(const std::string& title,
76 GtkWidget* CreateMultiFileOpenDialog(const std::string& title,
79 GtkWidget* CreateSaveAsDialog(const std::string& title,
100 GtkWidget* CreateFileOpenHelper(const std::string& title,
195 const string16& title,
209 std::string title_string = UTF16ToUTF8(title);
349 const std::string& title,
353 gtk_file_chooser_dialog_new(title
193 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
348 CreateFileOpenHelper( const std::string& title, const FilePath& default_path, gfx::NativeWindow parent) argument
377 CreateSelectFolderDialog( const std::string& title, const FilePath& default_path, gfx::NativeWindow parent) argument
404 CreateFileOpenDialog( const std::string& title, const FilePath& default_path, gfx::NativeWindow parent) argument
417 CreateMultiFileOpenDialog( const std::string& title, const FilePath& default_path, gfx::NativeWindow parent) argument
430 CreateSaveAsDialog(const std::string& title, const FilePath& default_path, gfx::NativeWindow parent) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/main/macosx/
H A DSDLMain.m110 aRange = [[aMenu title] rangeOfString:@"SDL App"];
112 [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]];
117 aRange = [[menuItem title] rangeOfString:@"SDL App"];
119 [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]];
133 NSString *title;
140 title = [@"About " stringByAppendingString:appName];
141 [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
145 title = [@"Hide " stringByAppendingString:appName];
146 [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"];
155 title
[all...]
/external/webkit/Source/WebCore/platform/chromium/
H A DClipboardChromium.cpp261 String title = element->getAttribute(altAttr); local
262 if (title.isEmpty())
263 title = cachedImage->response().suggestedFilename();
265 title = ClipboardChromium::validateFileName(title, dataObject);
266 dataObject->setFileContentFilename(title + dataObject->fileExtension());
269 void ClipboardChromium::declareAndWriteDragImage(Element* element, const KURL& url, const String& title, Frame* frame) argument
275 m_dataObject->setUrlTitle(title);
292 void ClipboardChromium::writeURL(const KURL& url, const String& title, Frame*) argument
298 m_dataObject->setUrlTitle(title);
[all...]
/external/bison/src/
H A Dgram.h253 void grammar_rules_partial_print (FILE *out, const char *title,
260 void grammar_dump (FILE *out, const char *title);
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_folder_editor_controller.cc42 string16 title = is_new_ ? local
52 UTF16ToWideHack(title),
/external/chromium/chrome/browser/history/
H A Dhistory_publisher.h40 const string16& title,
50 const char16* title; member in struct:history::HistoryPublisher::PageData

Completed in 632 milliseconds

<<11121314151617181920>>