Home
last modified time | relevance | path

Searched refs:Actions (Results 1 – 25 of 127) sorted by relevance

123456

/third_party/boost/boost/phoenix/core/
Denvironment.hpp27 template <typename Env, typename Actions>
30 typedef vector2<Env, Actions> type;
33 template <typename Env, typename Actions>
35 : context<Env, Actions>
70 template <typename This, typename Env, typename Actions>
71 struct result<This(Env, Actions)>
72 : result<This(Env const &, Actions const &)>
75 template <typename This, typename Env, typename Actions>
76 struct result<This(Env &, Actions)>
77 : result<This(Env &, Actions const &)>
[all …]
/third_party/typescript/tests/baselines/reference/
DcontextualTypingOfOptionalMembers.types8 interface Options<State, Actions> {
12 view?: (state: State, actions: Actions) => any;
13 >view : ((state: State, actions: Actions) => any) | undefined
15 >actions : Actions
17 actions: string | Actions;
18 >actions : string | Actions
21 declare function app<State, Actions extends ActionsObject<State>>(obj: Options<State, Actions>): vo…
22 >app : <State, Actions extends ActionsObject<State>>(obj: Options<State, Actions>) => void
23 >obj : Options<State, Actions>
27 >app : <State, Actions extends ActionsObject<State>>(obj: Options<State, Actions>) => void
[all …]
DcontextualTypingOfOptionalMembers.symbols13 interface Options<State, Actions> {
16 >Actions : Symbol(Actions, Decl(index.tsx, 4, 24))
22 view?: (state: State, actions: Actions) => any;
27 >Actions : Symbol(Actions, Decl(index.tsx, 4, 24))
29 actions: string | Actions;
31 >Actions : Symbol(Actions, Decl(index.tsx, 4, 24))
34 declare function app<State, Actions extends ActionsObject<State>>(obj: Options<State, Actions>): vo…
37 >Actions : Symbol(Actions, Decl(index.tsx, 10, 27))
43 >Actions : Symbol(Actions, Decl(index.tsx, 10, 27))
95 interface Options2<State, Actions> {
[all …]
DcontextualTypingOfOptionalMembers.js6 interface Options<State, Actions> {
8 view?: (state: State, actions: Actions) => any;
9 actions: string | Actions;
12 declare function app<State, Actions extends ActionsObject<State>>(obj: Options<State, Actions>): vo…
34 interface Options2<State, Actions> {
36 view?: (state: State, actions: Actions) => any;
37 actions?: Actions;
40 declare function app2<State, Actions extends ActionsObject<State>>(obj: Options2<State, Actions>): …
53 declare function app3<State, Actions extends ActionsArray<State>>(obj: Options<State, Actions>): vo…
72 declare function App4<State, Actions extends ActionsObjectOr<State>>(props: Options<State, Actions>…
DrecursiveClassReferenceTest.js33 module Sample.Actions.Thing.Find {
125 var Actions;
126 (function (Actions) { argument
142 })(Thing = Actions.Thing || (Actions.Thing = {}));
143 })(Actions = Sample.Actions || (Sample.Actions = {}));
DrecursiveClassReferenceTest.sourcemap.txt83 4 > .Actions.Thing.Find {
110 >>> var Actions;
118 3 > Actions
135 >>> (function (Actions) {
141 3 > Actions
418 >>> })(Thing = Actions.Thing || (Actions.Thing = {}));
458 >>> })(Actions = Sample.Actions || (Sample.Actions = {}));
471 4 > Actions
473 6 > Actions
475 8 > Actions
[all …]
DrecursiveClassReferenceTest.types51 module Sample.Actions.Thing.Find {
53 >Actions : typeof Actions
/third_party/typescript/tests/cases/compiler/
DcontextualTypingOfOptionalMembers.tsx9 interface Options<State, Actions> {
11 view?: (state: State, actions: Actions) => any;
12 actions: string | Actions;
15 declare function app<State, Actions extends ActionsObject<State>>(obj: Options<State, Actions>): vo…
37 interface Options2<State, Actions> {
39 view?: (state: State, actions: Actions) => any;
40 actions?: Actions;
43 declare function app2<State, Actions extends ActionsObject<State>>(obj: Options2<State, Actions>): …
56 declare function app3<State, Actions extends ActionsArray<State>>(obj: Options<State, Actions>): vo…
75 declare function App4<State, Actions extends ActionsObjectOr<State>>(props: Options<State, Actions>…
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dactions.dart61 /// - [Actions], which is a widget that defines a map of [Intent] to [Action]
85 /// Actions invoked directly with [ActionDispatcher.invokeAction] may receive a
109 /// - [Actions], which is a widget that defines a map of [Intent] to [Action]
140 /// Actions invoked will receive the given `focusNode`, or the
159 /// Actions are typically invoked using [Actions.invoke] with the context
160 /// containing the ambient [Actions] widget.
170 class Actions extends InheritedWidget {
171 /// Creates an [Actions] widget.
174 const Actions({
185 /// This is what is returned from [Actions.of], and used by [Actions.invoke].
[all …]
/third_party/boost/boost/metaparse/v1/
Dgrammar.hpp141 template <class Actions>
142 struct impl : transform<typename p::type, typename Actions::type> {};
309 template <class Start, class Rules, class Actions>
314 typedef Actions actions;
336 template <class Start, class Rules, class Actions, class P>
337 struct add_rule<grammar_builder<Start, Rules, Actions>, P, no_action> :
341 Actions
345 template <class Start, class Rules, class Actions, class P, class F>
346 struct add_rule<grammar_builder<Start, Rules, Actions>, P, F> :
351 Actions,
[all …]
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dactions_test.dart75 group(Actions, () {
97 …testWidgets('$Actions widget can invoke actions with default dispatcher', (WidgetTester tester) as…
104 Actions(
118 final bool result = Actions.invoke(
127 …testWidgets('$Actions widget can invoke actions with custom dispatcher', (WidgetTester tester) asy…
141 Actions(
151 final bool result = Actions.invoke(
162 …testWidgets('$Actions widget can invoke actions in ancestor dispatcher', (WidgetTester tester) asy…
176 Actions(
181 child: Actions(
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DEHStreamer.cpp62 SmallVectorImpl<ActionEntry> &Actions, in computeActionsTable() argument
118 assert(Actions.size()); in computeActionsTable()
119 PrevAction = Actions.size() - 1; in computeActionsTable()
120 SizeActionEntry = getSLEB128Size(Actions[PrevAction].NextAction) + in computeActionsTable()
121 getSLEB128Size(Actions[PrevAction].ValueForTypeID); in computeActionsTable()
125 SizeActionEntry -= getSLEB128Size(Actions[PrevAction].ValueForTypeID); in computeActionsTable()
126 SizeActionEntry += -Actions[PrevAction].NextAction; in computeActionsTable()
127 PrevAction = Actions[PrevAction].Previous; in computeActionsTable()
144 Actions.push_back(Action); in computeActionsTable()
145 PrevAction = Actions.size() - 1; in computeActionsTable()
[all …]
/third_party/flutter/flutter/dev/manual_tests/lib/
Dactions.dart12 title: 'Actions Demo',
17 /// Undoable Actions
157 final UndoableActionDispatcher manager = Actions.of(context, nullOk: true);
167 final UndoableActionDispatcher manager = Actions.of(context, nullOk: true);
180 final UndoableActionDispatcher manager = Actions.of(node.context, nullOk: true);
193 final UndoableActionDispatcher manager = Actions.of(node.context, nullOk: true);
294 /// Actions for manipulating focus.
362 Actions.invoke(context, const Intent(SetFocusAction.key), focusNode: _focusNode);
439 child: Actions(
463 title: const Text('Actions Demo'),
[all …]
/third_party/boost/libs/phoenix/doc/inside/
Dactions.qbk10 [section:actions More on Actions]
13 Actions are what brings life to a Phoenix expression tree.
75 [*But there is more:] As Actions /can/ be full fletched __proto_transforms__, you can
83 [`functional::context(Env, Actions)`]
84 [A __proto_callable__ that creates a new context out of the `Env` and `Actions` parameter]
Dactor.qbk96 [`result_of::context<Env, Actions>::type`]
113 [Type of the contained Actions]
132 [heading Actions]
134 Actions is the part of Phoenix which are responsible for giving the actual expressions
/third_party/boost/libs/beast/doc/qbk/
Drelease_notes.qbk78 ['Actions Required]
85 ['Actions Required]
118 ['Actions Required]
472 in a future version. ['Actions Required]: Do not rely on
475 * `handler_ptr` is deprecated. ['Actions Required]: Use
487 ['Actions Required]:
503 ['Actions Required]: Include stream_traits.hpp as needed.
507 ['Actions Required]
517 ['Actions Required]: Include file_base.hpp as needed.
521 ['Actions Required]:
[all …]
/third_party/boost/libs/spirit/doc/lex/
Dlexer_states.qbk12 [heading Controlling the Lexer State from Lexer Semantic Actions]
15 [heading Controlling the Lexer State from Parser Semantic Actions]
/third_party/ltp/doc/
Dsupported-kernel-libc-versions.txt4 1. Build testing with GitHub Actions
7 We test master branch in https://github.com/linux-test-project/ltp/actions[GitHub Actions]
14 NOTE: GitHub Actions does only build testing, passing the CI means only that
16 GitHub Actions also uses the latest distribution image of a particular release.
/third_party/node/test/fixtures/wpt/resources/
Dtestdriver-actions.js7 function Actions() { class
24 Actions.prototype = { class
398 test_driver.Actions = Actions;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/
DLegalizerInfo.h1197 SmallVector<SizeAndActionsVec, 1> &Actions = ScalarActions[OpcodeIdx]; in setScalarAction() local
1198 setActions(TypeIndex, Actions, SizeAndActions); in setScalarAction()
1207 SmallVector<SizeAndActionsVec, 1> &Actions = in setPointerAction() local
1209 setActions(TypeIndex, Actions, SizeAndActions); in setPointerAction()
1220 SmallVector<SizeAndActionsVec, 1> &Actions = in setScalarInVectorAction() local
1222 setActions(TypeIndex, Actions, SizeAndActions); in setScalarInVectorAction()
1236 SmallVector<SizeAndActionsVec, 1> &Actions = in setVectorNumElementAction() local
1238 setActions(TypeIndex, Actions, SizeAndActions); in setVectorNumElementAction()
1303 SmallVector<SizeAndActionsVec, 1> &Actions, in setActions() argument
1306 if (Actions.size() <= TypeIndex) in setActions()
[all …]
/third_party/boost/libs/spirit/doc/
Doutline.txt19 Semantic Actions
52 Lexer Semantic Actions
/third_party/flutter/flutter/packages/flutter/test/material/
Dbanner_test.dart53 …testWidgets('Actions laid out below content if more than one action', (WidgetTester tester) async {
80 testWidgets('Actions laid out beside content if only one action', (WidgetTester tester) async {
103 testWidgets('Actions laid out below content if forced override', (WidgetTester tester) async {
/third_party/boost/libs/beast/
DCHANGELOG.md11 * Enable Github Actions CI.
258 Actions Required:
820 Actions Required:
861 Actions Required:
897 Actions Required:
959 Actions Required:
1044 Actions Required:
1082 Actions Required:
1182 Actions Required:
1221 Actions Required:
[all …]
/third_party/googletest/docs/reference/
Dactions.md1 # Actions Reference
3 [**Actions**](../gmock_for_dummies.md#actions-what-should-it-do) specify what a
97 ## Composite Actions
107 ## Defining Actions
/third_party/glib/gio/tests/
Dorg.gtk.test.dbusappinfo.desktop4 Actions=frob;tweak;twiddle;quit;

123456