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

1234567891011>>

/frameworks/support/browser/src/main/java/androidx/browser/browseractions/
H A DBrowserActionItem.java36 * @param title The string shown for a custom item.
41 @NonNull String title, @NonNull PendingIntent action, @DrawableRes int iconId) {
42 mTitle = title;
49 * @param title The icon shown for a custom item.
52 public BrowserActionItem(@NonNull String title, @NonNull PendingIntent action) { argument
53 this(title, action, 0);
64 * @return The title of a custom item.
40 BrowserActionItem( @onNull String title, @NonNull PendingIntent action, @DrawableRes int iconId) argument
/frameworks/base/tools/preload2/src/com/android/preload/actions/
H A DAbstractThreadedAction.java26 protected AbstractThreadedAction(String title) { argument
27 super(title);
H A DAbstractThreadedDeviceSpecificAction.java28 protected AbstractThreadedDeviceSpecificAction(String title, IDevice device) { argument
29 super(title);
/frameworks/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
/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/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/vo/
H A DBookWithPublisher.kt21 data class BookWithPublisher(val bookId: String, val title: String,
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/widget/
H A DFooterPreference.java51 TextView title = holder.itemView.findViewById(android.R.id.title);
52 title.setMovementMethod(new LinkMovementMethod());
53 title.setClickable(false);
54 title.setLongClickable(false);
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
H A DDesignLibUtil.java52 * Tries to set the title of a view. This is used to set the title in a
57 public static void setTitle(@NonNull View view, @Nullable String title) { argument
58 if (title == null) {
62 invoke(getMethod(view.getClass(), "setTitle", CharSequence.class), view, title);
65 "Error occurred while trying to set title.", e);
/frameworks/native/cmds/dumpstate/
H A DDumpstateSectionReporter.cpp25 DumpstateSectionReporter::DumpstateSectionReporter(const std::string& title, argument
28 : title_(title), listener_(listener), sendReport_(sendReport), status_(OK), size_(-1) {
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
H A DDetailsPresenterSelectionActivity.java54 private static void addAction(List<GuidedAction> actions, long id, String title, String desc) { argument
57 .title(title)
63 long id, String title, String desc, boolean checked) {
65 .title(title)
80 String title = getString(R.string.guidedstep_second_title);
84 return new Guidance(title, description, breadcrumb, icon);
62 addCheckedAction(List<GuidedAction> actions, Context context, long id, String title, String desc, boolean checked) argument
H A DPhotoItem.java25 public PhotoItem(String title, int imageResourceId) { argument
26 this(title, null, imageResourceId);
29 public PhotoItem(String title, int imageResourceId, int id) { argument
30 this(title, imageResourceId);
34 public PhotoItem(String title, String content, int imageResourceId) { argument
35 mTitle = title;
42 public PhotoItem(String title, String content, int imageResourceId, int id) { argument
43 this(title, content, imageResourceId);
/frameworks/support/frameworks/support/samples/SupportWearDemos/src/main/java/com/example/android/support/wear/app/drawers/
H A DNavItem.java28 public NavItem(Class<? extends Fragment> fragment, String title, Drawable drawable) { argument
30 mTitle = title;
/frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
H A DDetailsPresenterSelectionActivity.java54 private static void addAction(List<GuidedAction> actions, long id, String title, String desc) { argument
57 .title(title)
63 long id, String title, String desc, boolean checked) {
65 .title(title)
80 String title = getString(R.string.guidedstep_second_title);
84 return new Guidance(title, description, breadcrumb, icon);
62 addCheckedAction(List<GuidedAction> actions, Context context, long id, String title, String desc, boolean checked) argument
H A DPhotoItem.java25 public PhotoItem(String title, int imageResourceId) { argument
26 this(title, null, imageResourceId);
29 public PhotoItem(String title, int imageResourceId, int id) { argument
30 this(title, imageResourceId);
34 public PhotoItem(String title, String content, int imageResourceId) { argument
35 mTitle = title;
42 public PhotoItem(String title, String content, int imageResourceId, int id) { argument
43 this(title, content, imageResourceId);
/frameworks/support/samples/SupportWearDemos/src/main/java/com/example/android/support/wear/app/drawers/
H A DNavItem.java28 public NavItem(Class<? extends Fragment> fragment, String title, Drawable drawable) { argument
30 mTitle = title;
/frameworks/base/services/core/java/com/android/server/display/utils/
H A DPlog.java29 * To start a plot, call {@link Plog.start} with the plot's title; to add a point to it, call
50 * @param title The plot title.
53 public Plog start(String title) { argument
55 write(formatTitle(title));
85 private String formatTitle(String title) { argument
86 return "title: " + title;
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
H A DHeaderMixin.java67 * @param title The resource ID of the text to be set as header.
69 public void setText(int title) { argument
72 titleView.setText(title);
79 * @param title The text to be set as header.
81 public void setText(CharSequence title) { argument
84 titleView.setText(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);
78 return "title=" + title + " text=" + text + " icon=" + icon +
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/app/
H A DPhotoItem.java26 public PhotoItem(String title, int imageResourceId) { argument
27 this(title, null, imageResourceId);
30 public PhotoItem(String title, String content, int imageResourceId) { argument
31 mTitle = title;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/
H A DInputMethodSubtypePreference.java53 final CharSequence title,
59 setTitle(title);
89 final CharSequence title = getTitle();
91 final boolean emptyTitle = TextUtils.isEmpty(title);
94 return collator.compare(title.toString(), rhsTitle.toString());
50 InputMethodSubtypePreference( final Context context, final String prefKey, final CharSequence title, final String subtypeLocaleString, final Locale systemLocale) argument
/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/tests/UiBench/src/com/android/test/uibench/leanback/
H A DPhotoItem.java26 public PhotoItem(String title, long id) { argument
27 mTitle = title;

Completed in 516 milliseconds

1234567891011>>