Home
last modified time | relevance | path

Searched refs:material (Results 1 – 25 of 986) sorted by relevance

12345678910>>...40

/third_party/flutter/flutter/packages/flutter/lib/
Dmaterial.dart7 /// To use, import `package:flutter/material.dart`.
15 /// * [material.io/design](https://material.io/design/)
17 library material;
19 export 'src/material/about.dart';
20 export 'src/material/animated_icons.dart';
21 export 'src/material/app.dart';
22 export 'src/material/app_bar.dart';
23 export 'src/material/app_bar_theme.dart';
24 export 'src/material/arc.dart';
25 export 'src/material/back_button.dart';
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dicons.dart7 /// Identifiers for the supported material design icons.
13 /// To use this class, make sure you set `uses-material-design: true` in your
21 /// uses-material-design: true
68 /// <i class="material-icons md-36">360</i> &#x2014; material icon named "360".
71 /// <i class="material-icons md-36">3d_rotation</i> &#x2014; material icon named "3d rotation".
74 /// <i class="material-icons md-36">4k</i> &#x2014; material icon named "4k".
77 /// <i class="material-icons md-36">ac_unit</i> &#x2014; material icon named "ac unit".
80 /// <i class="material-icons md-36">access_alarm</i> &#x2014; material icon named "access alarm".
83 …/// <i class="material-icons md-36">access_alarms</i> &#x2014; material icon named "access alarms".
86 /// <i class="material-icons md-36">access_time</i> &#x2014; material icon named "access time".
[all …]
Dcolors.dart17 /// * [Colors], which defines all of the standard material colors.
68 /// * [Colors], which defines all of the standard material colors.
69 /// * <https://material.io/go/design-theming#color-color-schemes>
92 /// [color palette](https://material.io/design/color/).
129 /// ![](https://flutter.github.io/assets-for-api-docs/assets/material/Colors.pink.png)
130 /// ![](https://flutter.github.io/assets-for-api-docs/assets/material/Colors.pinkAccent.png)
132 /// ![](https://flutter.github.io/assets-for-api-docs/assets/material/Colors.red.png)
133 /// ![](https://flutter.github.io/assets-for-api-docs/assets/material/Colors.redAccent.png)
135 /// ![](https://flutter.github.io/assets-for-api-docs/assets/material/Colors.deepOrange.png)
136 /// ![](https://flutter.github.io/assets-for-api-docs/assets/material/Colors.deepOrangeAccent.png)
[all …]
Dmaterial.dart19 /// The various kinds of material in material design. Used to
39 /// A transparent piece of material that draws ink splashes and highlights.
41 /// While the material metaphor describes child widgets as printed on the
42 /// material itself and do not hide ink effects, in practice the [Material]
52 /// The border radii used by the various kinds of material in material design.
66 /// An interface for creating [InkSplash]s and [InkHighlight]s on a material.
70 /// The color of the material.
88 /// A piece of material.
102 /// Material is the central metaphor in material design. Each piece of material
103 /// exists at a given elevation, which influences how that piece of material
[all …]
Dslider_theme.dart16 /// {@template flutter.material.slider.seeAlso.sliderComponentShape}
22 /// {@template flutter.material.slider.seeAlso.sliderTrackShape}
27 /// {@template flutter.material.slider.seeAlso.sliderTickMarkShape}
32 /// {@template flutter.material.slider.seeAlso.rangeSliderThumbShape}
37 /// {@template flutter.material.slider.seeAlso.rangeSliderValueIndicatorShape}
42 /// {@template flutter.material.slider.seeAlso.rangeSliderTrackShape}
47 /// {@template flutter.material.slider.seeAlso.rangeSliderTickMarkShape}
52 /// {@template flutter.material.slider.seeAlso.roundSliderThumbShape}
57 /// {@template flutter.material.slider.seeAlso.roundSliderOverlayShape}
62 /// {@template flutter.material.slider.seeAlso.paddleSliderValueIndicatorShape}
[all …]
Ddebug.dart7 import 'material.dart';
13 /// Used by many material design widgets to make sure that they are
14 /// only used in contexts where they can print ink onto some material.
34 'In material design, most widgets are conceptually "printed" on '
35 'a sheet of material. In Flutter\'s material library, that '
36 'material is represented by the Material widget. It is the '
38 'Because of this, many material library widgets require that '
76 /// Used by many material design widgets to make sure that they are
98 'and abbreviations which are used by the material library. '
Dconstants.dart18 /// * The Material spec on touch targets at <https://material.io/design/usability/accessibility.ht…
33 /// The radius of a circular material ink response in logical pixels.
36 /// The amount of time a circular material ink response should take to expand to its full size.
39 /// The value of the alpha channel to use when drawing a circular material ink response.
48 /// The padding added around material list items.
Dexpand_icon.dart28 /// * https://material.io/design/iconography/system-icons.html
75 …/// Material Design specifications for [icons](https://material.io/design/iconography/system-icons…
76 /// and for [dark theme](https://material.io/design/color/dark-theme.html#ui-application)
85 …/// Material Design specifications for [icons](https://material.io/design/iconography/system-icons…
86 /// and for [dark theme](https://material.io/design/color/dark-theme.html#ui-application)
94 …/// Material Design specifications for [icons](https://material.io/design/iconography/system-icons…
95 /// and for [dark theme](https://material.io/design/color/dark-theme.html#ui-application)
145 …/// [Material Design system icon specifications](https://material.io/design/iconography/system-ico…
147 …/// [Material Design dark theme specifications](https://material.io/design/color/dark-theme.html#u…
Ddialog.dart16 import 'material.dart';
24 /// A material design dialog.
28 /// or [SimpleDialog], which implement specific kinds of material design
36 /// * <https://material.io/design/components/dialogs.html>
51 /// {@template flutter.material.dialog.backgroundColor}
60 /// {@template flutter.material.dialog.elevation}
66 /// {@macro flutter.material.material.elevation}
81 /// {@template flutter.material.dialog.shape}
95 // TODO(johnsonmh): Update default dialog border radius to 4.0 to match material spec.
130 /// A material design alert dialog.
[all …]
/third_party/flutter/flutter/packages/flutter/test/material/
Dbuttons_test.dart6 import 'package:flutter/material.dart';
35 Material material = tester.widget<Material>(rawButtonMaterial);
36 expect(material.animationDuration, const Duration(milliseconds: 200));
37 expect(material.borderOnForeground, true);
38 expect(material.borderRadius, null);
39 expect(material.clipBehavior, Clip.none);
40 expect(material.color, null);
41 expect(material.elevation, 2.0);
42 expect(material.shadowColor, const Color(0xff000000));
43 expect(material.shape, RoundedRectangleBorder(borderRadius: BorderRadius.circular(2.0)));
[all …]
Dcard_theme_test.dart5 import 'package:flutter/material.dart';
23 final Material material = _getCardMaterial(tester);
25 expect(material.clipBehavior, Clip.none);
26 expect(material.color, Colors.white);
27 expect(material.elevation, 1.0);
29 expect(material.shape, const RoundedRectangleBorder(
45 final Material material = _getCardMaterial(tester);
47 expect(material.clipBehavior, cardTheme.clipBehavior);
48 expect(material.color, cardTheme.color);
49 expect(material.elevation, cardTheme.elevation);
[all …]
Dbottom_sheet_theme_test.dart5 import 'package:flutter/material.dart';
66 final Material material = tester.widget<Material>(
72 expect(material.color, null);
73 expect(material.elevation, 0.0);
74 expect(material.shape, null);
92 final Material material = tester.widget<Material>(
98 expect(material.color, bottomSheetTheme.backgroundColor);
99 expect(material.elevation, bottomSheetTheme.elevation);
100 expect(material.shape, bottomSheetTheme.shape);
125 final Material material = tester.widget<Material>(
[all …]
Danimated_icons_private_test.dart7 // material material_animated_icons library, but instead, this test file is an
23 part 'package:flutter/src/material/animated_icons/animated_icons.dart';
24 part 'package:flutter/src/material/animated_icons/animated_icons_data.dart';
26 // We have to import all the generated files in the material library to avoid
29 part 'package:flutter/src/material/animated_icons/data/add_event.g.dart';
30 part 'package:flutter/src/material/animated_icons/data/arrow_menu.g.dart';
31 part 'package:flutter/src/material/animated_icons/data/close_menu.g.dart';
32 part 'package:flutter/src/material/animated_icons/data/ellipsis_search.g.dart';
33 part 'package:flutter/src/material/animated_icons/data/event_add.g.dart';
34 part 'package:flutter/src/material/animated_icons/data/home_menu.g.dart';
[all …]
Dsnack_bar_theme_test.dart5 import 'package:flutter/material.dart';
91 final Material material = _getSnackBarMaterial(tester);
95 expect(material.color, const Color(0xFF333333));
96 expect(material.elevation, 6.0);
97 expect(material.shape, null);
128 final Material material = _getSnackBarMaterial(tester);
133 expect(material.color, snackBarTheme.backgroundColor);
134 expect(material.elevation, snackBarTheme.elevation);
135 expect(material.shape, snackBarTheme.shape);
178 final Material material = _getSnackBarMaterial(tester);
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/material/animated_icons/
Danimated_icons_data.dart13 /// Identifier for the supported material design animated icons.
18 /// The material design add to event icon animation.
21 /// The material design arrow to menu icon animation.
24 /// The material design close to menu icon animation.
27 /// The material design ellipsis to search icon animation.
30 /// The material design event to add icon animation.
33 /// The material design home to menu icon animation.
36 /// The material design list to view icon animation.
39 /// The material design menu to arrow icon animation.
42 /// The material design menu to close icon animation.
[all …]
/third_party/mbedtls/scripts/mbedtls_dev/
Dpsa_storage.py111 material: bytes #pylint: disable=used-before-assignment
121 self.material = material #type: bytes
155 material = self.pack('L', len(self.material)) + self.material
158 return header + attributes + material
181 material=b'@ABCDEFGHIJKLMNO')
192 material=b'\x00' * length)
200 material=b'\x2a')
/third_party/skia/experimental/sorttoy/
DSortKey.h46 explicit SortKey(bool transparent, uint32_t depth, uint32_t material) { in SortKey() argument
49 SkASSERT(!(material & ~kMaterialMask)); in SortKey()
55 (material & kMaterialMask) << kMaterialShift; in SortKey()
65 (material & kMaterialMask) << kDepthShift; in SortKey()
83 uint32_t material() const { in material() function
96 this->material()); in dump()
/third_party/flutter/flutter/examples/flutter_gallery/lib/gallery/
Ddemos.dart5 import 'package:flutter/material.dart';
168 documentationUrl: 'https://api.flutter.dev/flutter/material/MaterialBanner-class.html',
177 documentationUrl: 'https://docs.flutter.io/flutter/material/BottomAppBar-class.html',
186 documentationUrl: 'https://docs.flutter.io/flutter/material/BottomNavigationBar-class.html',
195 documentationUrl: 'https://docs.flutter.io/flutter/material/showModalBottomSheet.html',
204 … documentationUrl: 'https://docs.flutter.io/flutter/material/ScaffoldState/showBottomSheet.html',
221 documentationUrl: 'https://docs.flutter.io/flutter/material/FloatingActionButton-class.html',
230 documentationUrl: 'https://docs.flutter.io/flutter/material/Card-class.html',
239 documentationUrl: 'https://docs.flutter.io/flutter/material/Chip-class.html',
248 documentationUrl: 'https://docs.flutter.io/flutter/material/PaginatedDataTable-class.html',
[all …]
/third_party/flutter/flutter/dev/bots/
Dcodelabs_build_test.sh19 git clone https://github.com/material-components/material-components-flutter-codelabs.git
20 cd material-components-flutter-codelabs/mdc_100_series/
/third_party/openssl/doc/man3/
DSSL_export_keying_material.pod7 - obtain keying material for application use
25 During the creation of a TLS or DTLS connection shared keying material is
28 application to use some of this keying material for its own purposes in
31 SSL_export_keying_material() derives keying material using
35 keying material using the F<early_exporter_master_secret> (as defined in the
41 keying material will be used. For example this may include identifiers for the
53 no context at all, and will result in different keying material being returned.
55 result in the same keying material being returned.
DSSL_CTX_set_keylog_callback.pod6 SSL_CTX_keylog_cb_func - logging TLS key material
20 is called whenever TLS key material is generated or received, in order to allow
21 applications to store this keying material for debugging purposes.
26 the value of cb, no logging of key material will be done.
29 with the connection, and B<line>, a string containing the key material in the
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_fragment_lighting.txt139 more of the material parameters, but there is no equivalent notion
140 to per-vertex materials. If a material change occurs between a
141 Begin/End sequence, then only the last material specified before the
158 * should the material be undefined after color material is disabled
160 it should be well defined. fragment color material should be
161 thought of as a switch which causes the material parameters to be
162 sourced from the fragment material 'register' or from the fragment
163 color. At all times queries to the fragment material refer to the
164 material 'register' and whenever fragment color material is
165 disabled, material parameters are sourced from the unperturbed
[all …]
/third_party/openGLES/extensions/EXT/
DEXT_fragment_lighting.txt139 more of the material parameters, but there is no equivalent notion
140 to per-vertex materials. If a material change occurs between a
141 Begin/End sequence, then only the last material specified before the
158 * should the material be undefined after color material is disabled
160 it should be well defined. fragment color material should be
161 thought of as a switch which causes the material parameters to be
162 sourced from the fragment material 'register' or from the fragment
163 color. At all times queries to the fragment material refer to the
164 material 'register' and whenever fragment color material is
165 disabled, material parameters are sourced from the unperturbed
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_psa_crypto_storage_format.function13 /** Write a key with the given attributes and key material to storage.
20 const data_t *material,
31 PSA_ASSERT( psa_import_key( attributes, material->x, material->len,
64 * that it has the given attributes and (if exportable) key material.
153 data_t *material,
185 TEST_ASSERT( test_written_key( &attributes, material,
198 data_t *material,
228 TEST_ASSERT( test_read_key( &attributes, material,
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/
DSGIX_fragment_specular_lighting.txt235 fragment material. Fragment lighting is only defined for RGBA mode, it
255 + Am*As ambient material*scene ambient color
258 + Am*Al_i ambient material*ambient light
259 + Dm*Dl_i*(N.L_i) diffuse material*diffuse light
260 + Sm*Sl_i*(N.H_i)^n specular material*specular light
291 Fragment material state is maintained which is distinct from the
292 vertex material state. The fragment material state consists of
296 fragment material state is constant across a primitive since
299 the front material or back material is used when two sided lighting
332 The fragment material state can be set with the commands
[all …]

12345678910>>...40