/openbsd/gnu/llvm/llvm/utils/lit/lit/llvm/ |
H A D | subst.py | 39 unresolved='warn', extra_args=None): argument 76 self.extra_args = extra_args 117 if self.extra_args: 118 command_str = ' '.join([command_str] + self.extra_args)
|
H A D | config.py | 538 extra_args=additional_flags), 540 extra_args=['-analyze', '%analyze', 543 extra_args=['-cc1', '-internal-isystem', 547 extra_args=['--driver-mode=cpp']+additional_flags), 549 extra_args=['--driver-mode=cl']+additional_flags), 551 extra_args=['--driver-mode=dxc']+additional_flags), 553 extra_args=['--driver-mode=g++']+additional_flags),
|
/openbsd/gnu/llvm/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
H A D | run.py | 8 extra_args=None, logfile=None, cwd=None, env=None, **kwargs): argument 151 extra_args=None, logfile=None, cwd=None, env=None, **kwargs): argument 156 events=events, extra_args=extra_args, logfile=logfile, cwd=cwd,
|
/openbsd/gnu/llvm/llvm/utils/gn/ |
H A D | gn.py | 54 extra_args = [] 60 extra_args = [ '--dotfile=' + dotfile, '--root=' + root ] 63 cmd = [gn] + extra_args + sys.argv[1:]
|
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
H A D | lldbpexpect.py | 23 def launch(self, executable=None, extra_args=None, timeout=60, argument 41 if extra_args is not None: 42 args.extend(extra_args)
|
/openbsd/gnu/llvm/lldb/bindings/lua/ |
H A D | lua-wrapper.swig | 14 lldb::SBStructuredData extra_args(extra_args_impl); 20 if (extra_args.IsValid()) { 21 PushSBClass(L, &extra_args);
|
/openbsd/gnu/llvm/compiler-rt/cmake/Modules/ |
H A D | SanitizerUtils.cmake | 29 set(extra_args) variable 31 list(APPEND extra_args "--extra" ${arg}) 35 ${SANITIZER_GEN_DYNAMIC_LIST} ${extra_args} $<TARGET_FILE:${target_name}>
|
/openbsd/gnu/llvm/llvm/utils/ |
H A D | update_cc_test_checks.py | 209 extra_args = shlex.split(extra_command) 213 if extra_args[0] == 'opt': 218 extra_args[0] = args.opt 219 raw_tool_output = common.invoke_tool(extra_args[0], 220 extra_args[1:], f.name)
|
H A D | collect_and_build_with_pgo.py | 377 extra_args = {'CMAKE_BUILD_TYPE': 'Release', 390 extra_args[key] = val 393 default_cmake_args=extra_args,
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBBreakpointLocation.cpp | 225 SBStructuredData &extra_args) { in SetScriptCallbackFunction() argument 226 LLDB_INSTRUMENT_VA(this, callback_function_name, extra_args); in SetScriptCallbackFunction() 241 extra_args.m_impl_up in SetScriptCallbackFunction()
|
H A D | SBBreakpointName.cpp | 558 SBStructuredData &extra_args) { in SetScriptCallbackFunction() argument 559 LLDB_INSTRUMENT_VA(this, callback_function_name, extra_args); in SetScriptCallbackFunction() 577 extra_args.m_impl_up->GetObjectSP()); in SetScriptCallbackFunction()
|
H A D | SBBreakpoint.cpp | 610 SBStructuredData &extra_args) { in SetScriptCallbackFunction() argument 611 LLDB_INSTRUMENT_VA(this, callback_function_name, extra_args); in SetScriptCallbackFunction() 625 extra_args.m_impl_up in SetScriptCallbackFunction()
|
/openbsd/gnu/llvm/lldb/bindings/interface/ |
H A D | SBBreakpointLocation.i | 87 SBStructuredData &extra_args);
|
H A D | SBBreakpointName.i | 89 SBStructuredData &extra_args);
|
H A D | SBBreakpoint.i | 191 SBStructuredData &extra_args);
|
/openbsd/gnu/llvm/lldb/include/lldb/API/ |
H A D | SBBreakpointLocation.h | 61 lldb::SBStructuredData &extra_args);
|
H A D | SBBreakpointName.h | 89 SBStructuredData &extra_args);
|
H A D | SBBreakpoint.h | 100 SBStructuredData &extra_args);
|
H A D | SBTarget.h | 678 SBStructuredData &extra_args,
|
/openbsd/gnu/llvm/clang/tools/clang-format/ |
H A D | git-clang-format | 324 extra_args = [] 328 extra_args += ['--cached'] 329 cmd = ['git', git_tool, '-p', '-U0'] + extra_args + commits + ['--']
|
/openbsd/gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive/ |
H A D | Tar.pm | 414 { my %extra_args = (); 415 $extra_args{'name'} = $$real_name if defined $real_name; 418 %extra_args )
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | breakpoint.c | 5512 char *extra_args = NULL; in break_at_finish_at_depth_command_1() local 5536 extra_args = strchr (arg, ' '); in break_at_finish_at_depth_command_1() 5537 if (extra_args) in break_at_finish_at_depth_command_1() 5539 extra_args++; in break_at_finish_at_depth_command_1() 5559 extra_args = arg; in break_at_finish_at_depth_command_1() 5591 char *extra_args = NULL; in break_at_finish_command_1() local 5621 extra_args = arg; in break_at_finish_command_1() 5627 extra_args = strchr (arg, ' '); in break_at_finish_command_1() 5628 if (extra_args) in break_at_finish_command_1() 5630 extra_args++; in break_at_finish_command_1() [all …]
|
/openbsd/gnu/llvm/lldb/docs/use/ |
H A D | python-reference.rst | 192 def breakpoint_function_wrapper(frame, bp_loc, extra_args, internal_dict): 207 | ``extra_args`` | `lldb.SBStructuredData` | ``Optional`` If your breakpoint callback func… 209 … | you could take the function name from a field in the ``extra_args``, making the ca… 210 … to ``breakpoint command add`` will be passed as a Dictionary in the ``extra_args`` parameter, or … 349 | | ``extra_args``:`lldb.SBStructuredData`| … 354 | | | ``extra_args`` is an `SBStructuredDa… 357 … | in the particular symbol in the extra_args … 392 You can also populate the extra_args SBStructuredData with a dictionary of 908 | | ``extra_args: lldb.SBStructuredData`` | … 912 | | | ``extra_args`` is an SBStructuredDat…
|
/openbsd/gnu/usr.bin/perl/cpan/AutoLoader/t/ |
H A D | 02AutoSplit.t | 127 my @extra_args = !defined $args{Extra} ? () : split /,/, $args{Extra}; 131 $output = split_a_file ($body, $file, $dir, @extra_args); 134 $output = split_a_file (undef, $file, $dir, @extra_args);
|
/openbsd/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/ |
H A D | ParseXS.pm | 454 my $extra_args = 0; 476 $extra_args++; 483 my $min_args = $num_args - $extra_args;
|