/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/ntfs-3g/ntfsprogs/ |
D | playlog.c | 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() 888 attrend = le16_to_cpu(action->record.record_offset) in change_resident() 905 err = write_protected(vol, &action->record, in change_resident() 916 static int change_resident_expect(ntfs_volume *vol, const struct ACTION_RECORD *action, in change_resident_expect() argument 926 if (action->record.undo_length != action->record.redo_length) in change_resident_expect() 929 lcn = sle64_to_cpu(action->record.lcn_list[0]); in change_resident_expect() [all …]
|
/third_party/python/Lib/ |
D | argparse.py | 257 def add_argument(self, action): argument 258 if action.help is not SUPPRESS: 262 invocations = [get_invocation(action)] 263 for subaction in self._iter_indented_subactions(action): 273 self._add_item(self._format_action, [action]) 276 for action in actions: 277 self.add_argument(action) 313 for action in actions: 314 if action.option_strings: 315 optionals.append(action) [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/flutter/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/flutter/skia/third_party/externals/sdl/visualtest/src/ |
D | action_configparser.c | 16 FreeAction(SDLVisualTest_Action* action) in FreeAction() argument 18 if(!action) in FreeAction() 20 switch(action->type) in FreeAction() 27 path = action->extra.process.path; in FreeAction() 28 args = action->extra.process.args; in FreeAction() 35 action->extra.process.path = NULL; in FreeAction() 36 action->extra.process.args = NULL; in FreeAction() 44 SDLVisualTest_Action action) in SDLVisualTest_EnqueueAction() argument 60 node->action = action; in SDLVisualTest_EnqueueAction() 89 FreeAction(&queue->front->action); in SDLVisualTest_DequeueAction() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/events/ |
D | SDL_quit.c | 55 struct sigaction action; local 56 sigaction(SIGINT, NULL, &action); 58 if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL ) { 60 if ( action.sa_handler == SIG_DFL ) { 62 action.sa_handler = SDL_HandleSIG; 63 sigaction(SIGINT, &action, NULL); 65 sigaction(SIGTERM, NULL, &action); 68 if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL ) { 70 if ( action.sa_handler == SIG_DFL ) { 72 action.sa_handler = SDL_HandleSIG; [all …]
|
/third_party/node/tools/ |
D | install.py | 82 def package_files(action, name, bins): argument 95 action(paths, target_path + dirname[len(root) + 1:] + '/') 100 if action == uninstall: 101 action([link_path], 'bin/' + bin_name) 102 elif action == install: 107 def npm_files(action): argument 108 package_files(action, 'npm', { 113 def corepack_files(action): argument 114 package_files(action, 'corepack', { 123 def subdir_files(path, dest, action): argument [all …]
|
/third_party/rust/crates/clap/tests/builder/ |
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 …]
|
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 | indices.rs | 10 .action(ArgAction::Set) in indices_mult_opts() 12 .action(ArgAction::Append), in indices_mult_opts() 17 .action(ArgAction::Set) in indices_mult_opts() 37 .action(ArgAction::Set) in index_mult_opts() 39 .action(ArgAction::Append), in index_mult_opts() 44 .action(ArgAction::Set) in index_mult_opts() 58 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue)) in index_flag() 59 .arg(Arg::new("include").short('i').action(ArgAction::SetTrue)) in index_flag() 71 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue)) in index_flags() 72 .arg(Arg::new("include").short('i').action(ArgAction::SetTrue)) in index_flags() [all …]
|
D | occurrences.rs | 16 .action(ArgAction::Set) in grouped_value_works() 18 .action(ArgAction::Append), in grouped_value_works() 43 .arg(Arg::new("server").short('s').action(ArgAction::Set)) in issue_1026() 44 .arg(Arg::new("user").short('u').action(ArgAction::Set)) in issue_1026() 48 .action(ArgAction::Set) in issue_1026() 50 .action(ArgAction::Append), in issue_1026() 75 .action(ArgAction::Set) in grouped_value_long_flag_delimiter() 78 .action(ArgAction::Append), in grouped_value_long_flag_delimiter() 105 .action(ArgAction::Set) in grouped_value_short_flag_delimiter() 108 .action(ArgAction::Append), in grouped_value_short_flag_delimiter() [all …]
|
/third_party/node/deps/npm/node_modules/npm-audit-report/reporters/ |
D | parseable.js | 21 data.actions.forEach((action) => { 24 if (action.action === 'update' || action.action === 'install') { 25 const recommendation = getRecommendation(action, config) 29 action.resolves.forEach((resolution) => { 38 …accumulator[advisory.severity] += [action.action, l.package, l.sevLevel, l.recommendation, l.sever… 43 if (action.action === 'review') { 44 action.resolves.forEach((resolution) => { 54 …accumulator[advisory.severity] += [action.action, l.package, l.sevLevel, l.patchedIn, l.severity, … 83 const getRecommendation = function (action, config) { argument 84 if (action.action === 'install') { [all …]
|
D | detail.js | 47 const counts = data.actions.reduce((acc, {action, isMajor, resolves}) => { property 48 if (action === 'update' || (action === 'install' && !isMajor)) { 54 if (action === 'review') { 95 data.actions.forEach((action) => { 96 if (action.action === 'update' || action.action === 'install') { 97 const recommendation = getRecommendation(action, config) 98 const label = action.resolves.length === 1 ? 'vulnerability' : 'vulnerabilities' 99 …' + recommendation.cmd + ' ', 'inverse', config.withColor)} to resolve ${action.resolves.length} $… 104 action.resolves.forEach((resolution) => { 126 if (action.action === 'review') { [all …]
|
/third_party/css-what/src/__fixtures__/ |
D | tests.ts | 150 action: AttributeAction.Equals, constant 175 action: AttributeAction.Element, 191 action: AttributeAction.Element, 232 action: AttributeAction.Equals, constant 252 action: AttributeAction.Start, constant 268 action: AttributeAction.Start, constant 284 action: AttributeAction.End, constant 300 action: AttributeAction.Any, constant 316 action: AttributeAction.Equals, constant 332 action: AttributeAction.Equals, constant [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | recursiveArrayNotCircular.types | 49 function reducer(action: ReducerAction): void { 50 >reducer : (action: ReducerAction) => void 51 >action : ReducerAction 53 switch(action.type) { 54 >action.type : ActionType 55 >action : ReducerAction 63 const x: number = action.payload; 65 >action.payload : number 66 >action : { type: ActionType.Bar; payload: number; } 75 const y: boolean = action.payload; [all …]
|
D | recursiveArrayNotCircular.js | 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; 33 action.payload.map(reducer); 35 default: return assertNever(action); 50 function reducer(action) { argument 51 switch (action.type) { 53 var x = action.payload; [all …]
|
D | recursiveArrayNotCircular.symbols | 62 function reducer(action: ReducerAction): void { 64 >action : Symbol(action, Decl(recursiveArrayNotCircular.ts, 19, 17)) 67 switch(action.type) { 68 >action.type : Symbol(type, Decl(recursiveArrayNotCircular.ts, 0, 53), Decl(recursiveArrayNotCircul… 69 >action : Symbol(action, Decl(recursiveArrayNotCircular.ts, 19, 17)) 77 const x: number = action.payload; 79 >action.payload : Symbol(payload, Decl(recursiveArrayNotCircular.ts, 0, 62)) 80 >action : Symbol(action, Decl(recursiveArrayNotCircular.ts, 19, 17)) 89 const y: boolean = action.payload; 91 >action.payload : Symbol(payload, Decl(recursiveArrayNotCircular.ts, 0, 62), Decl(recursiveArrayNot… [all …]
|
/third_party/node/ |
D | configure.py | 83 action='store', 89 action='store_true', 94 action='store_true', 99 action='store_true', 104 action='store', 110 action='store_true', 115 action='store_false', 121 action='store', 127 action='store_true', 132 action='store_true', [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_tgsi_action.c | 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 393 const struct lp_build_tgsi_action * action, in lit_emit() argument [all …]
|
/third_party/cef/libcef/browser/net/ |
D | internal_scheme_handler.cc | 162 InternalHandlerDelegate::Action action; in Create() local 163 if (delegate_->OnRequest(browser, request, &action)) { in Create() 164 if (!action.redirect_url.is_empty() && action.redirect_url.is_valid()) in Create() 165 return new RedirectHandler(action.redirect_url); in Create() 167 if (action.mime_type.empty()) in Create() 168 action.mime_type = GetMimeType(url.path()); in Create() 170 if (!action.bytes && action.resource_id >= 0) { in Create() 173 action.resource_id); in Create() 176 << action.resource_id << " URL: " << url.spec().c_str(); in Create() 179 action.bytes = base::RefCountedString::TakeString(&str); in Create() [all …]
|
/third_party/skia/third_party/externals/expat/expat/xmlwf/ |
D | xmlwf_helpgen.py | 59 input_related.add_argument('-s', action='store_true', help='print an error if the document is not [… 60 input_related.add_argument('-n', action='store_true', help='enable [n]amespace processing') 61 input_related.add_argument('-p', action='store_true', help='enable processing external DTDs and [p]… 62 input_related.add_argument('-x', action='store_true', help='enable processing of e[x]ternal entitie… 63 input_related.add_argument('-e', action='store', metavar='ENCODING', help='override any in-document… 64 input_related.add_argument('-w', action='store_true', help='enable support for [W]indows code pages… 65 input_related.add_argument('-r', action='store_true', help='disable memory-mapping and use normal f… 66 input_related.add_argument('-k', action='store_true', help='when processing multiple files, [k]eep … 69 output_related.add_argument('-d', action='store', metavar='DIRECTORY', help='output [d]estination d… 71 output_mode.add_argument('-c', action='store_true', help='write a [c]opy of input XML, not canonica… [all …]
|
/third_party/python/Lib/test/libregrtest/ |
D | cmdline.py | 198 group.add_argument('-h', '--help', action='help', 204 group.add_argument('--wait', action='store_true', 213 group.add_argument('-v', '--verbose', action='count', 215 group.add_argument('-w', '--verbose2', action='store_true', 217 group.add_argument('-W', '--verbose3', action='store_true', 219 group.add_argument('-q', '--quiet', action='store_true', 221 group.add_argument('-o', '--slowest', action='store_true', dest='print_slow', 223 group.add_argument('--header', action='store_true', 227 group.add_argument('-r', '--randomize', action='store_true', 236 group.add_argument('-x', '--exclude', action='store_true', [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
D | wnm_ap.c | 151 mgmt->u.action.category = WLAN_ACTION_WNM; in ieee802_11_send_wnmsleep_resp() 152 mgmt->u.action.u.wnm_sleep_resp.action = WNM_SLEEP_MODE_RESP; in ieee802_11_send_wnmsleep_resp() 153 mgmt->u.action.u.wnm_sleep_resp.dialogtoken = dialog_token; in ieee802_11_send_wnmsleep_resp() 154 pos = (u8 *)mgmt->u.action.u.wnm_sleep_resp.variable; in ieee802_11_send_wnmsleep_resp() 159 mgmt->u.action.u.wnm_sleep_resp.keydata_len = 0; in ieee802_11_send_wnmsleep_resp() 185 &mgmt->u.action.u.wnm_sleep_resp.keydata_len, in ieee802_11_send_wnmsleep_resp() 201 len = 1 + sizeof(mgmt->u.action.u.wnm_sleep_resp) + gtk_elem_len + in ieee802_11_send_wnmsleep_resp() 208 mgmt->da, &mgmt->u.action.category, len); in ieee802_11_send_wnmsleep_resp() 381 mgmt->u.action.category = WLAN_ACTION_WNM; in ieee802_11_send_bss_trans_mgmt_request() 382 mgmt->u.action.u.bss_tm_req.action = WNM_BSS_TRANS_MGMT_REQ; in ieee802_11_send_bss_trans_mgmt_request() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
D | wnm_ap.c | 139 mgmt->u.action.category = WLAN_ACTION_WNM; in ieee802_11_send_wnmsleep_resp() 140 mgmt->u.action.u.wnm_sleep_resp.action = WNM_SLEEP_MODE_RESP; in ieee802_11_send_wnmsleep_resp() 141 mgmt->u.action.u.wnm_sleep_resp.dialogtoken = dialog_token; in ieee802_11_send_wnmsleep_resp() 142 pos = (u8 *)mgmt->u.action.u.wnm_sleep_resp.variable; in ieee802_11_send_wnmsleep_resp() 147 mgmt->u.action.u.wnm_sleep_resp.keydata_len = 0; in ieee802_11_send_wnmsleep_resp() 164 &mgmt->u.action.u.wnm_sleep_resp.keydata_len, in ieee802_11_send_wnmsleep_resp() 180 len = 1 + sizeof(mgmt->u.action.u.wnm_sleep_resp) + gtk_elem_len + in ieee802_11_send_wnmsleep_resp() 186 mgmt->da, &mgmt->u.action.category, len); in ieee802_11_send_wnmsleep_resp() 357 mgmt->u.action.category = WLAN_ACTION_WNM; in ieee802_11_send_bss_trans_mgmt_request() 358 mgmt->u.action.u.bss_tm_req.action = WNM_BSS_TRANS_MGMT_REQ; in ieee802_11_send_bss_trans_mgmt_request() [all …]
|