Searched refs:options (Results 51 - 75 of 1021) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DWebAssembly.cpp38 if (const Arg* A = Args.getLastArg(options::OPT_fuse_ld_EQ)) {
65 if (Args.hasArg(options::OPT_s))
68 Args.AddAllArgs(CmdArgs, options::OPT_L);
69 Args.AddAllArgs(CmdArgs, options::OPT_u);
72 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles))
77 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs)) {
81 if (Args.hasArg(options::OPT_pthread)) {
96 if (Arg *A = Args.getLastArg(options
[all...]
H A DDragonFly.cpp39 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler);
63 if (Args.hasArg(options::OPT_static)) {
66 if (Args.hasArg(options::OPT_rdynamic))
68 if (Args.hasArg(options::OPT_shared))
92 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles)) {
93 if (!Args.hasArg(options::OPT_shared)) {
94 if (Args.hasArg(options::OPT_pg))
98 if (Args.hasArg(options
[all...]
H A DMinix.cpp30 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler);
57 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles)) {
66 {options::OPT_L, options::OPT_T_Group, options::OPT_e});
72 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs)) {
80 if (!Args.hasArg(options
[all...]
H A DCloudABI.cpp35 Args.ClaimAllArgs(options::OPT_g_Group);
37 Args.ClaimAllArgs(options::OPT_emit_llvm);
38 // and for "clang -w foo.o -o foo". Other warning options are already
40 Args.ClaimAllArgs(options::OPT_w);
65 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles)) {
70 Args.AddAllArgs(CmdArgs, options::OPT_L);
73 {options::OPT_T_Group, options::OPT_e, options
[all...]
/freebsd-11-stable/contrib/ntp/sntp/unity/auto/
H A Dgenerate_test_runner.rb12 def initialize(options = nil)
13 @options = UnityTestRunnerGenerator.default_options
15 case(options)
16 when NilClass then @options
17 when String then @options.merge!(UnityTestRunnerGenerator.grab_config(options))
18 when Hash then @options.merge!(options)
19 else raise "If you specify arguments, it should be a filename or a hash of options"
37 options
[all...]
/freebsd-11-stable/contrib/diff/lib/
H A Dexclude.c59 /* Non-GNU systems lack these options, so we don't need to check them. */
73 /* An exclude pattern-options pair. The options are fnmatch options
74 ORed with EXCLUDE_* options. */
79 int options; member in struct:patopts
82 /* An exclude list, of pattern-options pairs. */
112 fnmatch_no_wildcards (char const *pattern, char const *f, int options) argument
114 if (! (options & FNM_LEADING_DIR))
115 return ((options
157 int options = exclude[i].options; local
183 add_exclude(struct exclude *ex, char const *pattern, int options) argument
202 add_exclude_file(void (*add_func) (struct exclude *, char const *, int), struct exclude *ex, char const *filename, int options, char line_end) argument
[all...]
H A Dprepargs.c42 /* Find the white-space-separated options specified by OPTIONS, and
43 using BUF to store copies of these options, set ARGV[0], ARGV[1],
44 etc. to the option copies. Return the number N of options found.
48 prepend_args (char const *options, char *buf, char **argv) argument
50 char const *o = options;
73 /* Prepend the whitespace-separated options in OPTIONS to the argument
77 prepend_default_options (char const *options, int *pargc, char ***pargv) argument
79 if (options)
81 char *buf = xmalloc (strlen (options) + 1);
82 int prepended = prepend_args (options, bu
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/
H A DSystemZ.cpp20 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ)) {
39 if (Arg *A = Args.getLastArg(options::OPT_mhtm, options::OPT_mno_htm)) {
40 if (A->getOption().matches(options::OPT_mhtm))
46 if (Arg *A = Args.getLastArg(options::OPT_mvx, options::OPT_mno_vx)) {
47 if (A->getOption().matches(options::OPT_mvx))
/freebsd-11-stable/libexec/tftpd/
H A Dtftp-options.h47 struct options { struct
55 extern struct options options[];
/freebsd-11-stable/tools/regression/atm/
H A DFuncs.sh29 options=""
37 -u|-q) options="$options $i"; shift;;
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound-querycachedb.py25 def _redis_get(options, key):
27 return redis.Redis(options.address, int(options.port)).get(key)
29 def _dump_value(options, qname, key, value):
30 print(';; query=%s/IN/%s' % (qname, options.qtype))
46 parser = OptionParser(usage='usage: %prog [options] query_name')
61 (options, args) = parser.parse_args()
64 if options.backend == 'redis':
67 raise Exception('unknown backend name: %s\n' % options.backend)
68 key = _calc_hashkey(args[0], options
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSString.h22 const TypeSummaryOptions &options);
29 const TypeSummaryOptions &options);
32 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options);
/freebsd-11-stable/crypto/openssl/
H A Dconfig35 Usage: config [options]
45 *) options=$options" $i" ;;
517 options="$options -mips2"
525 # options="$options -mips4"
527 # options="$options -mips3"
541 # options
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dsshconnect.c79 extern Options options;
97 "r", options.user, (char *)NULL);
122 command_string = expand_proxy_command(proxy_command, options.user,
202 command_string = expand_proxy_command(proxy_command, options.user,
288 if (options.bind_address == NULL && !privileged)
291 if (options.bind_address) {
297 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
299 error("getaddrinfo: %s: %s", options.bind_address,
320 error("bind: %s: %s", options.bind_address,
512 if (options
[all...]
/freebsd-11-stable/sys/contrib/rdma/krping/
H A Dgetopt.h18 extern int krping_getopt(const char *caller, char **options, const struct krping_option *opts,
/freebsd-11-stable/contrib/xz/src/liblzma/delta/
H A Ddelta_decoder.h23 void **options, const lzma_allocator *allocator,
H A Ddelta_encoder.h22 extern lzma_ret lzma_delta_props_encode(const void *options, uint8_t *out);
/freebsd-11-stable/tools/test/hwpmc/
H A Dpmctest.py72 (options, args) = parser.parse_args()
74 if (options.program == None):
88 p = subprocess.Popen(["pmcstat", "-p", counter, options.program],
92 if (options.wait == True):
/freebsd-11-stable/sys/contrib/rdma/krping_compat/
H A Dgetopt.h18 extern int krping_getopt(const char *caller, char **options, const struct krping_option *opts,
/freebsd-11-stable/contrib/libarchive/cpio/test/
H A Dtest_gcpio_compat.c29 unpack_test(const char *from, const char *options, const char *se) argument
42 testprog, options, from);
44 testprog, options, from);
50 testprog, options, from);
86 /* Dearchive sample files with a variety of options. */
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxVariant.h22 const TypeSummaryOptions &options); // libc++ std::variant<>
H A DLibStdcpp.h21 const TypeSummaryOptions &options); // libcstdc++ c++11 std::string
25 const TypeSummaryOptions &options); // libcstdc++ c++11 std::wstring
30 &options); // libstdc++ std::shared_ptr<> and std::weak_ptr<>
34 const TypeSummaryOptions &options); // libstdc++ std::unique_ptr<>
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/
H A DBuildSystem.h45 * \param options is reserved, always pass 0.
48 clang_VirtualFileOverlay_create(unsigned options);
73 * \param options is reserved, always pass 0.
80 clang_VirtualFileOverlay_writeToBuffer(CXVirtualFileOverlay, unsigned options,
106 * \param options is reserved, always pass 0.
109 clang_ModuleMapDescriptor_create(unsigned options);
130 * \param options is reserved, always pass 0.
137 clang_ModuleMapDescriptor_writeToBuffer(CXModuleMapDescriptor, unsigned options,
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/regex/
H A Dtest_regex.h35 int options(int, char *);
/freebsd-11-stable/lib/libc/gen/
H A Dwait3.c48 __wait3(int *istat, int options, struct rusage *rup) argument
52 __libc_interposing[INTERPOS_wait4])(WAIT_ANY, istat, options, rup));

Completed in 232 milliseconds

1234567891011>>