Home
last modified time | relevance | path

Searched full:semantics (Results 1 – 25 of 4189) sorted by relevance

12345678910>>...168

/third_party/flutter/flutter/packages/flutter/test/widgets/
Dsemantics_test.dart10 import 'package:flutter/semantics.dart';
21 testWidgets('Semantics shutdown and restart', (WidgetTester tester) async {
22 SemanticsTester semantics = SemanticsTester(tester);
35 child: Semantics(
43 expect(semantics, hasSemantics(
50 semantics.dispose();
51 semantics = null;
54 semantics = SemanticsTester(tester);
58 expect(semantics, hasSemantics(
64 semantics.dispose();
[all …]
Dsemantics_9_test.dart15 final SemanticsTester semantics = SemanticsTester(tester);
20 Semantics(
26 Semantics(
34 expect(semantics, isNot(includesNodeWith(label: 'layer#1')));
39 Semantics(
47 expect(semantics, includesNodeWith(label: 'layer#1'));
49 semantics.dispose();
53 final SemanticsTester semantics = SemanticsTester(tester);
57 Semantics(
61 Semantics(
[all …]
Dscrollable_semantics_test.dart16 SemanticsTester semantics;
23 semantics = SemanticsTester(tester);
35 expect(semantics,includesNodeWith(actions: <SemanticsAction>[SemanticsAction.scrollUp]));
38 …expect(semantics, includesNodeWith(actions: <SemanticsAction>[SemanticsAction.scrollUp, SemanticsA…
41 expect(semantics, includesNodeWith(actions: <SemanticsAction>[SemanticsAction.scrollUp]));
44 expect(semantics, includesNodeWith(actions: <SemanticsAction>[SemanticsAction.scrollDown]));
47 …expect(semantics, includesNodeWith(actions: <SemanticsAction>[SemanticsAction.scrollUp, SemanticsA…
49 semantics.dispose();
53 semantics = SemanticsTester(tester); // enables semantics tree generation
87 semantics.dispose();
[all …]
Dgesture_detector_semantics_test.dart14 final SemanticsTester semantics = SemanticsTester(tester);
31 expect(semantics, includesNodeWith(
44 semantics.dispose();
48 final SemanticsTester semantics = SemanticsTester(tester);
65 expect(semantics, includesNodeWith(
78 semantics.dispose();
82 final SemanticsTester semantics = SemanticsTester(tester);
102 semantics.dispose();
106 final SemanticsTester semantics = SemanticsTester(tester);
116 // * This test makes sure the replacement correctly updates semantics.
[all …]
Dsemantics_3_test.dart12 testWidgets('Semantics 3', (WidgetTester tester) async {
13 final SemanticsTester semantics = SemanticsTester(tester);
17 Semantics(
20 child: Semantics(
24 child: Semantics(
33 expect(semantics, hasSemantics(
48 Semantics(
51 child: Semantics(
58 expect(semantics, hasSemantics(
72 Semantics(
[all …]
Dsemantics_1_test.dart13 testWidgets('Semantics 1', (WidgetTester tester) async {
14 final SemanticsTester semantics = SemanticsTester(tester);
18 Semantics(
21 child: Semantics(
31 expect(semantics, hasSemantics(TestSemantics.root(
44 Semantics(
51 child: Semantics(
61 child: Semantics(
73 expect(semantics, hasSemantics(TestSemantics.root(
84 // forking semantics
[all …]
Dsemantics_4_test.dart13 testWidgets('Semantics 4', (WidgetTester tester) async {
14 final SemanticsTester semantics = SemanticsTester(tester);
27 Semantics(
31 Semantics(
37 Semantics(
40 Semantics(
50 expect(semantics, hasSemantics(
89 Semantics(
93 Semantics(
99 Semantics(
[all …]
Dsemantics_8_test.dart12 testWidgets('Semantics 8 - Merging with reset', (WidgetTester tester) async {
13 final SemanticsTester semantics = SemanticsTester(tester);
17 child: Semantics(
19 child: Semantics(
24 Semantics(
27 Semantics(
38 expect(semantics, hasSemantics(
52 // switch the order of the inner Semantics node to trigger a reset
55 child: Semantics(
57 child: Semantics(
[all …]
Dsemantics_merge_test.dart18 final SemanticsTester semantics = SemanticsTester(tester);
26 Semantics(
30 Semantics(
39 expect(semantics, hasSemantics(
63 Semantics(
67 Semantics(
77 expect(semantics, hasSemantics(
96 Semantics(
100 Semantics(
109 expect(semantics, hasSemantics(
[all …]
Dsemantics_2_test.dart13 testWidgets('Semantics 2', (WidgetTester tester) async {
14 final SemanticsTester semantics = SemanticsTester(tester);
16 // this test is the same as the test in Semantics 1, but
20 // forking semantics
22 Semantics(
29 child: Semantics(
39 child: Semantics(
51 expect(semantics, hasSemantics(TestSemantics.root(
76 Semantics(
83 child: Semantics(
[all …]
Dimplicit_semantics_test.dart13 testWidgets('Implicit Semantics merge behavior', (WidgetTester tester) async {
14 final SemanticsTester semantics = SemanticsTester(tester);
19 child: Semantics(
35 semantics,
53 child: Semantics(
71 semantics,
98 child: Semantics(
101 child: Semantics(
118 semantics,
141 child: Semantics(
[all …]
Dopacity_test.dart15 final SemanticsTester semantics = SemanticsTester(tester);
17 // Opacity 1.0: Semantics and painting
24 expect(semantics, hasSemantics(
45 expect(semantics, hasSemantics(
50 // Opacity 0.0 with semantics: Just semantics
58 expect(semantics, hasSemantics(
72 // Opacity 0.0 without semantics: Nothing
80 expect(semantics, hasSemantics(
85 // Opacity 0.1: Semantics and painting
92 expect(semantics, hasSemantics(
[all …]
Dsemantics_7_test.dart12 testWidgets('Semantics 7 - Merging', (WidgetTester tester) async {
13 final SemanticsTester semantics = SemanticsTester(tester);
25 child: Semantics(
28 child: Semantics(
38 Semantics(
41 Semantics(
52 expect(semantics, hasSemantics(
81 child: Semantics(
84 child: Semantics(
94 Semantics(
[all …]
Dcustom_painter_test.dart28 testWidgets('builds no semantics by default', (WidgetTester tester) async {
44 testWidgets('provides foreground semantics', (WidgetTester tester) async {
49 semantics: const CustomPainterSemantics(
80 testWidgets('provides background semantics', (WidgetTester tester) async {
85 semantics: const CustomPainterSemantics(
116 testWidgets('combines background, child and foreground semantics', (WidgetTester tester) async {
121 semantics: const CustomPainterSemantics(
129 child: Semantics(
134 semantics: const CustomPainterSemantics(
180 semantics: const CustomPainterSemantics(
[all …]
Dsemantics_11_test.dart14 final SemanticsTester semantics = SemanticsTester(tester);
17 Semantics(
20 child: Semantics(
22 child: Semantics(
31 expect(semantics, hasSemantics(TestSemantics.root(
57 Semantics(
60 child: Semantics(
62 child: Semantics(
71 expect(semantics, hasSemantics(TestSemantics.root(
93 semantics.dispose();
Dsemantics_keep_alive_offstage_test.dart13 …testWidgets('Un-layouted RenderObject in keep alive offstage area do not crash semantics compiler'…
16 final SemanticsTester semantics = SemanticsTester(tester);
32 expect(semantics, includesNodeWith(label: initialLabel));
41 expect(semantics, isNot(includesNodeWith(label: initialLabel)));
52 expect(semantics, isNot(includesNodeWith(label: initialLabel)));
54 // Change the semantics of the offstage ProblemWidget without crashing.
66 expect(semantics, isNot(includesNodeWith(label: initialLabel)));
67 expect(semantics, isNot(includesNodeWith(label: newLabel)));
69 // Bringing the offstage node back on the screen produces correct semantics tree.
75 expect(semantics, isNot(includesNodeWith(label: initialLabel)));
[all …]
/third_party/spirv-tools/source/val/
Dvalidate_memory_semantics.cpp39 << ": expected Memory Semantics to be a 32-bit int"; in ValidateMemorySemantics()
46 << "Memory Semantics ids must be OpConstant when Shader " in ValidateMemorySemantics()
54 << "Memory Semantics must be a constant instruction when " in ValidateMemorySemantics()
68 << ": Memory Semantics can have at most one of the following " in ValidateMemorySemantics()
78 "semantics cannot be used with " in ValidateMemorySemantics()
86 << ": Memory Semantics MakeAvailableKHR requires capability " in ValidateMemorySemantics()
94 << ": Memory Semantics MakeVisibleKHR requires capability " in ValidateMemorySemantics()
102 << ": Memory Semantics OutputMemoryKHR requires capability " in ValidateMemorySemantics()
110 << ": Memory Semantics Volatile requires capability " in ValidateMemorySemantics()
116 << "Memory Semantics Volatile can only be used with atomic " in ValidateMemorySemantics()
[all …]
/third_party/skia/third_party/externals/spirv-tools/source/val/
Dvalidate_memory_semantics.cpp39 << ": expected Memory Semantics to be a 32-bit int"; in ValidateMemorySemantics()
46 << "Memory Semantics ids must be OpConstant when Shader " in ValidateMemorySemantics()
54 << "Memory Semantics must be a constant instruction when " in ValidateMemorySemantics()
68 << ": Memory Semantics can have at most one of the following " in ValidateMemorySemantics()
78 "semantics cannot be used with " in ValidateMemorySemantics()
86 << ": Memory Semantics MakeAvailableKHR requires capability " in ValidateMemorySemantics()
94 << ": Memory Semantics MakeVisibleKHR requires capability " in ValidateMemorySemantics()
102 << ": Memory Semantics OutputMemoryKHR requires capability " in ValidateMemorySemantics()
110 << ": Memory Semantics Volatile requires capability " in ValidateMemorySemantics()
116 << "Memory Semantics Volatile can only be used with atomic " in ValidateMemorySemantics()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_memory_semantics.cpp39 << ": expected Memory Semantics to be a 32-bit int"; in ValidateMemorySemantics()
46 << "Memory Semantics ids must be OpConstant when Shader " in ValidateMemorySemantics()
54 << "Memory Semantics must be a constant instruction when " in ValidateMemorySemantics()
68 << ": Memory Semantics can have at most one of the following " in ValidateMemorySemantics()
78 "semantics cannot be used with " in ValidateMemorySemantics()
86 << ": Memory Semantics MakeAvailableKHR requires capability " in ValidateMemorySemantics()
94 << ": Memory Semantics MakeVisibleKHR requires capability " in ValidateMemorySemantics()
102 << ": Memory Semantics OutputMemoryKHR requires capability " in ValidateMemorySemantics()
110 << ": Memory Semantics Volatile requires capability " in ValidateMemorySemantics()
116 << "Memory Semantics Volatile can only be used with atomic " in ValidateMemorySemantics()
[all …]
/third_party/node/deps/npm/node_modules/http-cache-semantics/
Dpackage.json2 "_from": "http-cache-semantics@^3.8.1",
3 "_id": "http-cache-semantics@3.8.1",
6 "_location": "/http-cache-semantics",
11 "raw": "http-cache-semantics@^3.8.1",
12 "name": "http-cache-semantics",
13 "escapedName": "http-cache-semantics",
23 "_resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz",
25 "_spec": "http-cache-semantics@^3.8.1",
33 "url": "https://github.com/pornel/http-cache-semantics/issues"
46 "homepage": "https://github.com/pornel/http-cache-semantics#readme",
[all …]
/third_party/flutter/flutter/examples/catalog/test/
Dcustom_semantics_test.dart12 // Turn on Semantics
20 // Verify it correctly exposes its semantics.
22 final SemanticsNode semantics = tester
26 expectAdjustable(semantics,
36 semanticsOwner.performAction(semantics.id, SemanticsAction.increase);
39 expectAdjustable(semantics,
49 semanticsOwner.performAction(semantics.id, SemanticsAction.increase);
52 expectAdjustable(semantics,
61 semanticsOwner.performAction(semantics.id, SemanticsAction.decrease);
64 expectAdjustable(semantics,
[all …]
/third_party/boost/boost/yap/
Dexpression.hpp222 /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ in BOOST_YAP_USER_UNARY_OPERATOR()
225 /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */
228 /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */
231 /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */
234 /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */
237 /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */
240 /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */
243 /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */
246 /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */
249 /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPFloat.h30 llvm_unreachable("Unexpected semantics"); \
77 /// full extended precision). Adding a new format that obeys IEEE semantics
149 /// \name Floating Point Semantics.
151 enum Semantics { enum
160 static const llvm::fltSemantics &EnumToSemantics(Semantics S);
161 static Semantics SemanticsToEnum(const llvm::fltSemantics &Sem);
236 /// semantics.
371 const fltSemantics &getSemantics() const { return *semantics; } in getSemantics()
378 /// magnitude in the current semantics.
382 /// magnitude in the current semantics.
[all …]
/third_party/flutter/flutter/packages/flutter/lib/
Dsemantics.dart5 /// The Flutter semantics package.
7 /// To use, import `package:flutter/semantics.dart`.
14 library semantics;
16 export 'src/semantics/binding.dart';
17 export 'src/semantics/debug.dart';
18 export 'src/semantics/semantics.dart';
19 export 'src/semantics/semantics_service.dart';
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPFloat.h67 /// full extended precision). Adding a new format that obeys IEEE semantics
136 /// \name Floating Point Semantics.
207 /// semantics.
388 const fltSemantics &getSemantics() const { return *semantics; } in getSemantics()
395 /// magnitude in the current semantics.
399 /// magnitude in the current semantics.
476 /// semantics.
567 /// The semantics that this value obeys.
568 const fltSemantics *semantics; variable
597 // The interface and layout is designed for arbitray underlying semantics,
[all …]

12345678910>>...168