Home
last modified time | relevance | path

Searched refs:action (Results 1 – 25 of 473) sorted by relevance

12345678910>>...19

/llvm-project-15.0.7/polly/utils/
H A Dargparse.py129 action='ignore',
455 part = self._format_args(action, action.dest)
482 if not action.required and action not in group_actions:
563 metavar, = self._metavar_formatter(action, action.dest)(1)
1259 action.default = kwargs[action.dest]
1263 if action.dest == dest and action.default is not None:
1383 group_map.get(action, self)._add_action(action)
1438 return self._registry_get('action', action, action)
1482 action.container._remove_action(action)
1509 action = super(_ArgumentGroup, self)._add_action(action)
[all …]
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.cpp44 FileAction action; in SetOptionValue() local
46 launch_info.AppendFileAction(action); in SetOptionValue()
52 FileAction action; in SetOptionValue() local
54 launch_info.AppendFileAction(action); in SetOptionValue()
60 FileAction action; in SetOptionValue() local
62 launch_info.AppendFileAction(action); in SetOptionValue()
72 FileAction action; in SetOptionValue() local
74 if (action.Open(STDIN_FILENO, dev_null, true, false)) in SetOptionValue()
75 launch_info.AppendFileAction(action); in SetOptionValue()
77 launch_info.AppendFileAction(action); in SetOptionValue()
[all …]
/llvm-project-15.0.7/mlir/docs/
H A DDebugActions.md13 * Compiler developer defines an [`action`](#debug-action) that is taken by the
16 to this action, to an [`action manager`](#debug-action-manager) that will
18 * An external entity registers an [`action handler`](#debug-action-handler)
24 [`action manager`](#debug-action-manager) section below.
28 A `debug action` is essentially a marker for a type of action that may be
31 pass pipeline”. An action is comprised of the following:
40 - A short description of what the action represents.
47 Below is an example action that may be provided by the
73 [action handlers](#debug-action-handler). When resolving a query for an action,
120 action related queries within the [`DebugActionManager`](#debug-action-manager).
[all …]
/llvm-project-15.0.7/libc/test/src/signal/
H A Dsigaction_test.cpp28 struct __sigaction action; in TEST() local
29 EXPECT_THAT(__llvm_libc::sigaction(SIGKILL, nullptr, &action), Succeeds()); in TEST()
40 struct __sigaction action; in TEST() local
41 EXPECT_THAT(__llvm_libc::sigaction(SIGUSR1, nullptr, &action), Succeeds()); in TEST()
43 action.sa_handler = +[](int signal) { in TEST()
47 EXPECT_THAT(__llvm_libc::sigaction(SIGUSR1, &action, nullptr), Succeeds()); in TEST()
53 action.sa_handler = SIG_DFL; in TEST()
54 EXPECT_THAT(__llvm_libc::sigaction(SIGUSR1, &action, nullptr), Succeeds()); in TEST()
60 struct __sigaction action; in TEST() local
61 EXPECT_THAT(__llvm_libc::sigaction(SIGUSR1, nullptr, &action), Succeeds()); in TEST()
[all …]
/llvm-project-15.0.7/llvm/utils/lit/lit/
H A Dcl_arguments.py26 action='version',
43 action="append",
51 action="store_true")
56 action="store_true")
60 action="store_true")
63 action="store_true",
69 action="store_true")
94 action="append",
100 action="store_true")
104 action="store_true")
[all …]
/llvm-project-15.0.7/clang/utils/analyzer/
H A DSATest.py224 add_parser.add_argument("--origin", action="store", default="",
226 add_parser.add_argument("--commit", action="store", default="",
273 action="store", type=str, default="")
277 action="store", type=str, default="")
283 cmp_parser.add_argument("--stats-only", action="store_true",
286 cmp_parser.add_argument("--show-stats", action="store_true",
301 upd_parser.add_argument("--git", action="store_true",
310 dock_parser.add_argument("--build-image", action="store_true",
312 dock_parser.add_argument("--shell", action="store_true",
314 dock_parser.add_argument("--llvm-project-dir", action="store",
[all …]
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Ddotest_args.py30 action='store_true',
64 action='append',
79 action='append',
85 action='append',
91 action='append',
108 action='store_true',
122 action='append',
171 action='append',
202 action='append',
208 action='append',
[all …]
/llvm-project-15.0.7/clang/tools/scan-build-py/lib/libscanbuild/
H A Darguments.py156 action='store_true',
189 action='store_true',
197 action='append',
213 action='store_true',
282 action='store_true',
289 action='store_true',
293 action='store_true',
339 action='store_true',
349 action='append',
365 action='store_true',
[all …]
/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/
H A Dallocator_returns_null.cpp51 const char *action = argv[1]; in main() local
52 fprintf(stderr, "%s:\n", action); in main()
64 if (!strcmp(action, "malloc")) { in main()
66 } else if (!strcmp(action, "calloc")) { in main()
68 } else if (!strcmp(action, "calloc-overflow")) { in main()
73 } else if (!strcmp(action, "realloc")) { in main()
75 } else if (!strcmp(action, "realloc-after-malloc")) { in main()
81 } else if (!strcmp(action, "new")) { in main()
83 } else if (!strcmp(action, "new-nothrow")) { in main()
/llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/
H A Dallocator_returns_null.cpp53 const char *action = argv[1]; in main() local
54 fprintf(stderr, "%s:\n", action); in main()
59 if (!strcmp(action, "malloc")) { in main()
61 } else if (!strcmp(action, "calloc")) { in main()
63 } else if (!strcmp(action, "calloc-overflow")) { in main()
68 } else if (!strcmp(action, "realloc")) { in main()
70 } else if (!strcmp(action, "realloc-after-malloc")) { in main()
76 } else if (!strcmp(action, "new")) { in main()
78 } else if (!strcmp(action, "new-nothrow")) { in main()
/llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A DFSM.py119 self.action = None
131 def add_transition (self, input_symbol, state, action=None, next_state=None): argument
146 self.state_transitions[(input_symbol, state)] = (action, next_state)
148 def add_transition_list (self, list_input_symbols, state, action=None, next_state=None): argument
162 self.add_transition (input_symbol, state, action, next_state)
164 def add_transition_any (self, state, action=None, next_state=None): argument
180 self.state_transitions_any [state] = (action, next_state)
182 def set_default_transition (self, action, next_state): argument
193 self.default_transition = (action, next_state)
240 if self.action is not None:
[all …]
/llvm-project-15.0.7/llvm/utils/
H A Dllvm-original-di-preservation.py16 self.action = action
22 def __init__(self, action, fn_name): argument
23 self.action = action
27 def __init__(self, action, name, fn_name): argument
28 self.action = action
87 row.append(x.action)
169 row.append(x.action)
252 row.append(x.action)
406 action = bug["action"]
418 action = bug["action"]
[all …]
H A Dclang-parse-diagnostics-file13 parser.add_option("-a", "--all", action="store_true", dest="all",
15 parser.add_option("-e", "--error", action="store_true", dest="error",
17 parser.add_option("-f", "--fatal", action="store_true", dest="fatal",
19 parser.add_option("-i", "--ignored", action="store_true", dest="ignored",
21 parser.add_option("-n", "--note", action="store_true", dest="note",
23 parser.add_option("-w", "--warning", action="store_true", dest="warning",
/llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Linux/
H A Dallocator_oom_test.cpp44 const char *action = argv[1]; in main() local
45 fprintf(stderr, "%s:\n", action); in main()
58 if (!strcmp(action, "malloc")) { in main()
60 } else if (!strcmp(action, "calloc")) { in main()
62 } else if (!strcmp(action, "realloc")) { in main()
64 } else if (!strcmp(action, "realloc-after-malloc")) { in main()
/llvm-project-15.0.7/llvm/utils/Misc/
H A Dzkill146 action="store", default='INT',
150 action="store_true", default=False)
154 action="store_true", default=False)
157 action="store_true", default=False)
160 action="store_true", default=False)
163 action="store_true", default=False)
169 action="store", default=None)
172 action="store", default=None)
175 action="store", default=None)
181 action="store", type=float, default=inf)
[all …]
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp92 FileAction::Action action; member
110 for (const ForkFileAction &action : actions) { in has_action() local
111 if (action.fd == fd) in has_action()
125 for (const ForkFileAction &action : info.actions) { in ChildFunc() local
126 switch (action.action) { in ChildFunc()
128 if (close(action.fd) != 0) in ChildFunc()
132 if (dup2(action.fd, action.arg) == -1) in ChildFunc()
136 DupDescriptor(error_fd, action.path.c_str(), action.fd, action.arg); in ChildFunc()
226 : action(act.GetAction()), fd(act.GetFD()), path(act.GetPath().str()), in ForkFileAction()
/llvm-project-15.0.7/libcxx/utils/libcxx/test/
H A Dnewconfig.py27 for action in actions:
28 action.applyTo(config)
31 action.pretty(config, lit_config.params),
37 for action in actions:
38 action.applyTo(config)
41 action.pretty(config, lit_config.params),
/llvm-project-15.0.7/llvm/lib/Analysis/models/
H A Dgen-regalloc-eviction-test-model.py48 def action(*inputs): function
51 module.action = tf.function()(action)
52 action = {
53 'action': module.action.get_concrete_function(get_input_signature())
55 tf.saved_model.save(module, path, signatures=action)
H A Dgen-inline-oz-test-model.py110 def action(*inputs): function
114 module.action = tf.function()(action)
115 action = {'action': module.action.get_concrete_function(signature['inputs'])}
116 tf.saved_model.save(module, path, signatures=action)
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/
H A DToolBase.py47 action='store_true',
52 action='store_true',
61 action='store_true',
67 action='store_true',
73 action='store_true',
85 '--colortest', action='store_true', default=False, help=suppress)
87 '--error-debug', action='store_true', default=False, help=suppress)
101 action='store_true',
/llvm-project-15.0.7/libcxx/test/libcxx/thread/thread.threads/thread.thread.this/
H A Dsleep_for.signals.pass.cpp44 struct sigaction action; in main() local
45 action.sa_handler = &sig_action; in main()
46 sigemptyset(&action.sa_mask); in main()
47 action.sa_flags = 0; in main()
49 ec = sigaction(SIGALRM, &action, nullptr); in main()
/llvm-project-15.0.7/libcxx/utils/
H A Dsym_diff.py24 action='store_true', default=False)
28 action='store_true', default=False)
31 action='store_true', default=False)
35 action='store_true', default=False)
39 type=str, action='store', default=None)
41 '--demangle', dest='demangle', action='store_true', default=False)
/llvm-project-15.0.7/clang/test/Analysis/
H A Dcfref_rdar6080742.c40 …ion(condition, action)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]",… argument
41 #define RequireActionSilent(condition, action)if (!(condition)) { action } argument
43 #define RequireNoErr(err, action){ if( DebugDisplayOSStatusMsg((err), #err, __FILE__, __LINE__) ) {… argument
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DDNBThreadResumeActions.cpp33 void DNBThreadResumeActions::Append(const DNBThreadResumeAction &action) { in Append() argument
34 m_actions.push_back(action); in Append()
40 DNBThreadResumeAction action = {tid, state, signal, addr}; in AppendAction() local
41 Append(action); in AppendAction()
67 bool DNBThreadResumeActions::SetDefaultThreadActionIfNeeded(nub_state_t action, in SetDefaultThreadActionIfNeeded() argument
71 DNBThreadResumeAction default_action = {INVALID_NUB_THREAD, action, signal, in SetDefaultThreadActionIfNeeded()
/llvm-project-15.0.7/clang/docs/
H A DRefactoringEngine.rst9 refactoring action.
21 .. FIXME: create new refactoring action tutorial and link to the tutorial
33 ``clang-refactor`` command. In addition to rules, the refactoring action
36 outline of a ``local-rename`` action:
56 An individual refactoring action is responsible for creating the set of
61 refactoring action rule was used.
138 list of action rules using the following code:
149 action rule requirement values. These values describe the initiation
151 provided action rule can be constructed and invoked. The next section
185 refactoring action rule allows the refactoring clients to:
[all …]

12345678910>>...19