/external/libxkbcommon/xkbcommon/test/data/compat/ |
D | mousekeys | 13 action = MovePtr(x=-1,y= +1); 16 action = MovePtr(x=-1,y= +1); 20 action = MovePtr(x=+0,y= +1); 23 action = MovePtr(x=+0,y= +1); 27 action = MovePtr(x=+1,y=+1); 30 action = MovePtr(x=+1,y=+1); 34 action = MovePtr(x=-1,y=+0); 37 action = MovePtr(x=-1,y=+0); 41 action = MovePtr(x=+1,y=+0); 44 action = MovePtr(x=+1,y=+0); [all …]
|
D | xfree86 | 8 action = SwitchScreen(Screen=1, !SameServer); 11 action = SwitchScreen(Screen=2, !SameServer); 14 action = SwitchScreen(Screen=3, !SameServer); 17 action = SwitchScreen(Screen=4, !SameServer); 20 action = SwitchScreen(Screen=5, !SameServer); 23 action = SwitchScreen(Screen=6, !SameServer); 26 action = SwitchScreen(Screen=7, !SameServer); 29 action = SwitchScreen(Screen=8, !SameServer); 32 action = SwitchScreen(Screen=9, !SameServer); 35 action = SwitchScreen(Screen=10, !SameServer); [all …]
|
/external/adhd/cras/src/tests/ |
D | ramp_unittest.cc | 24 struct cras_ramp_action action; in TEST() local 29 action = cras_ramp_get_current_action(ramp); in TEST() 31 EXPECT_EQ(action.type, CRAS_RAMP_ACTION_NONE); in TEST() 32 EXPECT_FLOAT_EQ(1.0, action.scaler); in TEST() 33 EXPECT_FLOAT_EQ(0.0, action.increment); in TEST() 43 cras_ramp_action action; in TEST() local 50 action = cras_ramp_get_current_action(ramp); in TEST() 52 EXPECT_EQ(CRAS_RAMP_ACTION_PARTIAL, action.type); in TEST() 53 EXPECT_FLOAT_EQ(0.0, action.scaler); in TEST() 54 EXPECT_FLOAT_EQ(increment, action.increment); in TEST() [all …]
|
/external/python/cpython3/Lib/ |
D | argparse.py | 258 def add_argument(self, action): argument 259 if action.help is not SUPPRESS: 263 invocations = [get_invocation(action)] 264 for subaction in self._iter_indented_subactions(action): 274 self._add_item(self._format_action, [action]) 277 for action in actions: 278 self.add_argument(action) 314 for action in actions: 315 if action.option_strings: 316 optionals.append(action) [all …]
|
/external/pdfium/fpdfsdk/ |
D | fsdk_actionhandler.cpp | 24 const CPDF_Action& action, in DoAction_DocOpen() argument 27 return ExecuteDocumentOpenAction(action, pFormFillEnv, &visited); in DoAction_DocOpen() 64 const CPDF_Action& action, in DoAction_Page() argument 68 return ExecuteDocumentPageAction(action, eType, pFormFillEnv, &visited); in DoAction_Page() 72 const CPDF_Action& action, in DoAction_Document() argument 76 return ExecuteDocumentPageAction(action, eType, pFormFillEnv, &visited); in DoAction_Document() 81 const CPDF_Action& action, in DoAction_BookMark() argument 85 return ExecuteBookMark(action, pFormFillEnv, pBookMark, &visited); in DoAction_BookMark() 89 const CPDF_Action& action, in DoAction_Screen() argument 94 return ExecuteScreenAction(action, type, pFormFillEnv, pScreen, &visited); in DoAction_Screen() [all …]
|
D | fsdk_actionhandler.h | 26 bool DoAction_DocOpen(const CPDF_Action& action, 31 bool DoAction_Page(const CPDF_Action& action, 34 bool DoAction_Document(const CPDF_Action& action, 38 const CPDF_Action& action, 41 bool DoAction_Screen(const CPDF_Action& action, 45 bool DoAction_Link(const CPDF_Action& action, 47 bool DoAction_Field(const CPDF_Action& action, 59 bool ExecuteDocumentOpenAction(const CPDF_Action& action, 62 bool ExecuteDocumentPageAction(const CPDF_Action& action, 66 bool ExecuteFieldAction(const CPDF_Action& action, [all …]
|
/external/python/cpython2/Lib/ |
D | argparse.py | 255 def add_argument(self, action): argument 256 if action.help is not SUPPRESS: 260 invocations = [get_invocation(action)] 261 for subaction in self._iter_indented_subactions(action): 271 self._add_item(self._format_action, [action]) 274 for action in actions: 275 self.add_argument(action) 311 for action in actions: 312 if action.option_strings: 313 optionals.append(action) [all …]
|
/external/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 …]
|
/external/skqp/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 …]
|
/external/autotest/server/ |
D | autoserv_parser.py | 33 self.parser.add_argument('-m', action='store', type=str, 36 self.parser.add_argument('-M', action='store', type=str, 39 self.parser.add_argument('-c', action='store_true', 42 self.parser.add_argument('-s', action='store_true', 45 self.parser.add_argument('-r', action='store', type=str, 48 self.parser.add_argument('-l', action='store', type=str, 51 self.parser.add_argument('-G', action='store', type=str, 54 self.parser.add_argument('-u', action='store', type=str, 58 self.parser.add_argument('-P', action='store', type=str, 63 self.parser.add_argument('--execution-tag', action='store', [all …]
|
/external/u-boot/tools/buildman/ |
D | cmdline.py | 19 action='store_true', default=False, 24 action='store_true', default=False, 27 action='store_true', default=False, 29 parser.add_option('-D', '--config-only', action='store_true', default=False, 31 parser.add_option('-e', '--show_errors', action='store_true', 33 parser.add_option('-E', '--warnings-as-errors', action='store_true', 36 action='store_true', default=False, 39 action='store_true', default=False, 49 parser.add_option('-H', '--full-help', action='store_true', dest='full_help', 52 action='store_true', default=False, [all …]
|
/external/libxkbcommon/xkbcommon/src/xkbcomp/ |
D | action.c | 191 ReportMismatch(struct xkb_context *ctx, enum xkb_action_type action, in ReportMismatch() argument 197 fieldText(field), type, ActionTypeText(action)); in ReportMismatch() 202 ReportIllegal(struct xkb_context *ctx, enum xkb_action_type action, in ReportIllegal() argument 208 fieldText(field), ActionTypeText(action)); in ReportIllegal() 213 ReportActionNotArray(struct xkb_context *ctx, enum xkb_action_type action, in ReportActionNotArray() argument 219 fieldText(field), ActionTypeText(action)); in ReportActionNotArray() 225 union xkb_action *action, enum action_field field, in HandleNoAction() argument 233 CheckBooleanFlag(struct xkb_context *ctx, enum xkb_action_type action, in CheckBooleanFlag() argument 241 return ReportActionNotArray(ctx, action, field); in CheckBooleanFlag() 244 return ReportMismatch(ctx, action, field, "boolean"); in CheckBooleanFlag() [all …]
|
D | keymap-dump.c | 293 const union xkb_action *action, in write_action() argument 304 type = ActionTypeText(action->type); in write_action() 306 switch (action->type) { in write_action() 310 if (action->mods.flags & ACTION_MODS_LOOKUP_MODMAP) in write_action() 314 action->mods.mods.mods); in write_action() 316 …(action->type != ACTION_TYPE_MOD_LOCK && (action->mods.flags & ACTION_LOCK_CLEAR)) ? ",clearLocks"… in write_action() 317 …(action->type != ACTION_TYPE_MOD_LOCK && (action->mods.flags & ACTION_LATCH_TO_LOCK)) ? ",latchToL… in write_action() 318 … (action->type == ACTION_TYPE_MOD_LOCK) ? affect_lock_text(action->mods.flags) : "", in write_action() 326 … (!(action->group.flags & ACTION_ABSOLUTE_SWITCH) && action->group.group > 0) ? "+" : "", in write_action() 327 … (action->group.flags & ACTION_ABSOLUTE_SWITCH) ? action->group.group + 1 : action->group.group, in write_action() [all …]
|
/external/autotest/server/cros/cfm/configurable_test/ |
D | actions_unittest.py | 41 action = actions.AssertFileDoesNotContain('/foo', ['EE', 'WW']) 44 action.execute(context) 47 action = actions.AssertFileDoesNotContain('/foo', ['EE', 'WW']) 50 self.assertRaises(AssertionError, lambda: action.execute(context)) 53 action = actions.AssertFileDoesNotContain('/foo', ['EE', 'W{3}Q+']) 56 self.assertRaises(AssertionError, lambda: action.execute(context)) 59 action = actions.RebootDut() 60 action.execute(self.context_with_mocks) 65 action = actions.RebootDut(restart_chrome_for_cfm=True) 66 action.execute(self.context_with_mocks) [all …]
|
/external/libxkbcommon/xkbcommon/test/data/keymaps/ |
D | no-types.xkb | 309 action= LatchMods(modifiers=Shift,clearLocks,latchToLock); 312 action= LockMods(modifiers=Shift); 316 action= LockMods(modifiers=NumLock); 319 action= NoAction(); 324 action= SetMods(modifiers=LevelThree,clearLocks); 329 action= LatchMods(modifiers=LevelThree,clearLocks,latchToLock); 334 action= LockMods(modifiers=LevelThree); 338 action= SetMods(modifiers=modMapMods,clearLocks); 342 action= SetMods(modifiers=modMapMods,clearLocks); 346 action= SetMods(modifiers=modMapMods,clearLocks); [all …]
|
D | quartz.xkb | 311 action= LatchMods(modifiers=Shift,clearLocks,latchToLock); 314 action= LockMods(modifiers=Shift); 318 action= LockMods(modifiers=NumLock); 321 action= ISOLock(modifiers=modMapMods,affect=all); 326 action= SetMods(modifiers=LevelThree,clearLocks); 331 action= LatchMods(modifiers=LevelThree,clearLocks,latchToLock); 336 action= LockMods(modifiers=LevelThree); 340 action= SetMods(modifiers=modMapMods,clearLocks); 344 action= SetMods(modifiers=modMapMods,clearLocks); 348 action= SetMods(modifiers=modMapMods,clearLocks); [all …]
|
/external/adhd/cras/src/server/ |
D | cras_ramp.c | 73 struct cras_ramp_action action; in cras_ramp_start() local 76 action = cras_ramp_get_current_action(ramp); in cras_ramp_start() 77 if (action.type == CRAS_RAMP_ACTION_INVALID) in cras_ramp_start() 84 if (action.type == CRAS_RAMP_ACTION_NONE) in cras_ramp_start() 87 ramp->start_scaler = action.scaler; in cras_ramp_start() 91 if (action.type == CRAS_RAMP_ACTION_NONE) in cras_ramp_start() 94 ramp->start_scaler = action.scaler; in cras_ramp_start() 107 struct cras_ramp_action action; in cras_ramp_get_current_action() local 110 action.type = CRAS_RAMP_ACTION_INVALID; in cras_ramp_get_current_action() 111 action.scaler = 1.0; in cras_ramp_get_current_action() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | StateMachine.java | 40 short action = -1; field in StateMachine.StateAction 47 && action == that.action; in equals() 78 protected String getActionName(short action) { in getActionName() argument 79 return stateMachine.getActionName(action); in getActionName() 82 protected void handle(int position, StateAction action) { in handle() argument 98 public String toString(StateAction action) { in toString() argument 100 + (action.advanceToNextCodePoint ? "+" : "") in toString() 101 + getStateName(action.nextState) in toString() 102 … + (action.pushState == StateMachine.UNDEFINED ? "" : " ^" + getStateName(action.pushState)) in toString() 103 + (action.action < 0 ? "" : " " + getActionName(action.action)) in toString() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | modify_config.txt | 1 locale=ia; action=add; new_path=//ldml/dates/calendars/calendar[@type="gregorian"]/dateTimeFormats/… 2 locale=ia; action=add; new_path=//ldml/dates/calendars/calendar[@type="gregorian"]/dateTimeFormats/… 3 locale=ia; action=add; new_path=//ldml/dates/fields/field[@type="year"]/relativeTime[@type="future"… 4 locale=ia; action=add; new_path=//ldml/dates/fields/field[@type="year"]/relativeTime[@type="past"]/… 5 locale=ia; action=add; new_path=//ldml/dates/fields/field[@type="year-short"]/relativeTime[@type="f… 6 locale=ia; action=add; new_path=//ldml/dates/fields/field[@type="year-short"]/relativeTime[@type="p… 7 locale=ia; action=add; new_path=//ldml/dates/fields/field[@type="year-narrow"]/relativeTime[@type="… 8 locale=ia; action=add; new_path=//ldml/dates/fields/field[@type="year-narrow"]/relativeTime[@type="… 9 locale=ia; action=add; new_path=//ldml/dates/fields/field[@type="quarter"]/relativeTime[@type="futu… 10 locale=ia; action=add; new_path=//ldml/dates/fields/field[@type="quarter"]/relativeTime[@type="past… [all …]
|
/external/vogar/src/vogar/android/ |
D | InstallApkTask.java | 34 private final Action action; field in InstallApkTask 38 public InstallApkTask(Run run, Action action, File jar) { in InstallApkTask() argument 39 super("aapt and push " + action.getName()); in InstallApkTask() 40 this.action = action; in InstallApkTask() 54 File dex = createDex(action, jar); in execute() 55 File apk = createApk(action, dex); in execute() 57 installApk(action, apk); in execute() 65 private File createDex(Action action, File actionJar) { in createDex() argument 66 File dex = run.localFile(action, "classes.dex"); in createDex() 70 File localTempDir = run.localDir(action.getName()); in createDex() [all …]
|
/external/antlr/tool/src/test/java/org/antlr/test/ |
D | TestAttributes.java | 60 String action = "i<3; '<xmltag>'"; in testEscapedLessThanInAction() local 62 new CommonToken(ANTLRParser.ACTION,action),0); in testEscapedLessThanInAction() 63 String expecting = action; in testEscapedLessThanInAction() 75 String action = "int \\$n; \"\\$in string\\$\""; in testEscaped$InAction() local 79 "@members {"+action+"}\n"+ in testEscaped$InAction() 81 " : {"+action+"}\n" + in testEscaped$InAction() 90 new CommonToken(ANTLRParser.ACTION,action),0); in testEscaped$InAction() 95 String action = "$i; $i.x; $u; $u.x"; in testArguments() local 103 " : {"+action+"}\n" + in testArguments() 110 new CommonToken(ANTLRParser.ACTION,action),1); in testArguments() [all …]
|
/external/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 …]
|
/external/libtextclassifier/actions/ |
D | ranker.cc | 103 int CompareAnnotationsOnly(const ActionSuggestion& action, in CompareAnnotationsOnly() argument 106 Compare(action.annotations.size(), other.annotations.size())) { in CompareAnnotationsOnly() 109 for (int i = 0; i < action.annotations.size(); i++) { in CompareAnnotationsOnly() 111 Compare(action.annotations[i], other.annotations[i])) { in CompareAnnotationsOnly() 119 bool HaveEquivalentAnnotations(const ActionSuggestion& action, in HaveEquivalentAnnotations() argument 121 return CompareAnnotationsOnly(action, other) == 0; in HaveEquivalentAnnotations() 125 int Compare(const ActionSuggestion& action, const ActionSuggestion& other) { in Compare() argument 126 if (const int value = Compare(action.type, other.type)) { in Compare() 129 if (const int value = Compare(action.response_text, other.response_text)) { in Compare() 132 if (const int value = Compare(action.serialized_entity_data, in Compare() [all …]
|
/external/selinux/prebuilts/bin/ |
D | sesearch.py | 29 parser.add_argument("--version", action="version", version=setools.__version__) 31 parser.add_argument("-v", "--verbose", action="store_true", 33 parser.add_argument("--debug", action="store_true", dest="debug", help="Enable debugging.") 36 rtypes.add_argument("-A", action="store_true", help="Search allow and allowxperm rules.") 37 rtypes.add_argument("--allow", action="append_const", 40 rtypes.add_argument("--allowxperm", action="append_const", 43 rtypes.add_argument("--auditallow", action="append_const", 46 rtypes.add_argument("--auditallowxperm", action="append_const", 49 rtypes.add_argument("--dontaudit", action="append_const", 52 rtypes.add_argument("--dontauditxperm", action="append_const", [all …]
|
/external/selinux/python/semanage/ |
D | semanage | 188 handle_opts(args, login_args, args.action) 192 if args.action == "add": 194 if args.action == "modify": 196 if args.action == "delete": 198 if args.action == "list": 200 if args.action == "deleteall": 202 if args.action == "extract": 216 …parser.add_argument('-n', '--noheading', action='store_false', default=True, help=_("Do not print … 220 …parser.add_argument('-N', '--noreload', action='store_true', default=False, help=_('Do not reload … 224 …parser.add_argument('-C', '--locallist', action='store_true', default=False, help=_("List %s local… [all …]
|