| /third_party/selinux/libselinux/src/ |
| D | selinuxswig_python_exception.i | 3 $action 11 $action 19 $action 27 $action 35 $action 43 $action 51 $action 59 $action 67 $action 75 $action [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | coAndContraVariantInferences.types | 42 interface Action<TName extends string,TPayload> { 50 const actionA = { payload: 'any-string' } as Action<'ACTION_A', string>; 51 >actionA : Action<"ACTION_A", string> 52 >{ payload: 'any-string' } as Action<'ACTION_A', string> : Action<"ACTION_A", string> 57 const actionB = { payload: true } as Action<'ACTION_B', boolean>; 58 >actionB : Action<"ACTION_B", boolean> 59 >{ payload: true } as Action<'ACTION_B', boolean> : Action<"ACTION_B", boolean> 65 >call : <TName extends string, TPayload>(action: Action<TName, TPayload>, fn: (action: Action<TName… 67 action: Action<TName,TPayload>, 68 >action : Action<TName, TPayload> [all …]
|
| D | recursiveArrayNotCircular.types | 2 type Action<T, P> = P extends void ? { type : T } : { type: T, payload: P } 3 >Action : Action<T, P> 27 | Action<ActionType.Bar, number> 30 | Action<ActionType.Baz, boolean> 33 | Action<ActionType.Foo, string> 36 | Action<ActionType.Batch, ReducerAction[]> 49 function reducer(action: ReducerAction): void { 50 >reducer : (action: ReducerAction) => void 51 >action : ReducerAction 53 switch(action.type) { [all …]
|
| D | arrayLiteralTypeInference.types | 2 class Action { 3 >Action : Action 9 class ActionA extends Action { 11 >Action : Action 17 class ActionB extends Action { 19 >Action : Action 25 var x1: Action[] = [ 26 >x1 : Action[] 45 var x2: Action[] = [ 46 >x2 : Action[] [all …]
|
| D | recursiveArrayNotCircular.symbols | 2 type Action<T, P> = P extends void ? { type : T } : { type: T, payload: P } 3 >Action : Symbol(Action, Decl(recursiveArrayNotCircular.ts, 0, 0)) 33 | Action<ActionType.Bar, number> 34 >Action : Symbol(Action, Decl(recursiveArrayNotCircular.ts, 0, 0)) 38 | Action<ActionType.Baz, boolean> 39 >Action : Symbol(Action, Decl(recursiveArrayNotCircular.ts, 0, 0)) 43 | Action<ActionType.Foo, string> 44 >Action : Symbol(Action, Decl(recursiveArrayNotCircular.ts, 0, 0)) 48 | Action<ActionType.Batch, ReducerAction[]> 49 >Action : Symbol(Action, Decl(recursiveArrayNotCircular.ts, 0, 0)) [all …]
|
| D | coAndContraVariantInferences.js | 17 interface Action<TName extends string,TPayload> { 22 const actionA = { payload: 'any-string' } as Action<'ACTION_A', string>; 23 const actionB = { payload: true } as Action<'ACTION_B', boolean>; 26 action: Action<TName,TPayload>, 27 fn: (action: Action<TName,TPayload>)=> any, 29 fn(action); 32 const printFn = (action: typeof actionA | typeof actionB)=> console.log(action); 44 function call(action, fn) { argument 45 fn(action); 47 var printFn = function (action) { return console.log(action); }; argument [all …]
|
| D | recursiveArrayNotCircular.js | 2 type Action<T, P> = P extends void ? { type : T } : { type: T, payload: P } 12 | Action<ActionType.Bar, number> 13 | Action<ActionType.Baz, boolean> 14 | Action<ActionType.Foo, string> 15 | Action<ActionType.Batch, ReducerAction[]> 21 function reducer(action: ReducerAction): void { 22 switch(action.type) { 24 const x: number = action.payload; 27 const y: boolean = action.payload; 30 const z: string = action.payload; [all …]
|
| D | arrayLiteralTypeInference.symbols | 2 class Action { 3 >Action : Symbol(Action, Decl(arrayLiteralTypeInference.ts, 0, 0)) 6 >id : Symbol(Action.id, Decl(arrayLiteralTypeInference.ts, 0, 14)) 9 class ActionA extends Action { 11 >Action : Symbol(Action, Decl(arrayLiteralTypeInference.ts, 0, 0)) 17 class ActionB extends Action { 19 >Action : Symbol(Action, Decl(arrayLiteralTypeInference.ts, 0, 0)) 25 var x1: Action[] = [ 27 >Action : Symbol(Action, Decl(arrayLiteralTypeInference.ts, 0, 0)) 39 var x2: Action[] = [ [all …]
|
| D | coAndContraVariantInferences.symbols | 47 interface Action<TName extends string,TPayload> { 48 >Action : Symbol(Action, Decl(coAndContraVariantInferences.ts, 11, 12)) 53 >name : Symbol(Action.name, Decl(coAndContraVariantInferences.ts, 15, 49)) 57 >payload : Symbol(Action.payload, Decl(coAndContraVariantInferences.ts, 16, 16)) 61 const actionA = { payload: 'any-string' } as Action<'ACTION_A', string>; 64 >Action : Symbol(Action, Decl(coAndContraVariantInferences.ts, 11, 12)) 66 const actionB = { payload: true } as Action<'ACTION_B', boolean>; 69 >Action : Symbol(Action, Decl(coAndContraVariantInferences.ts, 11, 12)) 76 action: Action<TName,TPayload>, 77 >action : Symbol(action, Decl(coAndContraVariantInferences.ts, 23, 45)) [all …]
|
| /third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
| D | RefBaseTests.cpp | 22 enum class Action { enum 30 Action action; member 36 switch (event.action) { in operator <<() 37 case Action::kReference: in operator <<() 40 case Action::kRelease: in operator <<() 43 case Action::kAssign: in operator <<() 46 case Action::kMarker: in operator <<() 54 return a.action == b.action && a.thisId == b.thisId && a.otherId == b.otherId; in operator ==() 69 mEvents->emplace_back(Event{Action::kReference, mId}); in Reference() 73 mEvents->emplace_back(Event{Action::kRelease, mId}); in Release() [all …]
|
| /third_party/ntfs-3g/ntfsprogs/ |
| D | playlog.c | 85 /* check whether a MFT or INDX record is older than action */ 88 /* check whether a MFT or INDX record is newer than action */ 647 " (record %s than action 0x%llx)\n", in write_protected() 673 " (index %s than action 0x%llx)\n", in write_protected() 827 * The action UpdateFileNameRoot updates the time stamps and/or the 862 static int change_resident(ntfs_volume *vol, const struct ACTION_RECORD *action, in change_resident() argument 872 if (action->record.undo_length != action->record.redo_length) in change_resident() 875 lcn = sle64_to_cpu(action->record.lcn_list[0]); in change_resident() 877 (long long)inode_number(&action->record), in change_resident() 881 + le16_to_cpu(action->record.record_offset)); in change_resident() [all …]
|
| /third_party/python/Lib/ |
| D | argparse.py | 44 - Action -- The base class for parser actions. Typically actions are 46 the action= argument of add_argument(). However, for greater 47 customization of ArgumentParser actions, subclasses of Action may 48 be defined and passed as the action= argument. 78 'Action', 260 def add_argument(self, action): argument 261 if action.help is not SUPPRESS: 265 invocations = [get_invocation(action)] 266 for subaction in self._iter_indented_subactions(action): 276 self._add_item(self._format_action, [action]) [all …]
|
| /third_party/css-what/src/__fixtures__/ |
| D | out.json | 9 "action": "equals", string 29 "action": "equals", string 49 "action": "equals", string 69 "action": "equals", string 90 "action": "equals", string 128 "action": "equals", string 140 "action": "equals", string 160 "action": "equals", string 180 "action": "equals", string 200 "action": "equals", string [all …]
|
| /third_party/skia/experimental/docs/ |
| D | animationCommon.js | 22 var action = keyframe[i]; 23 loopOver(action, timeline); 51 var action = actions[aIndex]; 52 var hasDraw = 'draw' in action; 53 var hasRef = 'ref' in action; 56 var ref = hasRef ? action.ref : "anonymous_" + index + "_" + aIndex; 61 assert('string' == typeof(action.draw)); 62 var draw = (new Function("return " + action.draw))(); 65 if ('paint' in action) { 66 assert('string' == typeof(action.paint)); [all …]
|
| /third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
| D | ohos_ability_wantConstant.js | 15 export const Action = { variable 16 ACTION_HOME: "ohos.want.action.home", 17 ACTION_DIAL: "ohos.want.action.dial", 18 ACTION_SEARCH: "ohos.want.action.search", 22 ACTION_SET_ALARM: "ohos.want.action.setAlarm", 23 ACTION_SHOW_ALARMS: "ohos.want.action.showAlarms", 24 ACTION_SNOOZE_ALARM: "ohos.want.action.snoozeAlarm", 25 ACTION_DISMISS_ALARM: "ohos.want.action.dismissAlarm", 26 ACTION_DISMISS_TIMER: "ohos.want.action.dismissTimer", 27 ACTION_SEND_SMS: "ohos.want.action.sendSms", [all …]
|
| /third_party/protobuf/objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/ |
| D | MainMenu.xib | 29 … <action selector="orderFrontStandardAboutPanel:" target="-1" id="Exp-CZ-Vem"/> 42 <action selector="hide:" target="-1" id="PnN-Uc-m68"/> 48 … <action selector="hideOtherApplications:" target="-1" id="VT4-aY-XCT"/> 54 … <action selector="unhideAllApplications:" target="-1" id="Dhg-Le-xox"/> 60 <action selector="terminate:" target="-1" id="Te7-pn-YzF"/> 72 <action selector="newDocument:" target="-1" id="4Si-XN-c54"/> 77 <action selector="openDocument:" target="-1" id="bVn-NM-KNZ"/> 87 … <action selector="clearRecentDocuments:" target="-1" id="Daa-9d-B3U"/> 96 <action selector="performClose:" target="-1" id="HmO-Ls-i7Q"/> 101 <action selector="saveDocument:" target="-1" id="teZ-XB-qJY"/> [all …]
|
| /third_party/googletest/googlemock/include/gmock/ |
| D | gmock-actions.h | 32 // The ACTION* family of macros can be used in a namespace scope to 35 // ACTION(name) { statements; } 37 // will define an action with the given name that executes the 39 // the return value of the action. Inside the statements, you can 43 // ACTION(IncrementArg1) { 62 // Sometimes you'll want to parameterize the action. For that you can use 105 // While it's tempting to always use the ACTION* macros when defining 106 // a new action, you should also consider implementing ActionInterface 108 // use the action a lot. While these approaches require more work, 110 // arguments and the action parameters, which in general leads to [all …]
|
| /third_party/googletest/googlemock/test/ |
| D | gmock-more-actions_test.cc | 55 using testing::Action; 193 Action<int()> a = Invoke(Nullary); // NOLINT in TEST() 199 Action<bool(int)> a = Invoke(Unary); // NOLINT in TEST() 206 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT in TEST() 213 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT in TEST() 219 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT in TEST() 225 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT in TEST() 231 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT in TEST() 242 Action<std::string(const char*, const char*, const char*, const char*, in TEST() 253 Action<std::string(const char*, const char*, const char*, const char*, in TEST() [all …]
|
| /third_party/node/tools/ |
| D | install.py | 83 def package_files(action, name, bins): argument 96 action(paths, target_path + dirname[len(root) + 1:] + '/') 101 if action == uninstall: 102 action([link_path], 'bin/' + bin_name) 103 elif action == install: 106 assert 0 # unhandled action type 108 def npm_files(action): argument 109 package_files(action, 'npm', { 114 def corepack_files(action): argument 115 package_files(action, 'corepack', { [all …]
|
| /third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
| D | lp_bld_tgsi_action.c | 24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 92 const struct lp_build_tgsi_action * action, in add_emit() argument 104 const struct lp_build_tgsi_action * action, in arr_emit() argument 142 const struct lp_build_tgsi_action * action, in dp2_emit() argument 173 const struct lp_build_tgsi_action * action, in dp3_emit() argument 209 const struct lp_build_tgsi_action * action, in dp4_emit() argument 259 const struct lp_build_tgsi_action * action, in dst_emit() argument 286 const struct lp_build_tgsi_action * action, in end_emit() argument 297 const struct lp_build_tgsi_action * action, in exp_emit() argument 331 const struct lp_build_tgsi_action * action, in frc_emit() argument [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/Retired/ |
| D | fixupRef.py | 73 # 'action' : 'begin' or 'end'. What to do on a refBegin or refEnd line 93 'action' : 'begin', 100 'action' : 'begin', 108 'action' : 'end', 115 'action' : 'end', 137 action = actions[line]['action'] 141 logDiag('ACTION:', action, 'REPLACE:', replace, 'at line', line) 142 logDiag('PageInfo of action:') 145 if action == 'begin': 149 elif action == 'end': [all …]
|
| /third_party/gn/src/gn/ |
| D | ninja_target_writer_unittest.cc | 39 // Make a base target that's a hard dep (action). in TEST() 41 base_target.set_output_type(Target::ACTION); in TEST() 61 // Make a base target that's a hard dep (action). in TEST() 63 base_target.set_output_type(Target::ACTION); in TEST() 81 // Make a base target that's a hard dep (action). in TEST() 83 base_target.set_output_type(Target::ACTION); in TEST() 98 // Dependent action to test that action sources will be treated the same as in TEST() 100 Target action(setup.settings(), Label(SourceDir("//foo/"), "action")); in TEST() local 101 action.set_output_type(Target::ACTION); in TEST() 102 action.visibility().SetPublic(); in TEST() [all …]
|
| /third_party/rust/crates/clap/tests/builder/ |
| D | derive_order.rs | 28 .action(ArgAction::SetTrue), in no_derive_order() 31 .action(ArgAction::Set) in no_derive_order() 36 .action(ArgAction::SetTrue), in no_derive_order() 39 .action(ArgAction::Set) in no_derive_order() 64 .action(ArgAction::SetTrue), in derive_order() 67 .action(ArgAction::Set) in derive_order() 72 .action(ArgAction::SetTrue), in derive_order() 75 .action(ArgAction::Set) in derive_order() 103 .action(ArgAction::SetTrue), in derive_order_next_order() 108 .action(ArgAction::Set) in derive_order_next_order() [all …]
|
| D | require.rs | 24 .action(ArgAction::SetTrue), in flag_required_2() 26 .arg(arg!(-c --color "third flag").action(ArgAction::SetTrue)) in flag_required_2() 162 .arg(arg!(-f --flag "some flag").action(ArgAction::SetTrue)) in group_required_2() 164 .arg(arg!(--some "some arg").action(ArgAction::SetTrue)) in group_required_2() 165 .arg(arg!(--other "other arg").action(ArgAction::SetTrue)) in group_required_2() 176 .arg(arg!(-f --flag "some flag").action(ArgAction::SetTrue)) in group_required_3() 178 .arg(arg!(--some "some arg").action(ArgAction::SetTrue)) in group_required_3() 179 .arg(arg!(--other "other arg").action(ArgAction::SetTrue)) in group_required_3() 206 .action(ArgAction::SetTrue), in arg_require_group_2() 209 .arg(arg!(--some "some arg").action(ArgAction::SetTrue)) in arg_require_group_2() [all …]
|
| /third_party/typescript/tests/cases/compiler/ |
| D | recursiveArrayNotCircular.ts | 1 type Action<T, P> = P extends void ? { type : T } : { type: T, payload: P } alias 11 | Action<ActionType.Bar, number> 12 | Action<ActionType.Baz, boolean> 13 | Action<ActionType.Foo, string> 14 | Action<ActionType.Batch, ReducerAction[]> 20 function reducer(action: ReducerAction): void { 21 switch(action.type) { 23 const x: number = action.payload; 26 const y: boolean = action.payload; 29 const z: string = action.payload; [all …]
|