Home
last modified time | relevance | path

Searched refs:subtitle (Results 1 – 25 of 187) sorted by relevance

12345678

/third_party/flutter/flutter/examples/flutter_gallery/lib/gallery/
Ddemos.dart67 this.subtitle,
79 final String subtitle;
96 subtitle: 'Basic shopping app',
104 subtitle: 'Newspaper typography app',
112 subtitle: 'Address book entry with a flexible appbar',
120 subtitle: 'Section organizer',
128 subtitle: 'Pan, Zoom, Rotate',
138 subtitle: 'All of the predefined colors',
146 subtitle: 'All of the predefined text styles',
156 subtitle: 'Select a front layer from back layer',
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dlist_tile.dart102 /// Insets a [ListTile]'s contents: its [leading], [title], [subtitle],
158 /// [subtitle], which _is_ optional, will occupy the space allocated for an
161 /// [DefaultTextStyle]s that wrap the [title] and [subtitle] widget are reduced.
164 /// and to ensure that [subtitle] doesn't wrap (if [isThreeLine] is false) or
222 /// subtitle: Text('Here is a second line'),
230 /// subtitle: Text(
231 /// 'A sufficiently long subtitle warrants three lines.'
253 /// subtitle: _act != 2 ? const Text('The airplane is only in Act II.') : null,
438 /// this.subtitle,
445 /// final String subtitle;
[all …]
Dgrid_tile_bar.dart15 /// include a [subtitle] widget. Use [leading] or [trailing] to add an icon.
30 this.subtitle,
52 final Widget subtitle;
80 if (title != null && subtitle != null) {
97 child: subtitle,
103 } else if (title != null || subtitle != null) {
110 child: title ?? subtitle,
122 height: (title != null && subtitle != null) ? 68.0 : 48.0,
Dtext_theme.dart67 /// subtitle 14.0 medium 0.0 subtitle2
121 this.subtitle,
165 final TextStyle subtitle;
224 TextStyle subtitle,
239 subtitle: subtitle ?? this.subtitle,
310 subtitle: subtitle?.merge(other.subtitle) ?? other.subtitle,
435 subtitle: subtitle?.apply(
473 subtitle: TextStyle.lerp(a?.subtitle, b?.subtitle, t),
496 && subtitle == typedOther.subtitle
515 subtitle,
[all …]
Dtypography.dart280subtitle : TextStyle(debugLabel: 'blackMountainView subtitle', fontFamily: 'Roboto', inherit: …
299subtitle : TextStyle(debugLabel: 'whiteMountainView subtitle', fontFamily: 'Roboto', inherit: …
318subtitle : TextStyle(debugLabel: 'blackCupertino subtitle', fontFamily: '.SF UI Text', inhe…
337subtitle : TextStyle(debugLabel: 'whiteCupertino subtitle', fontFamily: '.SF UI Text', inhe…
355subtitle : TextStyle(debugLabel: 'englishLike subtitle 2014', inherit: false, fontSize: 14.0, fon…
376subtitle : TextStyle(debugLabel: 'englishLike subtitle 2018', fontSize: 14.0, fontWeight: FontWe…
394subtitle : TextStyle(debugLabel: 'dense subtitle 2014', inherit: false, fontSize: 15.0, fontWeigh…
415subtitle : TextStyle(debugLabel: 'dense subtitle 2018', fontSize: 15.0, fontWeight: FontWeight.w…
432subtitle : TextStyle(debugLabel: 'tall subtitle 2014', inherit: false, fontSize: 15.0, fontWeight…
452subtitle : TextStyle(debugLabel: 'tall subtitle 2018', fontSize: 15.0, fontWeight: FontWeight.w5…
Dswitch_list_tile.dart32 /// The [title], [subtitle], [isThreeLine], and [dense] properties are like
279 this.subtitle,
287 assert(!isThreeLine || subtitle != null),
310 this.subtitle,
318 assert(!isThreeLine || subtitle != null),
394 final Widget subtitle;
403 /// If false, the list tile is treated as having one line if the subtitle is
404 /// null and treated as having two lines if the subtitle is non-null.
461 subtitle: subtitle,
Dcheckbox_list_tile.dart23 /// The [title], [subtitle], [isThreeLine], and [dense] properties are like
273 this.subtitle,
281 assert(!isThreeLine || subtitle != null),
334 final Widget subtitle;
343 /// If false, the list tile is treated as having one line if the subtitle is
344 /// null and treated as having two lines if the subtitle is non-null.
391 subtitle: subtitle,
Dradio_list_tile.dart25 /// The [title], [subtitle], [isThreeLine], and [dense] properties are like
314 this.subtitle,
321 assert(!isThreeLine || subtitle != null),
377 final Widget subtitle;
386 /// If false, the list tile is treated as having one line if the subtitle is
387 /// null and treated as having two lines if the subtitle is non-null.
440 subtitle: subtitle,
/third_party/flutter/flutter/packages/flutter/test/material/
Dlist_tile_test.dart73subtitle: hasSubtitle ? Text('subtitle', textScaleFactor: subtitleScaleFactor) : null,
88 expect(find.text('subtitle'), findsOneWidget);
109 expect(left('subtitle'), 56.0 + math.max(16.0, leftPadding));
120 expect(top('subtitle'), greaterThanOrEqualTo(bottom('title')));
121 expect(bottom('subtitle'), lessThan(tileRect.bottom));
173 // Make sure that the height of a large subtitle is taken into account.
283 subtitle: TestText('subtitle', key: subtitleKey),
511 subtitle: const Text('subtitle'),
531 // title and subtitle are at 56dps (contentPadding is zero).
533 expect(left('subtitle'), 56.0);
[all …]
Dtext_theme_test.dart43 subtitle: typography.white.subtitle,
108 expect(theme.subtitle.color, bodyColor);
123 theme.subtitle,
151 expect(sizeTheme.subtitle.fontSize, baseTheme.subtitle.fontSize * 2.0 + 5.0);
170 expect(lerped.subtitle, TextStyle.lerp(theme.subtitle, null, 0.25));
189 expect(lerped.subtitle, TextStyle.lerp(null, theme.subtitle, 0.25));
206 expect(lerped.subtitle, null);
/third_party/boost/doc/src/
Ddocutils.css27 .last, .with-subtitle {
140 h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
141 h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
147 h2.subtitle {
202 p.sidebar-subtitle {
239 span.section-subtitle {
/third_party/boost/libs/python/doc/html/
Ddocutils.css27 .last, .with-subtitle {
140 h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
141 h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
147 h2.subtitle {
202 p.sidebar-subtitle {
239 span.section-subtitle {
/third_party/boost/libs/detail/doc/html/
Ddocutils.css27 .last, .with-subtitle {
140 h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
141 h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
147 h2.subtitle {
202 p.sidebar-subtitle {
239 span.section-subtitle {
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/animation/
Dsections.dart19 this.subtitle,
24 final String subtitle;
65 subtitle: '3K views - 5 days',
77 subtitle: '3K views - 5 days',
89 subtitle: '3K views - 5 days',
101 subtitle: '3K views - 5 days',
Dwidgets.dart144 if (detail.title == null && detail.subtitle == null) {
157 subtitle: Text(detail.subtitle),
/third_party/gstreamer/gstplugins_bad/gst/dvdspu/
DNotes.txt47 As for AC3, where there's an ID like (0x80 + x), there's a subtitle ID equal
48 to (0x20 + x), where x is the subtitle ID. Thus there seems to be only
61 A subtitle packet, after its parts have been collected and appended, looks
71 | a subtitle packet |
136 the coordinates of the subtitle on the screen :
137 xxx is the first column of the subtitle
138 XXX is the last column of the subtitle
139 yyy is the first line of the subtitle
140 YYY is the last line of the subtitle
141 thus the subtitle's size is (XXX-xxx+1) x (YYY-yyy+1)
[all …]
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/
Dvideo_demo.dart13 const VideoCard({ Key key, this.controller, this.title, this.subtitle }) : super(key: key);
17 final String subtitle;
81 ListTile(title: Text(title), subtitle: Text(subtitle)),
287 subtitle: Text(
413 subtitle: '… flutters by',
418 subtitle: '… gently buzzing',
/third_party/boost/libs/hana/doc/js/
Dchart.js24 if (options.subtitle == undefined) {
25 options.subtitle = { text: "(smaller is better)" };
/third_party/boost/libs/hana/doc/html/
Dchart.js24 if (options.subtitle == undefined) {
25 options.subtitle = { text: "(smaller is better)" };
/third_party/gstreamer/gstplugins_base/po/
Del.po216 #. subtitle formats with static descriptions
225 msgid "MPL2 subtitle format"
229 msgid "DKS subtitle format"
233 msgid "QTtext subtitle format"
236 msgid "Sami subtitle format"
239 msgid "TMPlayer subtitle format"
248 msgid "Kate subtitle format"
252 msgid "WebVTT subtitle format"
699 msgid "change subtitle track"
826 #~ msgid "Invalid subtitle URI \"%s\", subtitles disabled."
[all …]
Dja.po214 #. subtitle formats with static descriptions
223 msgid "MPL2 subtitle format"
227 msgid "DKS subtitle format"
231 msgid "QTtext subtitle format"
234 msgid "Sami subtitle format"
237 msgid "TMPlayer subtitle format"
246 msgid "Kate subtitle format"
250 msgid "WebVTT subtitle format"
680 msgid "change subtitle track"
807 #~ msgid "Invalid subtitle URI \"%s\", subtitles disabled."
[all …]
Dru.po215 #. subtitle formats with static descriptions
223 msgid "MPL2 subtitle format"
226 msgid "DKS subtitle format"
229 msgid "QTtext subtitle format"
232 msgid "Sami subtitle format"
235 msgid "TMPlayer subtitle format"
244 msgid "Kate subtitle format"
247 msgid "WebVTT subtitle format"
672 msgid "change subtitle track"
807 #~ msgid "Invalid subtitle URI \"%s\", subtitles disabled."
[all …]
Duk.po218 #. subtitle formats with static descriptions
226 msgid "MPL2 subtitle format"
229 msgid "DKS subtitle format"
232 msgid "QTtext subtitle format"
235 msgid "Sami subtitle format"
238 msgid "TMPlayer subtitle format"
247 msgid "Kate subtitle format"
250 msgid "WebVTT subtitle format"
685 msgid "change subtitle track"
821 #~ msgid "Invalid subtitle URI \"%s\", subtitles disabled."
[all …]
Dzh_CN.po206 #. subtitle formats with static descriptions
214 msgid "MPL2 subtitle format"
217 msgid "DKS subtitle format"
220 msgid "QTtext subtitle format"
223 msgid "Sami subtitle format"
226 msgid "TMPlayer subtitle format"
235 msgid "Kate subtitle format"
238 msgid "WebVTT subtitle format"
661 msgid "change subtitle track"
789 #~ msgid "Invalid subtitle URI \"%s\", subtitles disabled."
[all …]
Dlt.po218 #. subtitle formats with static descriptions
227 msgid "MPL2 subtitle format"
231 msgid "DKS subtitle format"
235 msgid "QTtext subtitle format"
238 msgid "Sami subtitle format"
241 msgid "TMPlayer subtitle format"
251 msgid "Kate subtitle format"
255 msgid "WebVTT subtitle format"
683 msgid "change subtitle track"
808 #~ msgid "Invalid subtitle URI \"%s\", subtitles disabled."
[all …]

12345678