Home
last modified time | relevance | path

Searched refs:indicator (Results 1 – 25 of 332) sorted by relevance

12345678910>>...14

/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dtab_bar_theme.dart15 /// the [TabBar.indicator].
29 this.indicator,
38 /// Default value for [TabBar.indicator].
39 final Decoration indicator;
62 Decoration indicator,
71 indicator: indicator ?? this.indicator,
96 indicator: Decoration.lerp(a.indicator, b.indicator, t),
109 indicator,
126 return typedOther.indicator == indicator
Dtab_indicator.dart9 /// Used with [TabBar.indicator] to draw a horizontal line below the
15 /// The [TabBar.indicatorSize] property can be used to define the indicator's
19 /// Create an underline style selected tab indicator.
34 /// tab indicator's bounds in terms of its (centered) tab widget with
79 final Rect indicator = insets.resolve(textDirection).deflateRect(rect);
81 indicator.left,
82 indicator.bottom - borderSide.width,
83 indicator.width,
94 final Rect indicator = _indicatorRectFor(rect, textDirection).deflate(borderSide.width / 2.0);
96 canvas.drawLine(indicator.bottomLeft, indicator.bottomRight, paint);
Dprogress_indicator.dart17 // TODO(hansmuller): implement the support for buffer indicator
22 /// indicator, see [LinearProgressIndicator]. For a circular progress indicator,
29 /// Creates a progress indicator.
33 /// progress indicator, or non-null for a determinate progress
34 /// indicator.
51 /// If non-null, the value of this progress indicator.
55 /// If null, this progress indicator is indeterminate, which means the
56 /// indicator displays a predetermined animation that does not indicate how
60 /// The progress indicator's background color.
65 /// The progress indicator's color as an animated value.
[all …]
Drefresh_indicator.dart15 // The over-scroll distance that moves the indicator to its maximum
23 // When the scroll ends, the duration of the refresh indicator's animation
44 snap, // Animating to the indicator's final "displacement".
46 done, // Animating the indicator's fade-out after refreshing.
47 canceled, // Animating the indicator's fade-out after not arming.
53 /// progress indicator is faded into view. When the scroll ends, if the
54 /// indicator has been dragged far enough for it to become completely opaque,
57 /// indicator disappears after the callback's [Future] has completed.
77 /// * [RefreshIndicatorState], can be used to programmatically show the refresh indicator.
85 /// Creates a refresh indicator.
[all …]
Dtabs.dart27 /// Defines how the bounds of the selected tab indicator are computed.
33 /// * [TabBar.indicator], which defines the appearance of the selected tab
34 /// indicator relative to the tab's bounds.
36 /// The tab indicator's bounds are as wide as the space occupied by the tab
44 /// widget's text or icon, with the selected tab indicator.
310 @required this.indicator,
315 assert(indicator != null),
322 final Decoration indicator;
387 _painter ??= indicator.createBoxPainter(markNeedsPaint);
435 || indicator != old.indicator
[all …]
/third_party/flutter/flutter/packages/flutter/test/material/
Dpage_selector_test.dart55 …return indicators.map<Color>((TabPageSelectorIndicator indicator) => indicator.backgroundColor).to…
92 // Verify that indicator 0's color is becoming increasingly transparent,
93 /// and indicator 1's color is becoming increasingly opaque during the
136 // Drag to the left moving the selection towards indicator 2. Indicator 2's
150 // Drag to the left moving the selection towards indicator 0. Indicator 0's
170 // Fling to the left, selects indicator 2
175 // Fling to the right, selects indicator 1
Drefresh_indicator_test.dart52 await tester.pump(const Duration(seconds: 1)); // finish the indicator settle animation
53 await tester.pump(const Duration(seconds: 1)); // finish the indicator hide animation
87 await tester.pump(const Duration(seconds: 1)); // finish the indicator settle animation
88 await tester.pump(const Duration(seconds: 1)); // finish the indicator hide animation
95 await tester.pump(const Duration(seconds: 1)); // finish the indicator settle animation
96 await tester.pump(const Duration(seconds: 1)); // finish the indicator hide animation
123 await tester.pump(const Duration(seconds: 1)); // finish the indicator settle animation
124 await tester.pump(const Duration(seconds: 1)); // finish the indicator hide animation
Dtab_bar_theme_test.dart263 testWidgets('Tab bar theme overrides tab indicator size (tab)', (WidgetTester tester) async {
277 testWidgets('Tab bar theme overrides tab indicator size (label)', (WidgetTester tester) async {
291 testWidgets('Tab bar theme - custom tab indicator', (WidgetTester tester) async {
293 indicator: BoxDecoration(
310 testWidgets('Tab bar theme - beveled rect indicator', (WidgetTester tester) async {
312 indicator: ShapeDecoration(
/third_party/jerryscript/tests/jerry-test-suite/15/15.03/15.03.03/
D15.03.03-003.js15 Function.prototype.indicator = 1;
16 assert (Function.indicator === 1);
/third_party/PyYAML/tests/data/
Dspec-09-18.data3 - >1 # Indentation indicator
5 - |+ # Chomping indicator
Dremove-possible-simple-key-bug.loader-error2 *A ] # The ']' indicator triggers remove_possible_simple_key,
/third_party/flutter/flutter/packages/flutter/test/rendering/
Ddebug_overflow_indicator_test.dart11 testWidgets('overflow indicator is not shown when not overflowing', (WidgetTester tester) async {
23 testWidgets('overflow indicator is shown when overflowing', (WidgetTester tester) async {
57 …testWidgets('overflow indicator is not shown when constraint size is zero.', (WidgetTester tester)…
/third_party/flutter/flutter/packages/flutter_localizations/lib/src/l10n/
Dmaterial_ps.arb4 "@anteMeridiemAbbreviation": {"notUsed":"Pashto time format does not use a.m. indicator"},
5 "@postMeridiemAbbreviation": {"notUsed":"Pashto time format does not use p.m. indicator"},
Dmaterial_pt.arb7 "@anteMeridiemAbbreviation": {"notUsed":"portuguese time format does not use a.m. indicator"},
8 "@postMeridiemAbbreviation": {"notUsed":"portuguese time format does not use p.m. indicator"},
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/
Drefresh.dart27 // The amount of space the indicator should occupy in the sliver in a
72 // The amount of layout space the indicator should occupy in the sliver in a
150 // with a layoutExtent, the indicator builder may decide to not
200 /// While the indicator is animating away after refreshing.
205 /// refresh indicator space depending on the current state of the refresh
248 /// and the indicator sliver has retracted at least 90% of the way back.
283 /// The [builder] argument may be null, in which case no indicator UI will be
301 'The refresh indicator cannot take more space in its final state '
315 /// The amount of space the refresh indicator sliver will keep holding while
329 /// A default simple Twitter-style pull-to-refresh indicator is provided if
[all …]
Dactivity_indicator.dart13 /// An iOS-style activity indicator.
19 /// Creates an iOS-style activity indicator.
29 /// Whether the activity indicator is running its animation.
/third_party/boost/libs/geometry/example/with_external_libs/
Dx03_b_soci_example.cpp49 static void from_base(const base_type& v, soci::indicator ind, city& value) in from_base()
62 static void to_base(const city& value, base_type& v, soci::indicator& ind) in to_base()
Dx03_c_soci_example.cpp52 static void from_base(base_type const& v, soci::indicator ind, tree& value) in from_base()
74 static void to_base(tree const& value, base_type& v, soci::indicator& ind) in to_base()
/third_party/skia/third_party/externals/icu/source/data/rbnf/
Daf.txt7 "%%digits-ordinal-indicator:",
15 "0: =#,##0==%%digits-ordinal-indicator=;",
Daz.txt7 "%%digits-ordinal-indicator:",
11 "0: =#,##0==%%digits-ordinal-indicator=;",
/third_party/icu/icu4c/source/data/rbnf/
Daf.txt7 "%%digits-ordinal-indicator:",
15 "0: =#,##0==%%digits-ordinal-indicator=;",
Daz.txt7 "%%digits-ordinal-indicator:",
11 "0: =#,##0==%%digits-ordinal-indicator=;",
/third_party/flutter/skia/third_party/externals/icu/source/data/rbnf/
Daf.txt6 "%%digits-ordinal-indicator:",
14 "0: =#,##0==%%digits-ordinal-indicator=;",
Daz.txt6 "%%digits-ordinal-indicator:",
10 "0: =#,##0==%%digits-ordinal-indicator=;",
/third_party/python/Doc/c-api/
Dexceptions.rst13 there is a global indicator (per thread) of the last error that occurred. Most
16 indicator, usually ``NULL`` if they are supposed to return a pointer, or ``-1``
20 Concretely, the error indicator consists of three object pointers: the
27 doesn't set the error indicator; the function it called already set it. It is
37 The error indicator is **not** the result of :func:`sys.exc_info()`.
49 Clear the error indicator. If the error indicator is not set, there is no
55 Print a standard traceback to ``sys.stderr`` and clear the error indicator.
60 Call this function **only** when the error indicator is set. Otherwise it
93 These functions help you set the current thread's error indicator.
100 This is the most common way to set the error indicator. The first argument
[all …]

12345678910>>...14