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

1234567891011>>

/external/chromium_org/printing/
H A Dprinting_utils.cc18 base::string16 SimplifyDocumentTitle(const base::string16& title) { argument
19 base::string16 no_controls(title);
/external/chromium_org/sync/test/fake_server/
H A Dentity_builder_factory.cc30 const string& title, const GURL& url) {
32 BookmarkEntityBuilder builder(title,
29 NewBookmarkEntityBuilder( const string& title, const GURL& url) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DPropertiesSection.js33 * @param {string|!Element} title
36 WebInspector.PropertiesSection = function(title, subtitle)
38 WebInspector.Section.call(this, title, subtitle);
/external/chromium_org/third_party/skia/include/views/
H A DSkOSWindow_Android.h36 virtual void onPDFSaved(const char title[], const char desc[],
42 virtual void onSetTitle(const char 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/skia/include/views/
H A DSkOSWindow_Android.h36 virtual void onPDFSaved(const char title[], const char desc[],
42 virtual void onSetTitle(const char title[]);
/external/chromium_org/chrome/common/extensions/docs/examples/api/power/
H A Dbackground.js42 var title = '';
48 title = chrome.i18n.getMessage('disabledTitle');
53 title = chrome.i18n.getMessage('displayTitle');
58 title = chrome.i18n.getMessage('systemTitle');
74 chrome.browserAction.setTitle({title: title});
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCPUProfilerModel.js64 * @param {string=} title
66 consoleProfileFinished: function(id, scriptLocation, cpuProfile, title)
70 this._delegate.consoleProfileFinished(id, WebInspector.DebuggerModel.Location.fromPayload(this.target(), scriptLocation), cpuProfile, title);
76 * @param {string=} title
78 consoleProfileStarted: function(id, scriptLocation, title)
82 this._delegate.consoleProfileStarted(id, WebInspector.DebuggerModel.Location.fromPayload(this.target(), scriptLocation), title);
114 * @param {string=} title
116 consoleProfileStarted: function(protocolId, scriptLocation, title) {},
122 * @param {string=} title
124 consoleProfileFinished: function(protocolId, scriptLocation, cpuProfile, title) {}
[all...]
/external/chromium_org/third_party/WebKit/Source/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/chromium_org/third_party/markdown/extensions/
H A Dabbr.py49 <p>Some text with an <abbr title="Abbreviation">ABBR</abbr> and a <abbr title="Abbreviation Reference">REF</abbr>. Ignore REFERENCE and ref.</p>
67 ABBR_REF_RE = re.compile(r'[*]\[(?P<abbr>[^\]]*)\][ ]?:\s*(?P<title>.*)')
91 title = m.group('title').strip()
93 AbbrPattern(self._generate_pattern(abbr), title)
117 def __init__(self, pattern, title):
119 self.title = title
124 abbr.set('title', sel
[all...]
/external/chromium_org/third_party/skia/experimental/iOSSampleApp/Shared/
H A DSkOptionsTableViewController.h35 - (UITableViewCell*)createAction:(NSString*)title;
36 - (UITableViewCell*)createSlider:(NSString*)title min:(float)min max:(float)max default:(float)value;
37 - (UITableViewCell*)createSwitch:(NSString*)title default:(BOOL)state;
38 - (UITableViewCell*)createTriState:(NSString*)title default:(int)index;
39 - (UITableViewCell*)createTextField:(NSString*)title default:(NSString*)value;
40 - (UITableViewCell*)createList:(NSString*)title default:(NSString*)value;
/external/chromium_org/ui/views/
H A Dbutton_drag_utils.cc25 const base::string16& title,
31 data->SetURL(url, title);
32 SetDragImage(url, title, icon, press_pt, data, widget);
36 const base::string16& title,
43 title.empty() ? base::UTF8ToUTF16(url.spec())
44 : title);
24 SetURLAndDragImage(const GURL& url, const base::string16& title, const gfx::ImageSkia& icon, const gfx::Point* press_pt, ui::OSExchangeData* data, views::Widget* widget) argument
35 SetDragImage(const GURL& url, const base::string16& title, const gfx::ImageSkia& icon, const gfx::Point* press_pt, ui::OSExchangeData* data, views::Widget* widget) argument
/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/skia/experimental/iOSSampleApp/Shared/
H A DSkOptionsTableViewController.h35 - (UITableViewCell*)createAction:(NSString*)title;
36 - (UITableViewCell*)createSlider:(NSString*)title min:(float)min max:(float)max default:(float)value;
37 - (UITableViewCell*)createSwitch:(NSString*)title default:(BOOL)state;
38 - (UITableViewCell*)createTriState:(NSString*)title default:(int)index;
39 - (UITableViewCell*)createTextField:(NSString*)title default:(NSString*)value;
40 - (UITableViewCell*)createList:(NSString*)title default:(NSString*)value;
/external/chromium_org/content/shell/renderer/test_runner/
H A Dnotification_presenter.cc45 bool NotificationPresenter::SimulateClick(const std::string& title) { argument
46 ActiveNotificationMap::iterator iter = active_notifications_.find(title);
75 replacements_[replaceId] = notification.title().utf8();
79 if (!notification.title().isEmpty())
80 delegate_->printMessage(notification.title().utf8().data());
104 std::string title = notification.title().utf8(); local
105 active_notifications_[title] = notification;
114 std::string title = notification.title() local
127 std::string title = notification.title().utf8(); local
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
H A DrootUi.js46 this.showDialog = function(content, title) {
48 title = title || '';
58 dialog.dialog({modal: true, title: title, height:'auto', width:'auto'});
/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/components/policy/core/browser/
H A Dmanaged_bookmarks_tracker.cc52 base::string16 title; local
55 if (!LoadBookmark(list, i, &title, &url, &children))
59 child->SetTitle(title);
85 // Update the managed bookmarks folder title, in case the user just signed
87 base::string16 title; local
90 title =
93 title = l10n_util::GetStringFUTF16(
96 model_->SetTitle(managed_node_, title);
111 base::string16 title; local
114 if (!LoadBookmark(list, i, &title,
159 LoadBookmark(const base::ListValue* list, size_t index, base::string16* title, GURL* url, const base::ListValue** children) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DScopeChainSidebarPane.js57 if (!section.title)
60 this._expandedSections[section.title] = true;
62 delete this._expandedSections[section.title];
71 var title = null;
80 title = WebInspector.UIString("Local");
100 title = WebInspector.UIString("Closure");
106 title = WebInspector.UIString("Catch");
111 title = WebInspector.UIString("With Block");
115 title = WebInspector.UIString("Global");
120 if (!title || titl
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DStyleSheetCandidate.cpp43 AtomicString StyleSheetCandidate::title() const function in class:WebCore::StyleSheetCandidate
84 return !isEnabledViaScript() && !title().isEmpty() && !isAlternate() && currentPreferrableName.isEmpty();
92 const AtomicString& title = this->title(); local
93 if (!isEnabledViaScript() && !title.isEmpty() && title != currentPreferrableName)
95 if (isAlternate() && title.isEmpty())
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DGetTitleTest.java31 public PageInfo(String title, String url) { argument
32 mTitle = title;
46 private static final String getHtml(String title) { argument
49 if (title != null) {
50 html.append("<title>" + title + "</title>");
78 * When the data has title info, the page title is set to it.
85 final String title
[all...]
/external/chromium_org/components/dom_distiller/core/
H A Dviewer.cc32 const std::string& title,
40 substitutions.push_back(title); // $1
43 substitutions.push_back(title); // $4
81 std::string title = net::EscapeForHTML(page_proto->title()); local
86 return ReplaceHtmlTemplateValues(title,
95 std::string title; local
99 title = net::EscapeForHTML(article_proto->title());
106 title
31 ReplaceHtmlTemplateValues( const std::string& title, const std::string& content, const std::string& loading_indicator_class, const std::string& original_url) argument
123 std::string title = l10n_util::GetStringUTF8( local
[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...]

Completed in 8462 milliseconds

1234567891011>>