Searched refs:title (Results 101 - 125 of 1925) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DSidebarPane.js33 WebInspector.SidebarPane = function(title)
44 this._title = title;
57 title: function()
114 this.element = container.createChild("div", "sidebar-pane-title");
115 this.element.textContent = pane.title();
199 var title = pane.title();
200 this.appendTab(title, title, pane);
202 pane.setExpandCallback(this.selectTab.bind(this, title));
[all...]
H A DProgressIndicator.js89 * @param {string} title
91 setTitle: function(title)
93 this._labelElement.textContent = title;
106 * @param {string=} title
108 setWorked: function(worked, title)
112 if (title)
113 this.setTitle(title);
/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_org/chrome/browser/extensions/api/i18n/
H A Di18n_apitest.cc49 base::string16 title; local
50 ui_test_utils::GetCurrentTabTitle(browser(), &title); local
51 EXPECT_EQ(std::string("FIRSTMESSAGE"), base::UTF16ToUTF8(title));
66 ui_test_utils::GetCurrentTabTitle(browser(), &title); local
67 EXPECT_EQ(std::string("SECONDMESSAGE"), base::UTF16ToUTF8(title));
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dinitial_speech.js30 // Don't speak page title and other information if this script is not injected
38 // If we're the top-level frame, speak the title of the page +
41 var title = document.title;
43 // Allow the web author to disable reading the page title on load
44 // by adding aria-hidden=true to the <title> element.
45 var titleElement = document.querySelector('head > title');
47 title = null;
50 if (title && !disableSpeak) {
52 title, cvo
[all...]
/external/chromium_org/chrome/browser/web_applications/
H A Dweb_app_unittest.cc35 const base::string16 title = base::ASCIIToUTF16("TEST_TITLE"); local
39 web_app_info.title = title;
49 EXPECT_EQ(title, info.title);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DPropertiesSidebarPane.js108 var title = prototype.description;
109 if (title.match(/Prototype$/))
110 title = title.replace(/Prototype$/, "");
111 var section = new WebInspector.ObjectPropertiesSection(prototype, title);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DPlacard.js29 * @param {string} title
32 WebInspector.Placard = function(title, subtitle)
38 this.titleElement = this.element.createChild("div", "title");
41 this.title = title;
48 get title()
53 set title(x)
/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_org/chrome/android/java/src/org/chromium/chrome/browser/printing/
H A DTabPrinter.java44 String title = tab.getTitle();
45 if (!TextUtils.isEmpty(title)) return title;
/external/chromium_org/chrome/browser/task_manager/
H A Dtask_manager_browsertest_util.cc149 base::string16 MatchTab(const char* title) { argument
151 base::ASCIIToUTF16(title));
158 base::string16 MatchExtension(const char* title) { argument
160 base::ASCIIToUTF16(title));
165 base::string16 MatchApp(const char* title) { argument
167 base::ASCIIToUTF16(title));
172 base::string16 MatchWebView(const char* title) { argument
174 base::ASCIIToUTF16(title));
179 base::string16 MatchBackground(const char* title) { argument
181 base::ASCIIToUTF16(title));
186 MatchPrint(const char* title) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptProfiler.h72 static void start(const String& title);
73 static PassRefPtrWillBeRawPtr<ScriptProfile> stop(const String& title);
74 static PassRefPtr<ScriptHeapSnapshot> takeHeapSnapshot(const String& title, HeapSnapshotProgress*);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
H A DExtensionPanel.js135 this.element.title = tooltip;
149 * @param {string} title
152 WebInspector.ExtensionSidebarPane = function(title, id)
154 WebInspector.SidebarPane.call(this, title);
162 * @param {string} title
165 setObject: function(object, title, callback)
168 this._setObject(WebInspector.RemoteObject.fromLocalObject(object), title, callback);
173 * @param {string} title
178 setExpression: function(expression, title, evaluateOptions, securityOrigin, callback)
181 WebInspector.extensionServer.evaluate(expression, true, false, evaluateOptions, securityOrigin, this._onEvaluate.bind(this, title, callbac
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DResourceType.js33 * @param {string} title
38 WebInspector.ResourceType = function(name, title, categoryTitle, color, isTextType)
41 this._title = title;
59 title: function()
/external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/testing/
H A DNavigatorContentUtilsClientMock.cpp15 const WebCore::KURL& url, const String& title)
21 info.title = title;
14 registerProtocolHandler(const String& scheme, const WebCore::KURL& baseURL, const WebCore::KURL& url, const String& title) argument
/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/eigen/bench/btl/data/
H A Dmk_gnuplot_script.sh23 echo "'"$FILE"'" title "'"$TITLE"'" ",\\" >> $WHAT.gnuplot
27 echo "'"$LAST"'" title "'"$TITLE"'" >> $WHAT.gnuplot
40 echo "'"$FILE"'" title "'"$TITLE"'" ",\\" >> $WHAT.gnuplot
44 echo "'"$LAST"'" title "'"$TITLE"'" >> $WHAT.gnuplot
55 echo "'"$FILE"'" title "'"$TITLE"'" ",\\" >> $WHAT.gnuplot
59 echo "'"$LAST"'" title "'"$TITLE"'" >> $WHAT.gnuplot
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DRecentlyClosedBridge.java39 public final String title; field in class:RecentlyClosedBridge.RecentlyClosedTab
42 private RecentlyClosedTab(int id, String title, String url) { argument
44 this.title = title;
51 List<RecentlyClosedTab> tabs, int id, String title, String url) {
52 RecentlyClosedTab tab = new RecentlyClosedTab(id, title, url);
50 pushTab( List<RecentlyClosedTab> tabs, int id, String title, String url) argument
H A DJavascriptAppModalDialog.java36 private JavascriptAppModalDialog(String title, String message, argument
38 mTitle = title;
44 public static JavascriptAppModalDialog createAlertDialog(String title, String message, argument
46 return new JavascriptAppAlertDialog(title, message, shouldShowSuppressCheckBox);
50 public static JavascriptAppModalDialog createConfirmDialog(String title, String message, argument
52 return new JavascriptAppConfirmDialog(title, message, shouldShowSuppressCheckBox);
56 public static JavascriptAppModalDialog createBeforeUnloadDialog(String title, String message, argument
58 return new JavascriptAppBeforeUnloadDialog(title, message, isReload,
63 public static JavascriptAppModalDialog createPromptDialog(String title, String message, argument
65 return new JavascriptAppPromptDialog(title, messag
203 JavascriptAppAlertDialog(String title, String message, boolean shouldShowSuppressCheckBox) argument
220 JavascriptAppConfirmDialog(String title, String message, boolean shouldShowSuppressCheckBox) argument
239 JavascriptAppBeforeUnloadDialog(String title, String message, boolean isReload, boolean shouldShowSuppressCheckBox) argument
269 JavascriptAppPromptDialog(String title, String message, boolean shouldShowSuppressCheckBox, String defaultPromptText) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DShadowTreeStyleSheetCollection.cpp60 const AtomicString& title = element->fastGetAttribute(titleAttr); local
70 if (!enabledViaScript && sheet && !title.isEmpty()) {
72 engine->setPreferredStylesheetSetName(title);
73 engine->setSelectedStylesheetSetName(title);
75 if (title != engine->preferredStylesheetSetName())
80 if (rel.contains("alternate") && title.isEmpty())
/external/doclava/res/assets/templates/components/
H A Dsearch_box.cs11 title="search developer docs" name="q"
23 <input type="submit" value="Search" title="search" id="search-button" class="gsc-search-button" />
26 <div title="clear results" class="gsc-clear-button">&nbsp;</div>
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dinstant_event.js19 function InstantEvent(category, title, colorId, start, args) {
29 function GlobalInstantEvent(category, title, colorId, start, args) {
38 function ProcessInstantEvent(category, title, colorId, start, args) {
47 function ThreadInstantEvent(category, title, colorId, start, args) {
H A Dsample.js19 function Sample(category, title, colorId, start, args) {
/external/chromium_org/athena/test/
H A Dsample_activity.cc15 const base::string16& title)
18 title_(title),
13 SampleActivity(SkColor color, SkColor contents_color, const base::string16& title) argument
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dnav_dot.js17 * @param {string} title The title of the navigation dot.
18 * @param {bool} titleIsEditable If true, the title can be changed.
23 function NavDot(page, title, titleIsEditable, animate) {
26 dot.initialize(page, title, titleIsEditable, animate);
34 initialize: function(page, title, titleIsEditable, animate) {
47 this.input_.value = title;
52 this.displayTitle = title;
83 * Sets/gets the display title.
84 * @type {string} title Th
[all...]

Completed in 2771 milliseconds

1234567891011>>