OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getLastArgValue
(Results
1 - 16
of
16
) sorted by null
/external/llvm/unittests/Option/
OptionParsingTest.cpp
82
EXPECT_EQ("hi", AL.
getLastArgValue
(OPT_B));
83
EXPECT_EQ("bye", AL.
getLastArgValue
(OPT_C));
84
EXPECT_EQ("adena", AL.
getLastArgValue
(OPT_D));
88
EXPECT_EQ("42", AL.
getLastArgValue
(OPT_F));
134
EXPECT_EQ("foo", AL.
getLastArgValue
(OPT_SLASH_C));
135
EXPECT_EQ("bar", AL.
getLastArgValue
(OPT_C));
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Option/
OptionParsingTest.cpp
83
EXPECT_EQ("hi", AL.
getLastArgValue
(OPT_B));
84
EXPECT_EQ("bye", AL.
getLastArgValue
(OPT_C));
85
EXPECT_EQ("adena", AL.
getLastArgValue
(OPT_D));
89
EXPECT_EQ("42", AL.
getLastArgValue
(OPT_F));
135
EXPECT_EQ("foo", AL.
getLastArgValue
(OPT_SLASH_C));
136
EXPECT_EQ("bar", AL.
getLastArgValue
(OPT_C));
/external/clang/tools/driver/
cc1as_main.cpp
187
Opts.Triple = llvm::Triple::normalize(Args.
getLastArgValue
(OPT_triple));
188
Opts.CPU = Args.
getLastArgValue
(OPT_target_cpu);
204
Opts.DwarfDebugFlags = Args.
getLastArgValue
(OPT_dwarf_debug_flags);
205
Opts.DwarfDebugProducer = Args.
getLastArgValue
(OPT_dwarf_debug_producer);
206
Opts.DebugCompilationDir = Args.
getLastArgValue
(OPT_fdebug_compilation_dir);
207
Opts.MainFileName = Args.
getLastArgValue
(OPT_main_file_name);
225
Opts.OutputPath = Args.
getLastArgValue
(OPT_o);
252
Opts.RelocationModel = Args.
getLastArgValue
(OPT_mrelocation_model, "pic");
/external/clang/lib/Frontend/
CompilerInvocation.cpp
252
Opts.AnalyzeSpecificFunction = Args.
getLastArgValue
(OPT_analyze_function);
497
Opts.SplitDwarfFile = Args.
getLastArgValue
(OPT_split_dwarf_file);
516
Opts.DwarfDebugFlags = Args.
getLastArgValue
(OPT_dwarf_debug_flags);
532
Opts.SampleProfileFile = Args.
getLastArgValue
(OPT_fprofile_sample_use_EQ);
536
Args.
getLastArgValue
(OPT_fprofile_instrument_path_EQ);
538
Args.
getLastArgValue
(OPT_fprofile_instrument_use_path_EQ);
551
Opts.DebugPass = Args.
getLastArgValue
(OPT_mdebug_pass);
557
Opts.FloatABI = Args.
getLastArgValue
(OPT_mfloat_abi);
559
Opts.LimitFloatPrecision = Args.
getLastArgValue
(OPT_mlimit_float_precision);
589
Opts.RelocationModel = Args.
getLastArgValue
(OPT_mrelocation_model, "pic")
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cvtres/
llvm-cvtres.cpp
115
std::string MachineString = InputArgs.
getLastArgValue
(OPT_MACHINE).upper();
139
OutputFile = InputArgs.
getLastArgValue
(OPT_OUT);
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
llvm-rc.cpp
143
if (InputArgs.
getLastArgValue
(OPT_CODEPAGE)
146
InputArgs.
getLastArgValue
(OPT_CODEPAGE));
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-dlltool/
DlltoolDriver.cpp
155
std::string Path = Args.
getLastArgValue
(OPT_l);
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mt/
llvm-mt.cpp
130
OutputFile = InputArgs.
getLastArgValue
(OPT_out);
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
llvm-objcopy.cpp
587
Config.InputFormat = InputArgs.
getLastArgValue
(OBJCOPY_input_target);
588
Config.OutputFormat = InputArgs.
getLastArgValue
(OBJCOPY_output_target);
589
Config.BinaryArch = InputArgs.
getLastArgValue
(OBJCOPY_binary_architecture);
591
Config.SplitDWO = InputArgs.
getLastArgValue
(OBJCOPY_split_dwo);
592
Config.AddGnuDebugLink = InputArgs.
getLastArgValue
(OBJCOPY_add_gnu_debuglink);
679
InputArgs.
getLastArgValue
(STRIP_output, Positional[0]);
/external/llvm/include/llvm/Option/
ArgList.h
232
///
getLastArgValue
- Return the value of the last argument, or a default.
233
StringRef
getLastArgValue
(OptSpecifier Id,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/
ArgList.cpp
87
StringRef ArgList::
getLastArgValue
(OptSpecifier Id, StringRef Default) const {
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/
ArgList.h
281
///
getLastArgValue
- Return the value of the last argument, or a default.
282
StringRef
getLastArgValue
(OptSpecifier Id, StringRef Default = "") const;
/external/llvm/lib/Option/
ArgList.cpp
234
StringRef ArgList::
getLastArgValue
(OptSpecifier Id,
/external/clang/lib/Driver/
ToolChains.cpp
[
all
...]
Tools.cpp
[
all
...]
Driver.cpp
[
all
...]
Completed in 1803 milliseconds