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

123456

/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py129 def _add_timeseries_axes(self, index, title, ylabel, ylim, yticks, sharex=None):
140 axes.text(0.02, 0.02, title, transform=axes.transAxes, fontsize=10, fontweight='bold')
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DUiccCard.java260 String title = (isAdded) ? r.getString(R.string.sim_added_title) :
267 .setTitle(title)
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java107 boolean dumpMap(PrintWriter out, String titlePrefix, String title, argument
123 if (title != null) {
124 out.print(titlePrefix); out.println(title);
125 title = null;
144 public boolean dump(PrintWriter out, String title, String prefix, String packageName, argument
148 String curPrefix = title + "\n" + prefix;
/frameworks/base/services/java/com/android/server/usb/
H A DUsbDeviceManager.java677 // clear notification if title needs changing
686 CharSequence title = r.getText(id);
692 notification.tickerText = title;
703 notification.setLatestEventInfo(mContext, title, message, pi);
719 CharSequence title = r.getText(id);
727 notification.tickerText = title;
738 notification.setLatestEventInfo(mContext, title, message, pi);
/frameworks/base/core/java/android/app/
H A DActivity.java2461 CharSequence title = getTitle();
2462 if (!TextUtils.isEmpty(title)) {
2463 event.getText().add(title);
4477 * Change the title associated with this activity. If this is a
4478 * top-level activity, the title for its window will change. If it
4482 public void setTitle(CharSequence title) { argument
4483 mTitle = title;
4484 onTitleChanged(title, mTitleColor);
4487 mParent.onChildTitleChanged(this, title);
4492 * Change the title associate
4514 onTitleChanged(CharSequence title, int color) argument
4526 onChildTitleChanged(Activity childActivity, CharSequence title) argument
5045 attach(Context context, ActivityThread aThread, Instrumentation instr, IBinder token, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, NonConfigurationInstances lastNonConfigurationInstances, Configuration config) argument
5053 attach(Context context, ActivityThread aThread, Instrumentation instr, IBinder token, int ident, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, NonConfigurationInstances lastNonConfigurationInstances, Configuration config) argument
[all...]
H A DDownloadManager.java67 * The client-supplied title for this download. This will be displayed in system notifications.
550 * Set the title of this download, to be displayed in notifications (if enabled). If no
551 * title is given, a default one will be assigned based on the download filename, once the
555 public Request setTitle(CharSequence title) { argument
556 mTitle = title;
1146 * @param title the title that would appear for this file in Downloads App.
1160 public long addCompletedDownload(String title, String description, argument
1164 validateArgumentIsNonEmpty("title", title);
[all...]
H A DDialog.java509 * Set the title text for this dialog's window.
511 * @param title The new text to display in the title.
513 public void setTitle(CharSequence title) { argument
514 mWindow.setTitle(title);
515 mWindow.getAttributes().setTitle(title);
519 * Set the title text for this dialog's window. The text is retrieved
522 * @param titleId the title's text resource identifier
H A DLauncherActivity.java382 public void setTitle(CharSequence title) { argument
383 super.setTitle(title);
H A DActionBar.java32 * A window feature at the top of the activity that may display the activity title, navigation
41 * the left, followed by the activity title. If your activity has an options menu, you can make
62 * and title text with an optional subtitle. Clicking any of these elements
69 * List navigation mode. Instead of static title text this mode
76 * Tab navigation mode. Instead of static title text this mode
115 * Show the activity title and subtitle, if present.
287 * Set the action bar's title. This will only be displayed if
290 * @param title Title to set
295 public abstract void setTitle(CharSequence title); argument
298 * Set the action bar's title
[all...]
/frameworks/base/core/java/android/webkit/
H A DCallbackProxy.java899 String title = url;
902 title = mContext.getString(R.string.js_dialog_title_default);
907 title = mContext.getString(R.string.js_dialog_title,
910 // do nothing. just use the url as the title
913 return title;
1319 public void onReceivedTitle(String title) { argument
1325 sendMessage(obtainMessage(RECEIVED_TITLE, title));
/frameworks/base/core/java/android/provider/
H A DBrowser.java151 * Open an activity to save a bookmark. Launch with a title
155 * @param title Title for the bookmark. Can be null or empty string.
159 String title,
162 i.putExtra("title", title);
206 * @param chooserDialogTitle The title of the dialog that allows the user
605 * The user visible title of the bookmark or history item.
608 public static final String TITLE = "title";
158 saveBookmark(Context c, String title, String url) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java501 * Set the action bar title. This will always replace or override window titles.
502 * @param title Title to set
506 public void setTitle(CharSequence title) { argument
508 setTitleImpl(title);
512 * Set the window title. A window title will always be replaced or overridden by a user title.
513 * @param title Title to set
517 public void setWindowTitle(CharSequence title) { argument
519 setTitleImpl(title);
523 setTitleImpl(CharSequence title) argument
[all...]
H A DActionBarContextView.java158 public void setTitle(CharSequence title) { argument
159 mTitle = title;
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DSummarizer.java435 StringBuilder html, String title, Cursor cursor) {
440 html.append("<h2>" + title + " [" + cursor.getCount() + "]</h2>");
434 createResultsList( StringBuilder html, String title, Cursor cursor) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java390 * Set the title that will be used for the activity chooser for this share.
392 * @param title Title string
395 public IntentBuilder setChooserTitle(CharSequence title) { argument
396 mChooserTitle = title;
401 * Set the title that will be used for the activity chooser for this share.
403 * @param resId Resource ID of the title string to use
935 * Get the human-readable label (title) of the calling application if
/frameworks/base/core/java/android/view/
H A DWindowManager.java1324 public final void setTitle(CharSequence title) { argument
1325 if (null == title)
1326 title = "";
1328 mTitle = TextUtils.stringOrSpannedString(title);
1571 Log.d("Debug", "WindowManager.LayoutParams={title=" + mTitle + "}");
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java382 public void setTitle(CharSequence title) { argument
383 mActionView.setTitle(title);
889 public void setTitle(CharSequence title) { argument
890 mContextView.setTitle(title);
H A DAlertController.java233 /* We use a custom title so never request a window title */
244 public void setTitle(CharSequence title) { argument
245 mTitle = title;
247 mTitleView.setText(title);
425 /* Only display the divider if we have a title and a
449 // Add the custom title view directly to the topPanel layout
455 // Hide the title template
463 /* Display the title if a title i
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserView.java698 TextView titleView = (TextView) convertView.findViewById(R.id.title);
713 // Set the title.
714 TextView titleView = (TextView) convertView.findViewById(R.id.title);
H A DTabHost.java602 final TextView tv = (TextView) tabIndicator.findViewById(R.id.title);
636 final TextView tv = (TextView) tabIndicator.findViewById(R.id.title);
/frameworks/base/tools/orientationplot/
H A Dorientationplot.py203 def _add_timeseries_axes(self, index, title, ylabel, ylim, yticks, sharex=None):
214 axes.text(0.02, 0.02, title, transform=axes.transAxes, fontsize=10, fontweight='bold')
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardBuilder.java1302 String title = contentValues.getAsString(Organization.TITLE);
1303 if (title != null) {
1304 title = title.trim();
1323 if (!TextUtils.isEmpty(title)) {
1324 appendLine(VCardConstants.PROPERTY_TITLE, title,
1325 !VCardUtils.containsOnlyPrintableAscii(title),
1327 !VCardUtils.containsOnlyNonCrLfPrintableAscii(title)));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmServiceStateTracker.java1631 CharSequence title = context.getText(com.android.internal.R.string.RestrictedChangedTitle);
1656 if (DBG) log("setNotification: put notification " + title + " / " +details);
1657 mNotification.tickerText = title;
1658 mNotification.setLatestEventInfo(context, title, details,
/frameworks/base/media/mca/
H A Dstructgen.py89 upper = [c.title() for c in lower]
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DTestShellActivity.java658 public void onReceivedTitle(WebView view, String title) {
659 setTitle("Test " + mCurrentTestNumber + " of " + mTotalTestCount + ": "+ title);
662 mTitleChanges.append(title);

Completed in 331 milliseconds

123456