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

<<11121314151617181920>>

/external/doclava/res/assets/templates/
H A Ddocpage.cs13 <a href="<?cs var:parent.link ?>"><?cs var:parent.title ?></a> >
17 <h1 itemprop="name"><?cs var:page.title ?></h1>
28 <p><a href="<?cs var:parent.link ?>">&larr; Back to <?cs var:parent.title ?></a></p>
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DLineGraph.java28 String title; field in class:LineGraph.GraphItem
34 GraphItem(String title, String description,double value, Color color,boolean display) { argument
35 this(title, description, value, color);
39 GraphItem(String title, String description, double value, Color color) { argument
40 this.title= title;
48 Point e2= g.stringExtent(this.title);
61 public LineGraph(String title, Dim dim) { argument
62 this.fTitle= title;
97 // draw the title
[all...]
/external/fio/
H A Dgraph.h27 void graph_title(struct graph *g, const char *title);
28 /* graph_title() sets the main title of the graph to the given string */
29 void graph_x_title(struct graph *g, const char *title);
30 /* graph_x_title() sets the title of the x axis to the given string */
31 void graph_y_title(struct graph *g, const char *title);
32 /* graph_y_title() sets the title of the y axis to the given string */
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemwm.c43 void GEM_SetCaption(_THIS, const char *title, const char *icon) argument
45 if (title) {
46 GEM_title_name = title;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineUIUtils.js130 * @param {string=} title
133 createEventDivider: function(recordType, title)
266 rowElement.createTextChild(WebInspector.UIString("%s %s (Self)", formatter(selfTime), selfCategory.title));
275 rowElement.createTextChild(WebInspector.UIString("%s %s (Children)", formatter(value), selfCategory.title));
290 rowElement.createTextChild(WebInspector.UIString("%s %s", formatter(value), category.title));
388 * @param {string} title
395 WebInspector.TimelineCategory = function(name, title, overviewStripGroupIndex, borderColor, backgroundColor, fillColorStop0, fillColorStop1)
398 this.title = title;
431 * @param {string} title
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DsidebarPane.css74 .sidebar-pane-title {
89 .sidebar-pane-title:active {
95 .sidebar-pane-title::before {
110 .sidebar-pane-title::before {
115 .sidebar-pane-title::before {
119 .sidebar-pane-title.expanded::before {
137 .sidebar-pane-toolbar > .pane-title-button,
150 .sidebar-pane-toolbar > .pane-title-button {
155 .sidebar-pane-toolbar > .pane-title-button:hover {
159 .sidebar-pane-toolbar > .pane-title
[all...]
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_model_unittest.cc39 // a new folder/bookmark or updating a title of a folder/bookmark.
68 // a new folder/bookmark or updating a title of a folder/bookmark.
333 const base::string16 title(ASCIIToUTF16("foo"));
336 const BookmarkNode* new_node = model_->AddURL(root, 0, title, url);
341 ASSERT_EQ(title, new_node->GetTitle());
353 const base::string16 title(base::WideToUTF16(
357 const BookmarkNode* new_node = model_->AddURL(root, 0, title, url);
362 ASSERT_EQ(title, new_node->GetTitle());
375 const base::string16 title(
379 const BookmarkNode* new_node = model_->AddURL(root, i, title, ur
1150 const base::string16 title = base::ASCIIToUTF16("Title"); local
[all...]
/external/chromium_org/chrome/android/shell/javatests/src/org/chromium/chrome/shell/
H A DChromeShellUrlTest.java58 // Ensure the correct page has been loaded, ie. not interstitial, and title/url should
59 // be sane. Note, a typical correct title is: "Welcome to Chromium", whereas a wrong one
63 final AtomicReference<String> title = new AtomicReference<String>();
70 title.set(contentViewCore.get().getWebContents().getTitle());
78 assertNotNull("Title was null", title.get());
79 assertFalse("Title should not contain: " + welcomeUrl + ". Was: " + title.get(),
80 title.get().toLowerCase(Locale.US).contains(welcomeUrl));
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dlink_converter.py24 title = matches.group(3)
28 title)
42 title)
50 if link in title:
53 return '%s$(ref:%s%s %s)' % (padding, page, link, title)
H A Ddocument_parser.py10 |title| The title of the page, as pulled from the first <h1>.
11 |title_attributes| The attributes of the <h1> tag the title is derived from.
16 def __init__(self, title, title_attributes, sections, warnings):
17 self.title = title
50 # Documents can override the name of the entry using title="".
61 '''Parses the title and a document structure form |document| and returns a
74 If no title is found or |document| is malformed in some way, returns the
76 removing the title fro
[all...]
H A Dreference_resolver.py145 def GetLink(self, ref, namespace=None, title=None):
164 if title is not None:
166 link['text'] = title
170 def SafeGetLink(self, ref, namespace=None, title=None, path=None):
174 ref_data = self.GetLink(ref, namespace=namespace, title=title)
182 'text': title or ref,
/external/chromium_org/content/child/
H A Dchild_process.cc111 std::string title = "Google Chrome"; local
113 std::string title = "Chromium";
115 title += " ";
116 title += label; // makes attaching to process easier
121 base::UTF8ToWide(title).c_str(),
/external/chromium_org/gpu/gles2_conform_support/native/
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/third_party/WebKit/Source/core/svg/
H A DSVGAElement.cpp67 String SVGAElement::title() const function in class:blink::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/devtools/front_end/components/
H A DDrawer.js94 * @param {string} title
97 showCloseableView: function(id, title, view)
100 this._tabbedPane.appendTab(id, title, view, undefined, false, true);
103 this._tabbedPane.changeTabTitle(id, title);
118 this._toggleDrawerButton.title = WebInspector.UIString("Hide drawer.");
124 this._toggleDrawerButton.title = WebInspector.UIString("Show drawer.");
H A DSection.js32 * @param {string|!Element} title
35 WebInspector.Section = function(title, subtitle)
45 this.titleElement.className = "title";
56 this.title = title;
62 get title()
67 set title(x)
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
H A Dprocesses.js244 {title: 'System Memory Usage (MB)', is3D: true});
246 {title: 'CPU Usage',
282 title: 'CPU stats for ' + this.selProcUri_,
284 vAxes: {0: {title: 'CPU %', maxValue: 100}, 1: {title: '# Threads'}},
286 hAxis: {title: 'Run Time'},
290 title: 'Memory stats for ' + this.selProcUri_,
292 vAxes: {0: {title: 'VM Rss KB'}, 1: {title: '# Page Faults'}},
294 hAxis: {title
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dbrowser.h22 const char *title; member in struct:ui_browser
44 void __ui_browser__show_title(struct ui_browser *browser, const char *title);
45 void ui_browser__show_title(struct ui_browser *browser, const char *title);
46 int ui_browser__show(struct ui_browser *self, const char *title,
60 int ui_browser__input_window(const char *title, const char *text, char *input,
/external/chromium_org/chrome/browser/history/android/
H A Dbookmark_model_sql_handler.cc34 const base::string16& title) {
40 bookmark_model->AddURL(mobile_node, 0, title, url);
44 const base::string16& title,
52 bookmark_model->AddURL(parent, 0, title, url);
70 const base::string16& title) {
78 bookmark_model->SetTitle(*i, title);
116 i->url, url_row.title(), row.parent_id()));
122 i->url, url_row.title()));
136 i->url, row.title()));
164 row->url(), row->title(), ro
32 AddBookmarkToMobileFolder( const GURL& url, const base::string16& title) argument
43 AddBookmark(const GURL& url, const base::string16& title, int64 parent_id) argument
68 UpdateBookmarkTitle( const GURL& url, const base::string16& title) argument
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dsimple_message_box_views.cc32 SimpleMessageBoxViews(const base::string16& title,
77 SimpleMessageBoxViews::SimpleMessageBoxViews(const base::string16& title, argument
83 : window_title_(title),
205 const base::string16& title,
218 title, GetMessageBoxFlagsFromType(type));
226 << title << " - " << message;
232 new SimpleMessageBoxViews(title,
249 const base::string16& title,
253 parent, title, message, type, base::string16(), base::string16());
257 const base::string16& title,
204 ShowMessageBoxImpl(gfx::NativeWindow parent, const base::string16& title, const base::string16& message, MessageBoxType type, const base::string16& yes_text, const base::string16& no_text) argument
248 ShowMessageBox(gfx::NativeWindow parent, const base::string16& title, const base::string16& message, MessageBoxType type) argument
256 ShowMessageBoxWithButtonText(gfx::NativeWindow parent, const base::string16& title, const base::string16& message, const base::string16& yes_text, const base::string16& no_text) argument
[all...]
/external/chromium_org/content/browser/frame_host/
H A Dnavigation_entry_impl.cc63 const base::string16& title,
73 title_(title),
133 void NavigationEntryImpl::SetTitle(const base::string16& title) { argument
134 title_ = title;
176 // More complicated cases will use the URLs as the title. This result we will
182 base::string16 title;
184 title = net::FormatUrl(virtual_url_, languages);
186 title = net::FormatUrl(url_, languages);
189 // For file:// URLs use the filename as the title, not the full path.
191 base::string16::size_type slashpos = title
59 NavigationEntryImpl(SiteInstanceImpl* instance, int page_id, const GURL& url, const Referrer& referrer, const base::string16& title, ui::PageTransition transition_type, bool is_renderer_initiated) argument
[all...]
/external/chromium_org/ui/file_manager/file_manager/audio_player/js/
H A Daudio_player.js48 container.ownerDocument.title = strings['AUDIO_PLAYER_TITLE'];
376 this.title = this.getDefaultTitle();
390 * @return {string} Default track title (file name extracted from the url).
393 var title = this.url.split('/').pop();
394 var dotIndex = title.lastIndexOf('.');
395 if (dotIndex >= 0) title = title.substr(0, dotIndex);
396 title = decodeURIComponent(title);
397 return title;
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DArrayAdapterTest.java58 ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(Robolectric.application, R.layout.main, R.id.title, new String[] { "first value" });
60 TextView titleTextView = (TextView) listItemView.findViewById(R.id.title);
66 ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(Robolectric.application, R.id.title, new String[] { "first value" });
68 //this assertion may look a little backwards since R.id.title is labeled
70 Assert.assertTrue(Robolectric.shadowOf(arrayAdapter).getResourceId()==R.id.title);
71 Assert.assertTrue(Robolectric.shadowOf(arrayAdapter).getTextViewResourceId()!=R.id.title);
74 ArrayAdapter<String> arrayAdapter2 = new ArrayAdapter<String>(Robolectric.application, R.id.title);
76 //this assertion may look a little backwards since R.id.title is labeled
78 Assert.assertTrue(Robolectric.shadowOf(arrayAdapter2).getResourceId()==R.id.title);
79 Assert.assertTrue(Robolectric.shadowOf(arrayAdapter2).getTextViewResourceId()!=R.id.title);
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestMenuItem.java13 private CharSequence title; field in class:TestMenuItem
50 public MenuItem setTitle(CharSequence title) { argument
51 this.title = title;
56 public MenuItem setTitle(int title) { argument
62 return title;
66 public MenuItem setTitleCondensed(CharSequence title) { argument
/external/chromium_org/chrome/browser/extensions/
H A Dcontext_menu_matcher.cc96 base::string16 title; local
100 title = base::UTF8ToUTF16(extension->name());
105 title = item->TitleWithReplacement(selection_text,
113 menu_model_->AddItem(menu_id, title);
117 menu_model_->AddSubMenu(menu_id, title, submenu);
144 base::string16 title; local
149 title = base::UTF8ToUTF16(extension->name());
152 title = item->TitleWithReplacement(
155 return title;
259 base::string16 title local
[all...]

Completed in 1083 milliseconds

<<11121314151617181920>>