Searched refs:title (Results 76 - 100 of 2115) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DPropertiesSection.js33 * @param {string|Element} title
36 WebInspector.PropertiesSection = function(title, subtitle)
38 WebInspector.Section.call(this, title, subtitle);
H A DScopeChainSidebarPane.js54 if (!section.title)
57 this._expandedSections[section.title] = true;
59 delete this._expandedSections[section.title];
68 var title = null;
77 title = WebInspector.UIString("Local");
94 title = WebInspector.UIString("Closure");
100 title = WebInspector.UIString("Catch");
105 title = WebInspector.UIString("With Block");
109 title = WebInspector.UIString("Global");
114 if (!title || titl
[all...]
H A DProgress.js50 * @param {string} title
52 setTitle: function(title) { },
56 * @param {string=} title
58 setWorked: function(worked, title) { },
161 * @param {string} title
163 setTitle: function(title)
165 this._composite._parent.setTitle(title);
185 * @param {string=} title
187 setWorked: function(worked, title)
190 if (typeof title !
[all...]
H A DAuditResultView.js42 return (a.title || "").localeCompare(b.title || "");
60 WebInspector.SidebarPane.call(this, categoryResult.title);
99 var title = "";
102 title = result.value;
104 title = String.sprintf("%s (%d)", title, result.violationCount);
108 treeElement.title = title;
H A DSidebarPane.js33 WebInspector.SidebarPane = function(title)
43 this._title = title;
53 title: function()
110 this.element = container.createChild("div", "sidebar-pane-title");
111 this.element.textContent = pane.title();
194 var title = pane.title();
195 this.appendTab(title, title, pane);
197 pane.setExpandCallback(this.selectTab.bind(this, title));
[all...]
H A DPlacard.js28 * @param {string} title
31 WebInspector.Placard = function(title, subtitle)
38 this.titleElement.className = "title";
46 this.title = title;
53 get title()
58 set title(x)
H A DProgressIndicator.js90 * @param {string} title
92 setTitle: function(title)
94 this._labelElement.textContent = title;
107 * @param {string=} title
109 setWorked: function(worked, title)
113 if (title)
114 this.setTitle(title);
H A DPropertiesSidebarPane.js94 var title = prototype.description;
95 if (title.match(/Prototype$/))
96 title = title.replace(/Prototype$/, "");
97 var section = new WebInspector.ObjectPropertiesSection(prototype, title);
/external/chromium_org/ui/app_list/test/
H A Dapp_list_test_model.h32 AppListItemModel* CreateItem(const std::string& title);
33 void AddItem(const std::string& title);
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemwm_c.h34 extern void GEM_SetCaption(_THIS, const char *title, const char *icon);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowProgressDialog.java18 public static ProgressDialog show(Context context, CharSequence title, CharSequence message) { argument
19 return show(context, title, message, false);
23 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate) { argument
24 return show(context, title, message, indeterminate, false, null);
28 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable) { argument
29 return show(context, title, message, indeterminate, cancelable, null);
33 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable, ProgressDialog.OnCancelListener onCancelListener) { argument
35 progressDialog.setTitle(title);
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DContextMenuItem.cpp33 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
36 , m_title(title)
44 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) argument
47 , m_title(title)
53 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems) argument
56 , m_title(title)
/external/markdown/markdown/extensions/
H A Dabbr.py17 u'<p>Some text with an <abbr title="Abbreviation">ABBR</abbr> and a <abbr title="Abbreviation Reference">REF</abbr>. Ignore REFERENCE and ref.</p>'
30 ABBR_REF_RE = re.compile(r'[*]\[(?P<abbr>[^\]]*)\][ ]?:\s*(?P<title>.*)')
54 title = m.group('title').strip()
56 AbbrPattern(self._generate_pattern(abbr), title)
80 def __init__(self, pattern, title):
82 self.title = title
87 abbr.set('title', sel
[all...]
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dslice_group_test.js21 assertEquals('a', sliceA.title);
39 assertEquals('b', group.slices[0].title);
42 assertEquals('a', group.slices[1].title);
57 assertEquals('one', m.slices[0].title);
61 assertEquals('two', m.slices[1].title);
77 assertEquals('two', m.slices[0].title);
81 assertEquals('one', m.slices[1].title);
97 assertEquals('two', m.slices[0].title);
101 assertEquals('two (cont.)', m.slices[1].title);
105 assertEquals('one', m.slices[2].title);
[all...]
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/
H A Dgesture_parser.js38 gestureOpenSlice: function(title, ts, opt_args) {
41 'touchpad_gesture', title, ts, opt_args);
44 gestureCloseSlice: function(title, ts) {
48 if (slice.title != title) {
50 slice.title + ' in openSlice, and is ' +
51 title + ' in endSlice');
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DGetTitleTest.java32 public PageInfo(String title, String url) { argument
33 mTitle = title;
47 private static final String getHtml(String title) { argument
50 if (title != null) {
51 html.append("<title>" + title + "</title>");
79 * When the data has title info, the page title is set to it.
86 final String title
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/bookmarks/basic/
H A Dpopup.js28 if (bookmarkNode.title) {
30 if (String(bookmarkNode.title).indexOf(query) == -1) {
36 anchor.text(bookmarkNode.title);
50 '<input id="title"></td></tr><tr><td>URL</td><td><input id="url">' +
58 title: 'Confirm Deletion',
80 closeOnEscape: true, title: 'Add New Bookmark', modal: true,
84 title: $('#title').val(), url: $('#url').val()});
97 closeOnEscape: true, title: 'Edit Title', modal: true,
101 title
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/example_zipper/basic/
H A Dpopup.js28 if (bookmarkNode.title) {
30 if (String(bookmarkNode.title).indexOf(query) == -1) {
36 anchor.text(bookmarkNode.title);
50 '<input id="title"></td></tr><tr><td>URL</td><td><input id="url">' +
58 title: 'Confirm Deletion',
80 closeOnEscape: true, title: 'Add New Bookmark', modal: true,
84 title: $('#title').val(), url: $('#url').val()});
97 closeOnEscape: true, title: 'Edit Title', modal: true,
101 title
[all...]
/external/chromium_org/ui/base/dragdrop/
H A Dgtk_dnd_util_unittest.cc17 const std::string kTitle = "title";
30 base::string16 title; local
31 ASSERT_EQ(true, ui::ExtractNamedURL(&data, &url, &title));
32 EXPECT_EQ(UTF8ToUTF16(kTitle), title); local
37 const std::string kTitle = "title";
50 base::string16 title; local
51 EXPECT_FALSE(ui::ExtractNamedURL(&data, &url, &title));
56 base::string16 title; local
61 EXPECT_FALSE(ui::ExtractNamedURL(&data, &url, &title));
67 EXPECT_FALSE(ui::ExtractNamedURL(&data, &url, &title));
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
H A DMacroGroup.java37 private String title; field in class:MacroGroup
52 public Macro getMacroByTitle(String title) { argument
57 if (macro.getTitle().equalsIgnoreCase(title)) {
76 public MacroGroup getMacroGroupByTitle(String title) { argument
81 if (group.getTitle().equalsIgnoreCase(title)) {
110 return title;
113 public void setTitle(String title) { argument
114 this.title = title;
120 buf.append("<title>"
[all...]
/external/chromium/chrome/browser/web_applications/
H A Dweb_app_unittest.cc43 const string16 title = ASCIIToUTF16("TEST_TITLE"); local
47 web_app_info.title = title;
56 EXPECT_EQ(title, info.title);
/external/chromium_org/chrome/browser/extensions/api/i18n/
H A Di18n_apitest.cc49 string16 title; local
50 ui_test_utils::GetCurrentTabTitle(browser(), &title); local
51 EXPECT_EQ(std::string("FIRSTMESSAGE"), UTF16ToUTF8(title));
66 ui_test_utils::GetCurrentTabTitle(browser(), &title); local
67 EXPECT_EQ(std::string("SECONDMESSAGE"), UTF16ToUTF8(title));
/external/chromium_org/chrome/browser/web_applications/
H A Dweb_app_unittest.cc35 const string16 title = ASCIIToUTF16("TEST_TITLE"); local
39 web_app_info.title = title;
49 EXPECT_EQ(title, info.title);
/external/chromium_org/third_party/mozilla/
H A DNSPasteboard+Utils.mm44 NSString* const kCorePasteboardFlavorType_urln = @"CorePasteboardFlavorType 0x75726C6E"; // 'urln' title
48 NSString* const kWebURLsWithTitlesPboardType = @"WebURLsWithTitlesPboardType"; // Safari-compatible URL + title arrays
87 // Copy a single URL (with an optional title) to the clipboard in all relevant
91 - (void)setDataForURL:(NSString*)url title:(NSString*)title
95 if (title)
96 titleList = [NSArray arrayWithObject:title];
102 // Copy a set of URLs, each of which may have a title, to the pasteboard
104 // The title array should be nil, or must have the same length as the URL array.
110 // Best format that we know about is Safari's URL + title array
[all...]
/external/chromium/chrome/common/extensions/
H A Dfile_browser_handler.h36 // default title
37 const std::string& title() const { return title_; } function in class:FileBrowserHandler
38 void set_title(const std::string& title) { title_ = title; } argument

Completed in 1551 milliseconds

1234567891011>>