/third_party/node/test/fixtures/wpt/resources/ |
D | testdriver-actions.js | 74 let actions = []; 80 actions.push(serialized); 83 return actions; 93 let actions; 95 actions = this.serialize(); 99 return test_driver.action_sequence(actions, this.context); 382 this.actions = new Map(); 387 let actions = []; 388 let data = {"type": "none", "actions": actions}; property 390 if (this.actions.has(i)) { [all …]
|
D | accesskey.js | 18 let actions = new test_driver.Actions(); 21 actions = actions.keyDown(key); 23 actions = actions 29 actions = actions.keyUp(key); 31 return actions.send();
|
/third_party/typescript/tests/baselines/reference/ |
D | contextualTypingOfOptionalMembers.types | 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 26 >app({ state: 100, actions: { foo: s => s // Should be typed number => number }, … 28 …100, actions: { foo: s => s // Should be typed number => number }, view: (s, a) =>… 34 actions: { 35 >actions : { foo: (s: number) => number; } 82 view?: (state: State, actions: Actions) => any; [all …]
|
D | contextualTypingOfOptionalMembers.js | 8 view?: (state: State, actions: Actions) => any; 9 actions: string | Actions; 16 actions: { property 36 view?: (state: State, actions: Actions) => any; 37 actions?: Actions; 44 actions: { property 57 actions: [ property 80 actions: { property 91 actions: { property 98 actions: [ property
|
D | contextualTypingOfOptionalMembers.symbols | 22 view?: (state: State, actions: Actions) => any; 26 >actions : Symbol(actions, Decl(index.tsx, 6, 25)) 29 actions: string | Actions; 30 >actions : Symbol(Options.actions, Decl(index.tsx, 6, 51)) 51 actions: { 52 >actions : Symbol(actions, Decl(index.tsx, 13, 15)) 104 view?: (state: State, actions: Actions) => any; 108 >actions : Symbol(actions, Decl(index.tsx, 34, 25)) 111 actions?: Actions; 112 >actions : Symbol(Options2.actions, Decl(index.tsx, 34, 51)) [all …]
|
D | silentNeverPropagation.types | 28 declare function createModule<TState, TActions>(state: TState, actions: TActions): ModuleWithState<… 29 >createModule : <TState, TActions>(state: TState, actions: TActions) => ModuleWithState<TState> & T… 31 >actions : TActions 44 >createModule : <TState, TActions>(state: TState, actions: TActions) => ModuleWithState<TState> & T…
|
/third_party/libunwind/src/unwind/ |
D | unwind-internal.h | 66 _Unwind_Action actions; in _Unwind_Phase2() local 71 actions = _UA_CLEANUP_PHASE; in _Unwind_Phase2() 73 actions |= _UA_FORCE_UNWIND; in _Unwind_Phase2() 82 actions |= _UA_END_OF_STACK; in _Unwind_Phase2() 91 reason = (*stop) (_U_VERSION, actions, exception_class, in _Unwind_Phase2() 115 actions |= _UA_HANDLER_FRAME; in _Unwind_Phase2() 118 reason = (*personality) (_U_VERSION, actions, exception_class, in _Unwind_Phase2() 131 if (actions & _UA_HANDLER_FRAME) in _Unwind_Phase2()
|
/third_party/typescript/tests/cases/compiler/ |
D | contextualTypingOfOptionalMembers.tsx | 11 view?: (state: State, actions: Actions) => any; 12 actions: string | Actions; 19 actions: { 39 view?: (state: State, actions: Actions) => any; 40 actions?: Actions; 47 actions: { 60 actions: [ 75 … Actions extends ActionsObjectOr<State>>(props: Options<State, Actions>["actions"] & { state: Stat…
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/Retired/ |
D | fixupRef.py | 80 actions = { } 92 actions[pi.begin] = { 99 actions[pi.begin] = { 107 actions[pi.end] = { 114 actions[pi.end] = { 136 if line in actions.keys(): 137 action = actions[line]['action'] 138 replace = actions[line]['replace'] 139 pi = actions[line]['pageinfo']
|
/third_party/rust/crates/codespan/codespan/ |
D | README.md | 3 [![Continuous integration][actions-badge]][actions-url] 8 [actions-badge]: https://img.shields.io/github/workflow/status/brendanzab/codespan/Continuous%20int… 9 [actions-url]: https://github.com/brendanzab/codespan/actions
|
/third_party/typescript/src/services/codefixes/ |
D | fixUnreferenceableDecoratorMetadata.ts | 13 let actions: CodeFixAction[] | undefined; variable 15 …actions = append(actions, createCodeFixActionWithoutFixAll(fixId, namespaceChanges, Diagnostics.Co… 18 …actions = append(actions, createCodeFixActionWithoutFixAll(fixId, typeOnlyChanges, Diagnostics.Con… 20 return actions;
|
D | fixUnmatchedParameter.ts | 15 const actions: CodeFixAction[] = []; constant 18 append(actions, getDeleteAction(context, info)); 19 append(actions, getRenameAction(context, info)); 20 return actions;
|
/third_party/typescript/src/testRunner/unittests/evaluation/ |
D | autoAccessors.ts | 58 const { actions, C } = evaluator.evaluateTypeScript(` constant 78 assert.deepEqual(actions, [ 84 assert.deepEqual(actions, [ 92 const { actions, C } = evaluator.evaluateTypeScript(` constant 109 assert.deepEqual(actions, []);
|
/third_party/node/deps/uv/src/unix/ |
D | process.c | 512 posix_spawn_file_actions_t* actions, in uv__spawn_set_posix_spawn_file_actions() argument 522 err = posix_spawn_file_actions_init(actions); in uv__spawn_set_posix_spawn_file_actions() 535 err = posix_spawn_fncs->file_actions.addchdir_np(actions, options->cwd); in uv__spawn_set_posix_spawn_file_actions() 561 actions, in uv__spawn_set_posix_spawn_file_actions() 579 actions, in uv__spawn_set_posix_spawn_file_actions() 592 err = posix_spawn_file_actions_addinherit_np(actions, fd); in uv__spawn_set_posix_spawn_file_actions() 594 err = posix_spawn_file_actions_adddup2(actions, use_fd, fd); in uv__spawn_set_posix_spawn_file_actions() 618 err = posix_spawn_file_actions_addclose(actions, use_fd); in uv__spawn_set_posix_spawn_file_actions() 627 (void) posix_spawn_file_actions_destroy(actions); in uv__spawn_set_posix_spawn_file_actions() 650 posix_spawn_file_actions_t* actions, in uv__spawn_resolve_and_spawn() argument [all …]
|
/third_party/libuv/src/unix/ |
D | process.c | 512 posix_spawn_file_actions_t* actions, in uv__spawn_set_posix_spawn_file_actions() argument 522 err = posix_spawn_file_actions_init(actions); in uv__spawn_set_posix_spawn_file_actions() 535 err = posix_spawn_fncs->file_actions.addchdir_np(actions, options->cwd); in uv__spawn_set_posix_spawn_file_actions() 561 actions, in uv__spawn_set_posix_spawn_file_actions() 579 actions, in uv__spawn_set_posix_spawn_file_actions() 592 err = posix_spawn_file_actions_addinherit_np(actions, fd); in uv__spawn_set_posix_spawn_file_actions() 594 err = posix_spawn_file_actions_adddup2(actions, use_fd, fd); in uv__spawn_set_posix_spawn_file_actions() 618 err = posix_spawn_file_actions_addclose(actions, use_fd); in uv__spawn_set_posix_spawn_file_actions() 627 (void) posix_spawn_file_actions_destroy(actions); in uv__spawn_set_posix_spawn_file_actions() 650 posix_spawn_file_actions_t* actions, in uv__spawn_resolve_and_spawn() argument [all …]
|
/third_party/skia/experimental/docs/ |
D | animationCommon.js | 49 var actions = animation.actions; 50 for (var aIndex = 0; aIndex < actions.length; ++aIndex) { 51 var action = actions[aIndex]; 83 assert(actions.length == 1); 288 var len = rec.actions.length; 291 var action = rec.actions[i];
|
/third_party/typescript/src/services/refactors/ |
D | convertImport.ts | 5 const actions = { constant 24 kinds: getOwnValues(actions).map(a => a.kind), 30 const action = actions[info.convertTo]; 31 return [{ name: refactorName, description: action.description, actions: [action] }]; 35 return getOwnValues(actions).map(action => ({ 38 actions: [{ ...action, notApplicableReason: info.error }] 45 …Debug.assert(some(getOwnValues(actions), action => action.name === actionName), "Unexpected action…
|
/third_party/vk-gl-cts/external/vulkan-docs/src/katex/contrib/ |
D | mhchem.min.js | 1 …actions[d.action_[m].type_])l=u.actions[d.action_[m].type_](a,_.match_,d.action_[m].option);else{i… property
|
D | mhchem.js | 301 if (machine.actions[task.action_[iA].type_]) { 302 … o = machine.actions[task.action_[iA].type_](buffer, matches.match_, task.action_[iA].option); 303 } else if (mhchemParser.actions[task.action_[iA].type_]) { 304 … o = mhchemParser.actions[task.action_[iA].type_](buffer, matches.match_, task.action_[iA].option); 734 actions: { 1582 actions: { property 1595 mhchemParser.actions['o='](buffer, m); 1607 mhchemParser.concatArray(ret, mhchemParser.actions['bond'](buffer, m, "-")); 1637 mhchemParser.concatArray(ret, mhchemParser.actions['d='](buffer, m)); 1641 mhchemParser.concatArray(ret, mhchemParser.actions['bond'](buffer, m, "-")); [all …]
|
/third_party/icu/icu4c/source/common/ |
D | rbbicst.pl | 182 if ($actions{$state_action_name[$state]} == 0) { 183 $actions{$state_func_name[$state]} = 1; 262 foreach $act (sort keys %actions) { 379 foreach $act (sort keys %actions) {
|
/third_party/node/deps/icu-small/source/common/ |
D | rbbicst.pl | 182 if ($actions{$state_action_name[$state]} == 0) { 183 $actions{$state_func_name[$state]} = 1; 262 foreach $act (sort keys %actions) { 379 foreach $act (sort keys %actions) {
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | rbbicst.pl | 182 if ($actions{$state_action_name[$state]} == 0) { 183 $actions{$state_func_name[$state]} = 1; 262 foreach $act (sort keys %actions) { 379 foreach $act (sort keys %actions) {
|
/third_party/python/Lib/test/ |
D | test_decorators.py | 248 actions = [] 251 actions.append('makedec' + tag) 253 actions.append('calldec' + tag) 268 actions.append('%s%d' % (opname, self.index)) 278 actions = [] 285 self.assertEqual(actions, expected_actions) 289 actions = [] 293 self.assertEqual(actions, expected_actions)
|
/third_party/skia/platform_tools/android/skp_gen/ |
D | android_skp_capture.py | 64 def __init__(self, name, package, activity, app_launch_delay, actions): argument 70 self.actions = [parse_action(a) for a in actions] 165 for action in app.actions:
|
/third_party/selinux/ |
D | README.md | 5 …ub.com/SELinuxProject/selinux/actions/workflows/run_tests.yml/badge.svg)](https://github.com/SELin… 6 ….com/SELinuxProject/selinux/actions/workflows/vm_testsuite.yml/badge.svg)](https://github.com/SELi… 8 …hub.com/SELinuxProject/selinux/actions/workflows/cifuzz.yml/badge.svg)](https://github.com/SELinux…
|