/third_party/boost/boost/phoenix/core/ |
D | environment.hpp | 27 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/ |
D | contextualTypingOfOptionalMembers.types | 8 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 …]
|
D | contextualTypingOfOptionalMembers.symbols | 13 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 …]
|
D | contextualTypingOfOptionalMembers.js | 6 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>…
|
D | recursiveClassReferenceTest.js | 33 module Sample.Actions.Thing.Find { 125 var Actions; 126 (function (Actions) { argument 142 })(Thing = Actions.Thing || (Actions.Thing = {})); 143 })(Actions = Sample.Actions || (Sample.Actions = {}));
|
D | recursiveClassReferenceTest.sourcemap.txt | 83 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 …]
|
D | recursiveClassReferenceTest.types | 51 module Sample.Actions.Thing.Find { 53 >Actions : typeof Actions
|
/third_party/typescript/tests/cases/compiler/ |
D | contextualTypingOfOptionalMembers.tsx | 9 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/ |
D | actions.dart | 61 /// - [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/ |
D | grammar.hpp | 141 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/ |
D | actions_test.dart | 75 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/ |
D | EHStreamer.cpp | 62 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/ |
D | actions.dart | 12 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/ |
D | actions.qbk | 10 [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]
|
D | actor.qbk | 96 [`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/ |
D | release_notes.qbk | 78 ['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/ |
D | lexer_states.qbk | 12 [heading Controlling the Lexer State from Lexer Semantic Actions] 15 [heading Controlling the Lexer State from Parser Semantic Actions]
|
/third_party/ltp/doc/ |
D | supported-kernel-libc-versions.txt | 4 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/ |
D | testdriver-actions.js | 7 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/ |
D | LegalizerInfo.h | 1197 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/ |
D | outline.txt | 19 Semantic Actions 52 Lexer Semantic Actions
|
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | banner_test.dart | 53 …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/ |
D | CHANGELOG.md | 11 * 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/ |
D | actions.md | 1 # 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/ |
D | org.gtk.test.dbusappinfo.desktop | 4 Actions=frob;tweak;twiddle;quit;
|