Searched refs:title (Results 1 - 25 of 154) sorted by relevance

1234567

/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
H A DInputMethodSettingsInterface.java27 * Sets the title for the input method settings category with a resource ID.
28 * @param resId The resource ID of the title.
33 * Sets the title for the input method settings category with a CharSequence.
34 * @param title The title for this preference.
36 public void setInputMethodSettingsCategoryTitle(CharSequence title); argument
39 * Sets the title for the input method enabler preference for launching subtype enabler with a
41 * @param resId The resource ID of the title.
46 * Sets the title for the input method enabler preference for launching subtype enabler with a
48 * @param title Th
50 setSubtypeEnablerTitle(CharSequence title) argument
[all...]
H A DInputMethodSettingsActivity.java50 public void setInputMethodSettingsCategoryTitle(CharSequence title) { argument
51 mSettings.setInputMethodSettingsCategoryTitle(title);
66 public void setSubtypeEnablerTitle(CharSequence title) { argument
67 mSettings.setSubtypeEnablerTitle(title);
H A DInputMethodSettingsFragment.java51 public void setInputMethodSettingsCategoryTitle(CharSequence title) { argument
52 mSettings.setInputMethodSettingsCategoryTitle(title);
67 public void setSubtypeEnablerTitle(CharSequence title) { argument
68 mSettings.setSubtypeEnablerTitle(title);
H A DInputMethodSettingsImpl.java63 final CharSequence title = getSubtypeEnablerTitle(context);
67 if (!TextUtils.isEmpty(title)) {
68 intent.putExtra(Intent.EXTRA_TITLE, title);
122 public void setInputMethodSettingsCategoryTitle(CharSequence title) { argument
124 mInputMethodSettingsCategoryTitle = title;
141 public void setSubtypeEnablerTitle(CharSequence title) { argument
143 mSubtypeEnablerTitle = title;
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h31 int dump_file(const char *title, const char* path);
34 int run_command(const char *title, int timeout_seconds, const char *command, ...);
/frameworks/base/core/java/android/view/
H A DMenu.java38 * {@link MenuItem#setTitleCondensed(CharSequence) condensed title}. The
136 * Add a new item to the menu. This item displays the given title for its
139 * @param title The text to display for the item.
142 public MenuItem add(CharSequence title); argument
145 * Add a new item to the menu. This item displays the given title for its
148 * @param titleRes Resource identifier of title string.
154 * Add a new item to the menu. This item displays the given title for its
165 * @param title The text to display for the item.
168 public MenuItem add(int groupId, int itemId, int order, CharSequence title); argument
182 * @param titleRes Resource identifier of title strin
195 addSubMenu(final CharSequence title) argument
227 addSubMenu(final int groupId, final int itemId, int order, final CharSequence title) argument
[all...]
H A DContextMenu.java41 * Sets the context menu header's title to the title given in <var>titleRes</var>
44 * @param titleRes The string resource identifier used for the title.
50 * Sets the context menu header's title to the title given in <var>title</var>.
52 * @param title The character sequence used for the title.
55 public ContextMenu setHeaderTitle(CharSequence title); argument
77 * <var>view</var>. This replaces the header title an
[all...]
H A DSubMenu.java35 * Sets the submenu header's title to the title given in <var>titleRes</var>
38 * @param titleRes The string resource identifier used for the title.
44 * Sets the submenu header's title to the title given in <var>title</var>.
46 * @param title The character sequence used for the title.
49 public SubMenu setHeaderTitle(CharSequence title); argument
71 * <var>view</var>. This replaces the header title an
[all...]
H A DMenuItem.java149 * Change the title associated with this item.
151 * @param title The new text to be displayed.
154 public MenuItem setTitle(CharSequence title); argument
157 * Change the title associated with this item.
159 * Some menu types do not sufficient space to show the full title, and
160 * instead a condensed title is preferred. See {@link Menu} for more
163 * @param title The resource id of the new text to be displayed.
168 public MenuItem setTitle(int title); argument
171 * Retrieve the current title of the item.
173 * @return The title
185 setTitleCondensed(CharSequence title) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java35 CharSequence title = intent.getCharSequenceExtra(Intent.EXTRA_TITLE);
36 if (title == null) {
37 title = getResources().getText(com.android.internal.R.string.chooseActivity);
53 super.onCreate(savedInstanceState, target, title, initialIntents, null, false);
/frameworks/base/docs/html/guide/
H A Dguide_toc.cs3 For each document available in translation, add an localized title to this TOC.
4 Do not add localized title for docs not available in translation.
/frameworks/base/core/java/android/provider/
H A DDrmStore.java71 * The title of the file content
74 public static final String TITLE = "title";
99 * @param title The title for the content (or null)
102 public static final Intent addDrmFile(ContentResolver cr, File file, String title) { argument
108 if (title == null) {
109 title = file.getName();
110 int lastDot = title.lastIndexOf('.');
112 title = title
138 addDrmFile(ContentResolver cr, FileInputStream fis, String title) argument
[all...]
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java69 // It includes the data members "title," "link," and "summary."
71 public final String title; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) { argument
76 this.title = title;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
87 String title = null;
95 if (name.equals("title")) {
96 title = readTitle(parser);
105 return new Entry(title, summar
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItem.java60 CharSequence title) {
66 mTitle = title;
191 public MenuItem setTitle(CharSequence title) { argument
192 mTitle = title;
196 public MenuItem setTitle(int title) { argument
197 mTitle = mContext.getResources().getString(title);
201 public MenuItem setTitleCondensed(CharSequence title) { argument
202 mTitleCondensed = title;
59 ActionMenuItem(Context context, int group, int id, int categoryOrder, int ordering, CharSequence title) argument
H A DMenuView.java67 * Sets the title of the item view.
68 * @param title The title to set.
70 public void setTitle(CharSequence title); argument
107 * Whether this item view prefers displaying the condensed title rather
108 * than the normal title. If a condensed title is not available, the
109 * normal title will be used.
112 * title.
H A DContextMenuBuilder.java54 public ContextMenu setHeaderTitle(CharSequence title) { argument
55 return (ContextMenu) super.setHeaderTitleInt(title);
/frameworks/rs/driver/linkloader/include/impl/
H A DELFHeader.hxx35 #define PRINT_LINT(title, value) \
36 out() << format(" %-32s : ", (char const *)(title)) << (value) << '\n'
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuItem.java63 CharSequence title) {
69 mTitle = title;
194 public MenuItem setTitle(CharSequence title) { argument
195 mTitle = title;
199 public MenuItem setTitle(int title) { argument
200 mTitle = mContext.getResources().getString(title);
204 public MenuItem setTitleCondensed(CharSequence title) { argument
205 mTitleCondensed = title;
62 ActionMenuItem(Context context, int group, int id, int categoryOrder, int ordering, CharSequence title) argument
H A DMenuWrapperICS.java34 public MenuItem add(CharSequence title) { argument
35 return getMenuItemWrapper(mWrappedObject.add(title));
44 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { argument
45 return getMenuItemWrapper(mWrappedObject.add(groupId, itemId, order, title));
54 public SubMenu addSubMenu(CharSequence title) { argument
55 return getSubMenuWrapper(mWrappedObject.addSubMenu(title));
64 public SubMenu addSubMenu(int groupId, int itemId, int order, CharSequence title) { argument
65 return getSubMenuWrapper(mWrappedObject.addSubMenu(groupId, itemId, order, title));
H A DMenuView.java66 * Sets the title of the item view.
68 * @param title The title to set.
70 public void setTitle(CharSequence title); argument
112 * Whether this item view prefers displaying the condensed title rather than the normal
113 * title. If a condensed title is not available, the normal title will be used.
115 * @return Whether this item view prefers displaying the condensed title.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTextMessage.java24 public String title = ""; field in class:TextMessage
37 title = in.readString();
54 dest.writeString(title);
H A DMenu.java34 public String title; field in class:Menu
45 title = null;
58 title = in.readString();
82 dest.writeString(title);
/frameworks/base/media/java/android/media/
H A DRingtone.java104 * Returns a human-presentable title for ringtone. Looks in media and DRM
118 String title = null;
128 title = context
148 title = uri.getLastPathSegment();
158 if (title == null) {
159 title = context.getString(com.android.internal.R.string.ringtone_unknown);
161 if (title == null) {
162 title = "";
166 return title;
326 void setTitle(String title) { argument
[all...]
/frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
H A 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/core/java/android/webkit/
H A DJsDialogHelper.java94 String title, displayMessage;
97 title = context.getString(com.android.internal.R.string.js_dialog_before_unload_title);
103 title = getJsDialogTitle(context);
109 builder.setTitle(title);
159 String title = mUrl;
162 title = context.getString(com.android.internal.R.string.js_dialog_title_default);
167 title = context.getString(com.android.internal.R.string.js_dialog_title,
170 // do nothing. just use the url as the title
173 return title;

Completed in 593 milliseconds

1234567