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

12345678910

/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/menu/
H A DMenuBuilder_Delegate.java34 int categoryOrder, int ordering, CharSequence title, int defaultShowAsAction) {
35 return new BridgeMenuItemImpl(thisMenu, group, id, categoryOrder, ordering, title,
33 createNewMenuItem(MenuBuilder thisMenu, int group, int id, int categoryOrder, int ordering, CharSequence title, int defaultShowAsAction) argument
H A DBridgeMenuItemImpl.java41 CharSequence title, int showAsAction) {
42 super(menu, group, id, categoryOrder, ordering, title, showAsAction);
40 BridgeMenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, CharSequence title, int showAsAction) argument
/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.java108 public void setInputMethodSettingsCategoryTitle(CharSequence title) { argument
110 mInputMethodSettingsCategoryTitle = title;
127 public void setSubtypeEnablerTitle(CharSequence title) { argument
129 mSubtypeEnablerTitle = title;
158 final CharSequence title;
160 title = context.getString(mSubtypeEnablerTitleRes);
162 title = mSubtypeEnablerTitle;
164 pref.setTitle(title);
167 intent.putExtra(Intent.EXTRA_TITLE, title);
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h31 int dump_file(const char *title, const char *path);
36 int dump_file_from_fd(const char *title, const char *path, int fd);
42 * called with title NULL.
44 int dump_files(const char *title, const char *dir,
46 int (*dump_from_fd)(const char *title, const char *path, int fd));
49 int run_command(const char *title, int timeout_seconds, const char *command, ...);
H A Dutils.c235 char title[255]; local
238 sprintf(title, "SHOW MAP %d (%s)", pid, name);
240 run_command(title, 10, SU_PATH, "root", "showmap", arg, NULL);
243 static int _dump_file_from_fd(const char *title, const char *path, int fd) { argument
244 if (title) printf("------ %s (%s", title, path);
246 if (title) {
296 if (title) printf("\n");
301 int dump_file(const char *title, const char *path) { argument
305 if (title) print
319 dump_files(const char *title, const char *dir, bool (*skip)(const char *path), int (*dump_from_fd)(const char *title, const char *path, int fd)) argument
386 dump_file_from_fd(const char *title, const char *path, int fd) argument
443 run_command(const char *title, int timeout_seconds, const char *command, ...) argument
[all...]
/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);
78 return "title=" + title + " text=" + text + " icon=" + icon +
/frameworks/support/design/src/android/support/design/internal/
H A DNavigationSubMenu.java38 public MenuItem add(CharSequence title) { argument
39 MenuItem item = super.add(title);
52 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { argument
53 MenuItem item = super.add(groupId, itemId, order, title);
H A DNavigationMenu.java38 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { argument
39 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title);
/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
/frameworks/base/services/core/java/com/android/server/policy/
H A DShortcutManager.java126 final String title;
148 title = info.loadLabel(packageManager).toString();
151 title = "";
158 ShortcutInfo shortcut = new ShortcutInfo(title, intent);
169 public final String title; field in class:ShortcutManager.ShortcutInfo
172 public ShortcutInfo(String title, Intent intent) { argument
173 this.title = title;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuWrapperICS.java40 public MenuItem add(CharSequence title) { argument
41 return getMenuItemWrapper(mWrappedObject.add(title));
50 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { argument
51 return getMenuItemWrapper(mWrappedObject.add(groupId, itemId, order, title));
60 public SubMenu addSubMenu(CharSequence title) { argument
61 return getSubMenuWrapper(mWrappedObject.addSubMenu(title));
70 public SubMenu addSubMenu(int groupId, int itemId, int order, CharSequence title) { argument
71 return getSubMenuWrapper(mWrappedObject.addSubMenu(groupId, itemId, order, title));
H A DMenuView.java64 * Sets the title of the item view.
65 * @param title The title to set.
67 public void setTitle(CharSequence title); argument
104 * Whether this item view prefers displaying the condensed title rather
105 * than the normal title. If a condensed title is not available, the
106 * normal title will be used.
109 * title.
/frameworks/base/core/java/android/view/
H A DMenu.java39 * {@link MenuItem#setTitleCondensed(CharSequence) condensed title}. The
137 * Add a new item to the menu. This item displays the given title for its
140 * @param title The text to display for the item.
143 public MenuItem add(CharSequence title); argument
146 * Add a new item to the menu. This item displays the given title for its
149 * @param titleRes Resource identifier of title string.
155 * Add a new item to the menu. This item displays the given title for its
166 * @param title The text to display for the item.
169 public MenuItem add(int groupId, int itemId, int order, CharSequence title); argument
183 * @param titleRes Resource identifier of title strin
196 addSubMenu(final CharSequence title) argument
228 addSubMenu(final int groupId, final int itemId, int order, final CharSequence title) argument
[all...]
H A DMenuItem.java152 * Change the title associated with this item.
154 * @param title The new text to be displayed.
157 public MenuItem setTitle(CharSequence title); argument
160 * Change the title associated with this item.
162 * Some menu types do not sufficient space to show the full title, and
163 * instead a condensed title is preferred. See {@link Menu} for more
166 * @param title The resource id of the new text to be displayed.
171 public MenuItem setTitle(@StringRes int title); argument
174 * Retrieve the current title of the item.
176 * @return The title
188 setTitleCondensed(CharSequence title) argument
[all...]
H A DContextMenu.java43 * Sets the context menu header's title to the title given in <var>titleRes</var>
46 * @param titleRes The string resource identifier used for the title.
52 * Sets the context menu header's title to the title given in <var>title</var>.
54 * @param title The character sequence used for the title.
57 public ContextMenu setHeaderTitle(CharSequence title); argument
79 * <var>view</var>. This replaces the header title an
[all...]
H A DSubMenu.java37 * Sets the submenu header's title to the title given in <var>titleRes</var>
40 * @param titleRes The string resource identifier used for the title.
46 * Sets the submenu header's title to the title given in <var>title</var>.
48 * @param title The character sequence used for the title.
51 public SubMenu setHeaderTitle(CharSequence title); argument
73 * <var>view</var>. This replaces the header title an
[all...]
/frameworks/base/docs/html/ndk/downloads/
H A Ddownloads_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/opt/photoviewer/src/com/android/ex/photo/
H A DActionBarInterface.java38 public void setTitle(@Nullable CharSequence title); argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
H A DDesignLibUtil.java44 * Tries to set the title of a view. This is used to set the title in a
49 public static void setTitle(@NonNull View view, @Nullable String title) { argument
50 if (title == null) {
54 invoke(getMethod(view.getClass(), "setTitle", CharSequence.class), view, title);
57 "Error occurred while trying to set title.", e);
/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/media/java/android/media/
H A DRingtone.java193 * Returns a human-presentable title for ringtone. Looks in media
210 String title = null;
221 title = context
246 title = mRemotePlayer.getTitle(uri);
256 if (title == null) {
257 title = uri.getLastPathSegment();
262 if (title == null) {
263 title = context.getString(com.android.internal.R.string.ringtone_unknown);
265 if (title == null) {
266 title
455 setTitle(String title) argument
[all...]

Completed in 813 milliseconds

12345678910