HomeSort by relevance Sort by last modified time
    Searched refs:subtitle (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /frameworks/av/media/libstagefright/timedtext/test/
TimedTextSRTSource_test.cpp 39 * Subtitle number
41 * Text of subtitle (one or more lines)
114 AString subtitle; member in class:android::test::TimedTextSRTSourceTest
123 subtitle = AStringPrintf("%d\n\n", i);
124 CheckDataEquals(parcel, subtitle.c_str());
130 subtitle = AStringPrintf("6\n\n");
131 CheckDataEquals(parcel, subtitle.c_str());
136 subtitle = AStringPrintf("7\n\n");
137 CheckDataEquals(parcel, subtitle.c_str());
142 subtitle = AStringPrintf("8\n\n")
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
ActionBarInterface.java 40 public void setSubtitle(@Nullable CharSequence subtitle);
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationsettings/
PeopleOptionsItemView.java 58 mSubtitle = (TextView) findViewById(R.id.subtitle);
75 final String subtitle = mData.getSubtitle(); local
76 if (TextUtils.isEmpty(subtitle)) {
80 mSubtitle.setText(subtitle);
  /frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
ActionBarWrapper.java 57 public void setSubtitle(CharSequence subtitle) {
58 mActionBar.setSubtitle(subtitle);
  /frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
ActionBarWrapper.java 58 public void setSubtitle(CharSequence subtitle) {
59 mActionBar.setSubtitle(subtitle);
  /frameworks/base/media/java/android/media/
MediaDescription.java 25 * A subtitle suitable for display or null.
49 private MediaDescription(String mediaId, CharSequence title, CharSequence subtitle,
53 mSubtitle = subtitle;
90 * Returns a subtitle suitable for display or null.
92 * @return A subtitle or null.
220 * Sets the subtitle.
222 * @param subtitle A subtitle suitable for display to the user or null.
225 public Builder setSubtitle(@Nullable CharSequence subtitle) {
226 mSubtitle = subtitle;
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/view/
ActionMode.java 93 * Set the subtitle of the action mode. This method will have no visible effect if
96 * @param subtitle Subtitle string to set
101 public abstract void setSubtitle(CharSequence subtitle);
104 * Set the subtitle of the action mode. This method will have no visible effect if
107 * @param resId Resource ID of a string to set as the subtitle
115 * Set whether or not the title/subtitle display for this action mode
135 * title/subtitle display to be optional.
145 * @return true if this action mode considers the title and subtitle fields
154 * the title and subtitle. Useful for things like search boxes
    [all...]
  /external/okhttp/website/static/
app-theme.css 6 #subtitle,
  /frameworks/base/core/tests/notificationtests/src/android/app/
NotificationStressTest.java 84 CharSequence subtitle = String.valueOf(System.currentTimeMillis()); local
91 .setContentText(subtitle)
  /external/bison/lib/
bitsetv.c 141 bitsetv_dump (FILE *file, char const *title, char const *subtitle,
149 fprintf (file, "%s %lu\n", subtitle, (unsigned long int) i);
  /frameworks/support/v4/api21/android/support/v4/media/
MediaDescriptionCompatApi21.java 76 public static void setSubtitle(Object builderObj, CharSequence subtitle) {
77 ((MediaDescription.Builder)builderObj).setSubtitle(subtitle);
  /frameworks/base/core/java/android/view/
ActionMode.java 108 * Set the subtitle of the action mode. This method will have no visible effect if
111 * @param subtitle Subtitle string to set
116 public abstract void setSubtitle(CharSequence subtitle);
119 * Set the subtitle of the action mode. This method will have no visible effect if
122 * @param resId Resource ID of a string to set as the subtitle
130 * Set whether or not the title/subtitle display for this action mode
150 * title/subtitle display to be optional.
160 * @return true if this action mode considers the title and subtitle fields
169 * the title and subtitle. Useful for things like search boxes
    [all...]
  /frameworks/support/v4/java/android/support/v4/media/
MediaDescriptionCompat.java 42 * A subtitle suitable for display or null.
71 private MediaDescriptionCompat(String mediaId, CharSequence title, CharSequence subtitle,
75 mSubtitle = subtitle;
114 * Returns a subtitle suitable for display or null.
116 * @return A subtitle or null.
322 * Sets the subtitle.
324 * @param subtitle A subtitle suitable for display to the user or null.
327 public Builder setSubtitle(@Nullable CharSequence subtitle) {
328 mSubtitle = subtitle;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
videotext.h 113 unsigned subtitle : 1; /* insert subtitle (C6) */ member in struct:__anon31188
  /hardware/intel/img/psb_video/src/x11/
psb_ctexture.c 241 psb_extvideo_subtitle subtitle = NOSUBTITLE; local
392 psb_xrandr_extvideo_prop(&xres, &yres, &xoffset, &yoffset, &center, &subtitle, &overscanmode, &pannelfitting);
408 if (subtitle == BOTH || subtitle == ONLY_HDMI)
467 if (subtitle == BOTH || (subtitle == NOSUBTITLE && obj_surface->subpic_count))
486 if (subtitle == BOTH || (subtitle == NOSUBTITLE && obj_surface->subpic_count))
504 if (subtitle == BOTH || (subtitle == NOSUBTITLE && obj_surface->subpic_count)
    [all...]
  /docs/source.android.com/src/compatibility/5.1/
android-cdd-cover.css 49 .subtitle {
  /docs/source.android.com/src/compatibility/source/
android-cdd-cover.css 49 .subtitle {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AppWidgetManagerTest.java 44 assertEquals("Hola", ((TextView) widgetView.findViewById(R.id.subtitle)).getText());
104 remoteViews.setTextViewText(R.id.subtitle, "Hola");
  /frameworks/base/core/java/com/android/internal/view/
StandaloneActionMode.java 61 public void setSubtitle(CharSequence subtitle) {
62 mContextView.setSubtitle(subtitle);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
StandaloneActionMode.java 64 public void setSubtitle(CharSequence subtitle) {
65 mContextView.setSubtitle(subtitle);
  /hardware/intel/img/psb_video/src/
psb_texture.h 144 int src_h, int dst_x, int dst_y, int dst_w, int dst_h, unsigned int subtitle,
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
AppCompatActionBar.java 121 protected void setSubtitle(CharSequence subtitle) {
122 if (subtitle != null && mWindowDecorActionBar != null) {
124 invoke(setSubtitle, mWindowDecorActionBar, subtitle);
  /packages/apps/Browser/src/com/android/browser/preferences/
WebsiteSettingsFragment.java 457 final TextView subtitle; local
470 subtitle = (TextView) view.findViewById(R.id.subtitle);
486 subtitle.setVisibility(View.VISIBLE);
487 subtitle.setText(subtitleText);
489 subtitle.setVisibility(View.GONE);
546 subtitle.setText(usage);
547 subtitle.setVisibility(View.VISIBLE);
559 subtitle.setText(R.string.geolocation_settings_page_summary_allowed);
562 subtitle.setText(R.string.geolocation_settings_page_summary_not_allowed)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ToolbarWidgetWrapper.java 111 final CharSequence subtitle = a.getText(R.styleable.ActionBar_subtitle); local
112 if (!TextUtils.isEmpty(subtitle)) {
113 setSubtitle(subtitle);
272 public void setSubtitle(CharSequence subtitle) {
273 mSubtitle = subtitle;
275 mToolbar.setSubtitle(subtitle);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ToolbarWidgetWrapper.java 114 final CharSequence subtitle = a.getText(R.styleable.ActionBar_subtitle); local
115 if (!TextUtils.isEmpty(subtitle)) {
116 setSubtitle(subtitle);
296 public void setSubtitle(CharSequence subtitle) {
297 mSubtitle = subtitle;
299 mToolbar.setSubtitle(subtitle);

Completed in 657 milliseconds

1 2 3 4 5