Home
last modified time | relevance | path

Searched full:options (Results 1 – 25 of 3655) sorted by relevance

12345678910>>...147

/llvm-project/mlir/lib/Target/LLVMIR/
H A DLoopAnnotationTranslation.cpp39 void convertLoopOptions(LoopVectorizeAttr options);
40 void convertLoopOptions(LoopInterleaveAttr options);
41 void convertLoopOptions(LoopUnrollAttr options);
42 void convertLoopOptions(LoopUnrollAndJamAttr options);
43 void convertLoopOptions(LoopLICMAttr options);
44 void convertLoopOptions(LoopDistributeAttr options);
45 void convertLoopOptions(LoopPipelineAttr options);
46 void convertLoopOptions(LoopPeeledAttr options);
47 void convertLoopOptions(LoopUnswitchAttr options);
105 void LoopAnnotationConversion::convertLoopOptions(LoopVectorizeAttr options) { in convertLoopOptions() argument
[all …]
/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp41 #include "clang/Driver/Options.h"
50 #include "llvm/Frontend/Debug/Options.h"
76 if (Arg *A = Args.getLastArg(clang::driver::options::OPT_C, options::OPT_CC, in CheckPreprocessingOptions()
77 options::OPT_fminimize_whitespace, in CheckPreprocessingOptions()
78 options::OPT_fno_minimize_whitespace, in CheckPreprocessingOptions()
79 options::OPT_fkeep_system_includes, in CheckPreprocessingOptions()
80 options::OPT_fno_keep_system_includes)) { in CheckPreprocessingOptions()
81 if (!Args.hasArg(options::OPT_E) && !Args.hasArg(options in CheckPreprocessingOptions()
[all...]
H A DFlang.cpp14 #include "clang/Driver/Options.h"
15 #include "llvm/Frontend/Debug/Options.h"
39 Args.addAllArgs(CmdArgs, {options::OPT_ffixed_form, in addFortranDialectOptions()
40 options::OPT_ffree_form, in addFortranDialectOptions()
41 options::OPT_ffixed_line_length_EQ, in addFortranDialectOptions()
42 options::OPT_fopenacc, in addFortranDialectOptions()
43 options::OPT_finput_charset_EQ, in addFortranDialectOptions()
44 options::OPT_fimplicit_none, in addFortranDialectOptions()
45 options::OPT_fno_implicit_none, in addFortranDialectOptions()
46 options in addFortranDialectOptions()
[all...]
H A DPS4CPU.cpp15 #include "clang/Driver/Options.h"
38 if ((Args.hasFlag(options::OPT_fprofile_arcs, options::OPT_fno_profile_arcs, in addProfileRTArgs()
40 Args.hasFlag(options::OPT_fprofile_generate, in addProfileRTArgs()
41 options::OPT_fno_profile_generate, false) || in addProfileRTArgs()
42 Args.hasFlag(options::OPT_fprofile_generate_EQ, in addProfileRTArgs()
43 options::OPT_fno_profile_generate, false) || in addProfileRTArgs()
44 Args.hasFlag(options::OPT_fprofile_instr_generate, in addProfileRTArgs()
45 options::OPT_fno_profile_instr_generate, false) || in addProfileRTArgs()
46 Args.hasFlag(options in addProfileRTArgs()
[all...]
H A DAIX.cpp13 #include "clang/Driver/Options.h"
44 if (Arg *A = C.getArgs().getLastArg(options::OPT_G)) { in ConstructJob()
63 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler); in ConstructJob()
87 // Determine whether there are any linker options that supply an export list
124 if (Arg *A = C.getArgs().getLastArg(options::OPT_G)) { in ConstructJob()
130 if (Args.hasArg(options::OPT_static)) in ConstructJob()
133 // Add options for shared libraries. in ConstructJob()
134 if (Args.hasArg(options::OPT_shared)) { in ConstructJob()
139 if (Args.hasFlag(options in ConstructJob()
[all...]
/llvm-project/llvm/test/tools/yaml2obj/ELF/
H A Dlinker-options.yaml4 ## Check we can use "Options", "Size" and "Content" alone to describe the data.
8 # RUN: | FileCheck %s --check-prefix=OPTIONS
10 # OPTIONS: Name: .linker-options1
11 # OPTIONS-NEXT: Type: SHT_LLVM_LINKER_OPTIONS
12 # OPTIONS-NEXT: Flags [
13 # OPTIONS-NEXT: ]
14 # OPTIONS-NEXT: Address: 0x0
15 # OPTIONS-NEXT: Offset: 0x40
16 # OPTIONS-NEXT: Size: 34
17 # OPTIONS-NEXT: Link: 0
[all …]
/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSString.cpp133 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj); in NSStringSummaryProvider() local
134 options.SetPrefixToken(prefix.str()); in NSStringSummaryProvider()
135 options.SetSuffixToken(suffix.str()); in NSStringSummaryProvider()
143 options.SetLocation(location); in NSStringSummaryProvider()
144 options.SetTargetSP(valobj.GetTargetSP()); in NSStringSummaryProvider()
145 options.SetStream(&stream); in NSStringSummaryProvider()
146 options.SetQuote('"'); in NSStringSummaryProvider()
147 options.SetSourceSize(explicit_length); in NSStringSummaryProvider()
148 options.SetHasSourceSize(has_explicit_length); in NSStringSummaryProvider()
149 options in NSStringSummaryProvider()
279 NSAttributedStringSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) NSAttributedStringSummaryProvider() argument
308 NSMutableAttributedStringSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) NSMutableAttributedStringSummaryProvider() argument
[all...]
/llvm-project/clang-tools-extra/unittests/clang-tidy/
H A DClangTidyOptionsTest.cpp30 ClangTidyGlobalOptions Options; in TEST() local
31 EXPECT_FALSE(parseLineFilter("", Options)); in TEST()
32 EXPECT_TRUE(Options.LineFilter.empty()); in TEST()
33 EXPECT_FALSE(parseLineFilter("[]", Options)); in TEST()
34 EXPECT_TRUE(Options.LineFilter.empty()); in TEST()
38 ClangTidyGlobalOptions Options; in TEST() local
39 EXPECT_TRUE(!!parseLineFilter("asdf", Options)); in TEST()
40 EXPECT_TRUE(Options.LineFilter.empty()); in TEST()
42 EXPECT_TRUE(!!parseLineFilter("[{}]", Options)); in TEST()
43 EXPECT_TRUE(!!parseLineFilter("[{\"name\":\"\"}]", Options)); in TEST()
53 ClangTidyGlobalOptions Options; TEST() local
78 llvm::ErrorOr<ClangTidyOptions> Options = TEST() local
104 auto Options = parseConfiguration(MemoryBuffer); TEST() local
139 ClangTidyOptions Options = Options1->merge(*Options2, 0); TEST() local
233 llvm::Annotations Options(R"( TEST() local
316 ClangTidyOptions Options; TEST() local
331 ClangTidyOptions Options; TEST() local
397 ClangTidyOptions Options; TEST() local
[all...]
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/tools/
H A DTestToolBase.py63 options = self.context.options
65 if options.vs_solution:
66 options.vs_solution = os.path.abspath(options.vs_solution)
67 if not os.path.isfile(options.vs_solution):
70 options.vs_solution
73 elif options.binary:
74 options.binary = os.path.abspath(options.binary)
75 if not os.path.isfile(options.binary):
77 '<d>could not find binary file</> <r>"{}"</>'.format(options.binary)
85 options.test_path = os.path.abspath(options.test_path)
[all …]
/llvm-project/clang/lib/Driver/ToolChains/Arch/
H A DSparc.cpp12 #include "clang/Driver/Options.h"
81 if (Arg *A = Args.getLastArg(options::OPT_msoft_float, options::OPT_mno_fpu, in getSparcFloatABI()
82 options::OPT_mhard_float, options::OPT_mfpu, in getSparcFloatABI()
83 options::OPT_mfloat_abi_EQ)) { in getSparcFloatABI()
84 if (A->getOption().matches(options::OPT_msoft_float) || in getSparcFloatABI()
85 A->getOption().matches(options::OPT_mno_fpu)) in getSparcFloatABI()
87 else if (A->getOption().matches(options::OPT_mhard_float) || in getSparcFloatABI()
88 A->getOption().matches(options in getSparcFloatABI()
[all...]
H A DMips.cpp13 #include "clang/Driver/Options.h"
53 if (Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ, in getMipsCPUAndABI()
54 options::OPT_mcpu_EQ)) in getMipsCPUAndABI()
57 if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ)) { in getMipsCPUAndABI()
150 Args.getLastArg(options::OPT_msoft_float, options::OPT_mhard_float, in getMipsFloatABI()
151 options::OPT_mfloat_abi_EQ)) { in getMipsFloatABI()
152 if (A->getOption().matches(options::OPT_msoft_float)) in getMipsFloatABI()
154 else if (A->getOption().matches(options::OPT_mhard_float)) in getMipsFloatABI()
226 Arg *LastPICArg = Args.getLastArg(options in getMIPSTargetFeatures()
[all...]
H A DAArch64.cpp13 #include "clang/Driver/Options.h"
36 if ((A = Args.getLastArg(options::OPT_mcpu_EQ))) { in getAArch64TargetCPU()
206 Args.filtered(options::OPT_Wa_COMMA, options::OPT_Xassembler)) in getAArch64TargetFeatures()
215 else if ((A = Args.getLastArg(options::OPT_march_EQ))) in getAArch64TargetFeatures()
218 else if ((A = Args.getLastArg(options::OPT_mcpu_EQ))) in getAArch64TargetFeatures()
228 if (success && (A = Args.getLastArg(clang::driver::options::OPT_mtune_EQ))) in getAArch64TargetFeatures()
231 else if (success && (A = Args.getLastArg(options::OPT_mcpu_EQ))) in getAArch64TargetFeatures()
249 if (Args.getLastArg(options::OPT_mgeneral_regs_only)) { in getAArch64TargetFeatures()
254 if (Arg *A = Args.getLastArg(options in getAArch64TargetFeatures()
[all...]
H A DX86.cpp13 #include "clang/Driver/Options.h"
26 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ)) { in getX86TargetCPU()
38 if (const Arg *A = Args.getLastArg(options::OPT__SLASH_arch)) { in getX86TargetCPU()
124 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_mabi_EQ)) { in getX86TargetFeatures()
132 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ)) { in getX86TargetFeatures()
167 auto SpectreOpt = clang::driver::options::ID::OPT_INVALID; in getX86TargetFeatures()
168 if (Args.hasArgNoClaim(options::OPT_mretpoline, options::OPT_mno_retpoline, in getX86TargetFeatures()
169 options::OPT_mspeculative_load_hardening, in getX86TargetFeatures()
170 options in getX86TargetFeatures()
[all...]
/llvm-project/polly/lib/External/isl/
H A Dcodegen.c18 * - a relation describing AST generation options
25 #include <isl/options.h>
33 struct options { struct
39 ISL_ARGS_START(struct options, options_args) in ISL_ARGS_START() argument
40 ISL_ARG_CHILD(struct options, isl, "isl", &isl_options_args, "isl options") in ISL_ARGS_START()
41 ISL_ARG_BOOL(struct options, atomic, 0, "atomic", 0, in ISL_ARGS_START()
43 ISL_ARG_BOOL(struct options, separate, 0, "separate", 0, in ISL_ARGS_START()
47 ISL_ARG_DEF(cg_options, struct options, options_args) in ISL_ARGS_START()
48 ISL_ARG_CTX_DEF(cg_options, struct options, options_args) in ISL_ARGS_START()
81 /* Update the build options based on the user-specified options.
[all …]
/llvm-project/llvm/tools/dsymutil/
H A Ddsymutil.cpp63 #include "Options.inc"
68 #include "Options.inc"
72 #include "Options.inc"
78 #include "Options.inc"
173 // Verify that the given combination of options makes sense. in verifyOptions()
174 static Error verifyOptions(const DsymutilOptions &Options) { in verifyOptions()
175 if (Options.LinkOpts.Verbose && Options.LinkOpts.Quiet) { in verifyOptions()
181 if (Options.InputFiles.empty()) { in verifyOptions()
186 if (!Options in verifyOptions()
171 verifyOptions(const DsymutilOptions & Options) verifyOptions() argument
300 DsymutilOptions Options; getOptions() local
490 verifyOutput(StringRef OutputFile,StringRef Arch,DsymutilOptions Options,std::mutex & Mutex) verifyOutput() argument
564 getOutputFileName(StringRef InputFile,const DsymutilOptions & Options) getOutputFileName() argument
653 auto &Options = *OptionsOrErr; dsymutil_main() local
[all...]
/llvm-project/llvm/include/llvm/ADT/
H A Dilist_node_options.h1 //===- llvm/ADT/ilist_node_options.h - ilist_node Options -------*- C++ -*-===//
79 /// Look through \p Options for the \a ilist_sentinel_tracking option, with the
81 template <class... Options> struct extract_sentinel_tracking;
82 template <bool EnableSentinelTracking, class... Options>
84 ilist_sentinel_tracking<EnableSentinelTracking>, Options...>
86 template <class Option1, class... Options>
87 struct extract_sentinel_tracking<Option1, Options...>
88 : extract_sentinel_tracking<Options...> {};
101 /// Look through \p Options for the \a ilist_tag option, pulling out the
103 template <class... Options> struct extract_tag;
[all …]
/llvm-project/llvm/lib/Passes/
H A DPassBuilderBindings.cpp25 /// Helper struct for holding a set of builder options for LLVMRunPasses. This
27 /// versions in case we modify the options the new Pass Manager utilizes.
103 LLVMPassBuilderOptionsRef Options) { in LLVMPassBuilderOptionsSetLoopVectorization() argument
105 LLVMPassBuilderOptions *PassOpts = unwrap(Options); in LLVMPassBuilderOptionsSetLoopVectorization()
112 LLVMPassBuilderOptionsRef Options) { in LLVMPassBuilderOptionsSetLoopUnrolling() argument
114 LLVMPassBuilderOptions *PassOpts = unwrap(Options); in LLVMPassBuilderOptionsSetLoopUnrolling()
123 void LLVMPassBuilderOptionsSetVerifyEach(LLVMPassBuilderOptionsRef Options, in LLVMPassBuilderOptionsSetLicmMssaOptCap()
125 unwrap(Options)->VerifyEach = VerifyEach; in LLVMPassBuilderOptionsSetLicmMssaOptCap()
128 void LLVMPassBuilderOptionsSetDebugLogging(LLVMPassBuilderOptionsRef Options, in LLVMPassBuilderOptionsSetLicmMssaNoAccForPromotionCap() argument
130 unwrap(Options) in LLVMPassBuilderOptionsSetLicmMssaNoAccForPromotionCap()
87 LLVMPassBuilderOptionsSetVerifyEach(LLVMPassBuilderOptionsRef Options,LLVMBool VerifyEach) LLVMPassBuilderOptionsSetVerifyEach() argument
92 LLVMPassBuilderOptionsSetDebugLogging(LLVMPassBuilderOptionsRef Options,LLVMBool DebugLogging) LLVMPassBuilderOptionsSetDebugLogging() argument
98 LLVMPassBuilderOptionsSetLoopInterleaving(LLVMPassBuilderOptionsRef Options,LLVMBool LoopInterleaving) LLVMPassBuilderOptionsSetLoopInterleaving() argument
108 LLVMPassBuilderOptionsSetSLPVectorization(LLVMPassBuilderOptionsRef Options,LLVMBool SLPVectorization) LLVMPassBuilderOptionsSetSLPVectorization() argument
118 LLVMPassBuilderOptionsSetForgetAllSCEVInLoopUnroll(LLVMPassBuilderOptionsRef Options,LLVMBool ForgetAllSCEVInLoopUnroll) LLVMPassBuilderOptionsSetForgetAllSCEVInLoopUnroll() argument
122 LLVMPassBuilderOptionsSetLicmMssaOptCap(LLVMPassBuilderOptionsRef Options,unsigned LicmMssaOptCap) LLVMPassBuilderOptionsSetLicmMssaOptCap() argument
134 LLVMPassBuilderOptionsSetCallGraphProfile(LLVMPassBuilderOptionsRef Options,LLVMBool CallGraphProfile) LLVMPassBuilderOptionsSetCallGraphProfile() argument
138 LLVMPassBuilderOptionsSetMergeFunctions(LLVMPassBuilderOptionsRef Options,LLVMBool MergeFunctions) LLVMPassBuilderOptionsSetMergeFunctions() argument
144 LLVMPassBuilderOptionsSetInlinerThreshold(LLVMPassBuilderOptionsRef Options,int Threshold) LLVMPassBuilderOptionsSetInlinerThreshold() argument
148 LLVMDisposePassBuilderOptions(LLVMPassBuilderOptionsRef Options) LLVMDisposePassBuilderOptions() argument
[all...]
/llvm-project/clang/test/Sema/
H A Dwarn-infinity-nan-disabled-win.cpp122 // no-inf-no-nan-warning@+2 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
123 // no-inf-warning@+1 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
126 // no-inf-no-nan-warning@+2 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
127 // no-inf-warning@+1 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
130 // no-inf-no-nan-warning@+4 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
131 // no-inf-no-nan-warning@+3 {{use of NaN via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
132 // no-inf-warning@+2 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
133 // no-nan-warning@+1 {{use of NaN via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
136 // no-inf-no-nan-warning@+4 {{use of NaN via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
137 // no-inf-no-nan-warning@+3 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
[all...]
H A Dwarn-infinity-nan-disabled-lnx.cpp118 // no-inf-no-nan-warning@+4 {{use of infinity is undefined behavior due to the currently enabled floating-point options}} in compareit()
119 // no-inf-no-nan-warning@+3 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
120 // no-inf-warning@+2 {{use of infinity is undefined behavior due to the currently enabled floating-point options}} in compareit()
121 // no-inf-warning@+1 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
124 // no-inf-no-nan-warning@+4 {{use of infinity is undefined behavior due to the currently enabled floating-point options}} in compareit()
125 // no-inf-no-nan-warning@+3 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
126 // no-inf-warning@+2 {{use of infinity is undefined behavior due to the currently enabled floating-point options}} in compareit()
127 // no-inf-warning@+1 {{use of infinity via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
130 // no-inf-no-nan-warning@+4 {{use of NaN is undefined behavior due to the currently enabled floating-point options}} in compareit()
131 // no-inf-no-nan-warning@+3 {{use of NaN via a macro is undefined behavior due to the currently enabled floating-point options}} in compareit()
[all...]
/llvm-project/flang/lib/Frontend/
H A DCompilerInvocation.cpp28 #include "clang/Driver/Options.h"
31 #include "llvm/Frontend/Debug/Options.h"
81 if (opt.matches(clang::driver::options::OPT_fcolor_diagnostics)) { in parseShowColorsArgs()
83 } else if (opt.matches(clang::driver::options::OPT_fno_color_diagnostics)) { in parseShowColorsArgs()
85 } else if (opt.matches(clang::driver::options::OPT_fdiagnostics_color_EQ)) { in parseShowColorsArgs()
107 args.getLastArg(clang::driver::options::OPT_O_Group)) { in getOptimizationLevel()
108 if (a->getOption().matches(clang::driver::options::OPT_O0)) in getOptimizationLevel()
111 assert(a->getOption().matches(clang::driver::options::OPT_O)); in getOptimizationLevel()
113 return getLastArgIntValue(args, clang::driver::options::OPT_O, defaultOpt, in getOptimizationLevel()
132 args.getLastArg(clang::driver::options in parseDebugArgs()
[all...]
/llvm-project/llvm/unittests/DebugInfo/LogicalView/
H A DCommandLineOptionsTest.cpp18 // '--attribute' options.
20 auto CheckStandardAttributes = [&](LVOptions &Options, bool Value) { in TEST() argument
21 EXPECT_EQ(Options.getAttributeBase(), 1); in TEST()
22 EXPECT_EQ(Options.getAttributeCoverage(), Value); in TEST()
23 EXPECT_EQ(Options.getAttributeDirectories(), 1); in TEST()
24 EXPECT_EQ(Options.getAttributeDiscriminator(), 1); in TEST()
25 EXPECT_EQ(Options.getAttributeFilename(), 0); in TEST()
26 EXPECT_EQ(Options.getAttributeFiles(), 1); in TEST()
27 EXPECT_EQ(Options.getAttributeFormat(), 1); in TEST()
28 EXPECT_EQ(Options.getAttributeLevel(), 1); in TEST()
[all …]
/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCxxStringTypes.cpp57 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj); in CharStringSummaryProvider() local
58 options.SetLocation(valobj_addr); in CharStringSummaryProvider()
59 options.SetTargetSP(valobj.GetTargetSP()); in CharStringSummaryProvider()
60 options.SetStream(&stream); in CharStringSummaryProvider()
61 options.SetPrefixToken(getElementTraits(ElemType).first); in CharStringSummaryProvider()
63 if (!StringPrinter::ReadStringAndDumpToStream<ElemType>(options)) in CharStringSummaryProvider()
79 StringPrinter::ReadBufferAndDumpToStreamOptions options(valobj); in CharSummaryProvider() local
87 options.SetData(std::move(data)); in CharSummaryProvider()
88 options.SetStream(&stream); in CharSummaryProvider()
89 options in CharSummaryProvider()
131 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj); WCharStringSummaryProvider() local
191 StringPrinter::ReadBufferAndDumpToStreamOptions options(valobj); WCharSummaryProvider() local
[all...]
/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp357 const FuzzingOptions &Options) { in CleanseCrashInput() argument
412 const FuzzingOptions &Options) { in MinimizeCrashInput() argument
458 : Options.ArtifactPrefix + "minimized-from-" + Hash(U); in MinimizeCrashInput()
510 void Merge(Fuzzer *F, FuzzingOptions &Options, in Merge() argument
531 F->WriteToOutputCorpus(FileToVector(Path, Options.MaxLen)); in Merge()
681 FuzzingOptions Options; in FuzzerDriver() local
682 Options.Verbosity = Flags.verbosity; in FuzzerDriver()
683 Options.MaxLen = Flags.max_len; in FuzzerDriver()
684 Options.LenControl = Flags.len_control; in FuzzerDriver()
685 Options.KeepSeed = Flags.keep_seed; in FuzzerDriver()
[all …]
/llvm-project/lldb/test/API/test_runner/test/
H A Dinferior.py17 @return the argparse options dictionary.
67 def handle_ignore_signals(options, signals): argument
70 @param options the command line options parsed by the program.
80 if options.verbose:
85 def handle_sleep(options, sleep_seconds): argument
88 @param options the command line options parsed by the program.
101 if options.verbose:
118 def handle_launch_children(options): argument
119 if options.launch_child_share_handles:
125 def handle_never_return(options): argument
[all …]
/llvm-project/lldb/include/lldb/Interpreter/
H A DOptions.h1 //===-- Options.h -----------------------------------------------*- C++ -*-===//
45 /// \class Options Options.h "lldb/Interpreter/Options.h"
48 /// Options is designed to be subclassed to contain all needed options for a
49 /// given command. The options can be parsed by calling the Parse function.
51 /// The options are specified using the format defined for the libc options
58 class Options {
60 Options();
62 virtual ~Options();
70 /// Get the option definitions to use when parsing Args options.
72 /// \see Args::ParseOptions (Options&)
[all …]

12345678910>>...147