Home
last modified time | relevance | path

Searched refs:title (Results 1 – 25 of 418) sorted by relevance

12345678910>>...17

/frameworks/base/core/java/android/provider/
DDrmStore.java102 public static final Intent addDrmFile(ContentResolver cr, File file, String title) { in addDrmFile() argument
108 if (title == null) { in addDrmFile()
109 title = file.getName(); in addDrmFile()
110 int lastDot = title.lastIndexOf('.'); in addDrmFile()
112 title = title.substring(0, lastDot); in addDrmFile()
115 result = addDrmFile(cr, fis, title); in addDrmFile()
138 public static final Intent addDrmFile(ContentResolver cr, FileInputStream fis, String title) { in addDrmFile() argument
163 values.put(DrmStore.Columns.TITLE, title); in addDrmFile()
/frameworks/base/media/java/android/media/
DRingtone.java120 String title = null; in getTitle() local
130 title = context in getTitle()
147 title = uri.getLastPathSegment(); in getTitle()
157 if (title == null) { in getTitle()
158 title = context.getString(com.android.internal.R.string.ringtone_unknown); in getTitle()
160 if (title == null) { in getTitle()
161 title = ""; in getTitle()
165 return title; in getTitle()
248 void setTitle(String title) { in setTitle() argument
249 mTitle = title; in setTitle()
/frameworks/base/cmds/dumpstate/
Dutils.c100 int dump_file(const char *title, const char* path) { in dump_file() argument
105 if (title) printf("------ %s (%s) ------\n", title, path); in dump_file()
107 if (title) printf("\n"); in dump_file()
111 if (title) printf("------ %s (%s", title, path); in dump_file()
113 if (title) { in dump_file()
136 if (title) printf("\n"); in dump_file()
141 int run_command(const char *title, int timeout_seconds, const char *command, ...) { in run_command() argument
159 if (title) printf("------ %s (%s", title, command); in run_command()
163 if (title) printf(" %s", args[arg]); in run_command()
165 if (title) printf(") ------\n"); in run_command()
[all …]
Ddumpstate.h24 int dump_file(const char *title, const char* path);
27 int run_command(const char *title, int timeout_seconds, const char *command, ...);
/frameworks/base/core/java/com/android/internal/app/
DChooserActivity.java36 CharSequence title = intent.getCharSequenceExtra(Intent.EXTRA_TITLE); in onCreate() local
37 if (title == null) { in onCreate()
38 title = getResources().getText(com.android.internal.R.string.chooseActivity); in onCreate()
54 super.onCreate(savedInstanceState, target, title, initialIntents, null, false); in onCreate()
/frameworks/base/core/java/com/android/internal/view/menu/
DMenuItemImpl.java108 CharSequence title) { in MenuItemImpl() argument
128 mTitle = title; in MenuItemImpl()
384 public MenuItem setTitle(CharSequence title) { in setTitle() argument
385 mTitle = title; in setTitle()
396 itemView.setTitle(title); in setTitle()
401 mSubMenu.setHeaderTitle(title); in setTitle()
407 public MenuItem setTitle(int title) { in setTitle() argument
408 return setTitle(mMenu.getContext().getString(title)); in setTitle()
415 public MenuItem setTitleCondensed(CharSequence title) { in setTitleCondensed() argument
416 mTitleCondensed = title; in setTitleCondensed()
[all …]
DMenuBuilder.java368 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { in addInternal() argument
371 final MenuItemImpl item = new MenuItemImpl(this, group, id, categoryOrder, ordering, title); in addInternal()
384 public MenuItem add(CharSequence title) { in add() argument
385 return addInternal(0, 0, 0, title); in add()
392 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { in add() argument
393 return addInternal(group, id, categoryOrder, title); in add()
396 public MenuItem add(int group, int id, int categoryOrder, int title) { in add() argument
397 return addInternal(group, id, categoryOrder, mResources.getString(title)); in add()
400 public SubMenu addSubMenu(CharSequence title) { in addSubMenu() argument
401 return addSubMenu(0, 0, 0, title); in addSubMenu()
[all …]
DIconMenuItemView.java94 void initialize(CharSequence title, Drawable icon) { in initialize() argument
102 setTitle(title); in initialize()
130 public void setTitle(CharSequence title) { in setTitle() argument
140 } else if (title != null) { in setTitle()
141 setText(title); in setTitle()
/frameworks/base/core/java/android/view/
DMenu.java136 public MenuItem add(CharSequence title); in add() argument
162 public MenuItem add(int groupId, int itemId, int order, CharSequence title); in add() argument
189 SubMenu addSubMenu(final CharSequence title); in addSubMenu() argument
221 SubMenu addSubMenu(final int groupId, final int itemId, int order, final CharSequence title); in addSubMenu() argument
DWindow.java393 String title; in addView() local
395 title="Media"; in addView()
397 title="MediaOvr"; in addView()
399 title="Panel"; in addView()
401 title="SubPanel"; in addView()
403 title="AtchDlg"; in addView()
405 title=Integer.toString(wp.type); in addView()
408 title += ":" + mAppName; in addView()
410 wp.setTitle(title); in addView()
810 public abstract void setTitle(CharSequence title); in setTitle() argument
DMenuItem.java93 public MenuItem setTitle(CharSequence title); in setTitle() argument
107 public MenuItem setTitle(int title); in setTitle() argument
124 public MenuItem setTitleCondensed(CharSequence title); in setTitleCondensed() argument
/frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
DBatteryWaster.java167 String title = action;
168 int index = title.lastIndexOf('.');
170 title = title.substring(index + 1);
174 log(title + ": level=" + level);
176 log(title);
/frameworks/base/docs/html/resources/webinars/
Dwebinar-watch.jd1 page.title=Watch a Webinar
21 var title = entry.title;
27 …="_blank" onClick=_gaq.push(["_trackEvent", "Live Webinar", "' + title + '"]);>' + title + '</a></…
68 var title = entry.title;
74 …"_blank" onClick=_gaq.push(["_trackEvent", "Past Webinars", "' + title + '"]);>' + title + '</a></…
Dwebinar-upcoming.jd1 page.title=Upcoming Schedule
21 var title = entry.title;
28 code.push('<h3>' + title + '</h3>');
30 …de.push('<br/><a href="https://www.google.com/calendar/event?action=TEMPLATE&hl=en&text=' + title +
/frameworks/base/core/java/android/app/
DProgressDialog.java83 public static ProgressDialog show(Context context, CharSequence title, in show() argument
85 return show(context, title, message, false); in show()
88 public static ProgressDialog show(Context context, CharSequence title, in show() argument
90 return show(context, title, message, indeterminate, false, null); in show()
93 public static ProgressDialog show(Context context, CharSequence title, in show() argument
95 return show(context, title, message, indeterminate, cancelable, null); in show()
98 public static ProgressDialog show(Context context, CharSequence title, in show() argument
102 dialog.setTitle(title); in show()
/frameworks/base/docs/html/videos/
Dindex.jd2 page.title=Videos
31 …include the title in the description meta-data, so we need to account for this when building the t…
60 * @param title The video title to display in the player box (character escaped)
63 function loadVideo(id, title, autoplay) {
71 $("#videoPlayerTitle").html("<h2>" + unescape(title) + "</h2>");
92 var title = entry.title.$t;
98 …// Check whether this playlist includes the video title inside the description meta-data, so we ca…
101 …es the first 17 chars from the title, let's use the title from the description instead (because it…
102 …I/O 2009 -", which is (so far) the min AND max for properly identifying a title in the only playli…
103 if (lines[0].indexOf(title.slice(0,16)) != -1) {
[all …]
/frameworks/base/docs/html/guide/developing/tools/
DMonkeyRunner.jd1 page.title=MonkeyRunner
4 h4.jd-details-title {background-color: #DEE8F1;}
26 <em>string</em> title,
48 <em>string</em> title)
87 <em>string</em> title,
142 <h4 class="jd-details-title">
150 <em>string</em> title,
173 <th>title</th>
175 The dialog's title. The default value is "Alert".
190 <h4 class="jd-details-title">
[all …]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
DMenu.java34 public String title; field in Menu
45 title = null; in Menu()
58 title = in.readString(); in Menu()
80 dest.writeString(title); in writeToParcel()
DTextMessage.java24 public String title = ""; field in TextMessage
37 title = in.readString(); in TextMessage()
52 dest.writeString(title); in writeToParcel()
/frameworks/base/location/java/com/android/internal/location/
DGpsNetInitiatedHandler.java185 String title = getNotifTitle(notif); in setNiNotification() local
189 ", title: " + title + in setNiNotification()
211 mNiNotification.setLatestEventInfo(mContext, title, message, pi); in setNiNotification()
237 String title = getDialogTitle(notif); in getDlgIntent() local
246 intent.putExtra(NI_INTENT_KEY_TITLE, title); in getDlgIntent()
251 if (DEBUG) Log.d(TAG, "generateIntent, title: " + title + ", message: " + message + in getDlgIntent()
426 String title = String.format("Position Request"); in getNotifTitle() local
427 return title; in getNotifTitle()
/frameworks/base/docs/html/guide/topics/sensors/
Dcompass.jd1 page.title=Compass
2 parent.title=Sensors
Daccelerometer.jd1 page.title=Accelerometer
2 parent.title=Sensors
Dcamera.jd1 page.title=Camera
2 parent.title=Sensors
/frameworks/base/docs/html/guide/topics/wireless/
Dwifi.jd1 page.title=Wi-Fi
2 parent.title=Wireless Controls
/frameworks/base/core/java/android/preference/
DPreferenceScreen.java152 final CharSequence title = getTitle(); in showDialog() local
153 Dialog dialog = mDialog = new Dialog(context, TextUtils.isEmpty(title) in showDialog()
157 if (!TextUtils.isEmpty(title)) { in showDialog()
158 dialog.setTitle(title); in showDialog()

12345678910>>...17