OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputArgs
(Results
1 - 10
of
10
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
ConfigManager.cpp
670
llvm::opt::InputArgList
InputArgs
=
673
if (
InputArgs
.size() == 0 && DashDash == RawArgsArr.end()) {
678
if (
InputArgs
.hasArg(OBJCOPY_help)) {
683
if (
InputArgs
.hasArg(OBJCOPY_version)) {
691
for (auto Arg :
InputArgs
.filtered(OBJCOPY_UNKNOWN))
693
Arg->getAsString(
InputArgs
).c_str());
695
for (auto Arg :
InputArgs
.filtered(OBJCOPY_INPUT))
710
if (
InputArgs
.hasArg(OBJCOPY_target) &&
711
(
InputArgs
.hasArg(OBJCOPY_input_target) ||
712
InputArgs
.hasArg(OBJCOPY_output_target))
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-ml/
llvm-ml.cpp
131
const opt::ArgList &
InputArgs
) {
143
Parser->setShowParsedOperands(
InputArgs
.hasArg(OPT_show_inst_operands));
150
auto Defines =
InputArgs
.getAllArgValues(OPT_define);
179
opt::InputArgList
InputArgs
=
183
for (auto *Arg :
InputArgs
.filtered(OPT_INPUT)) {
184
std::string ArgString = Arg->getAsString(
InputArgs
);
205
for (auto *Arg :
InputArgs
.filtered(OPT_assembly_file)) {
211
InputFilename = Arg->getAsString(
InputArgs
);
214
for (auto *Arg :
InputArgs
.filtered(OPT_unsupported_Group)) {
220
if (
InputArgs
.hasArg(OPT_help))
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-mt/
llvm-mt.cpp
89
opt::InputArgList
InputArgs
= T.ParseArgs(ArgsArr, MAI, MAC);
91
for (auto *Arg :
InputArgs
.filtered(OPT_INPUT)) {
92
auto ArgString = Arg->getAsString(
InputArgs
);
104
for (auto &Arg :
InputArgs
) {
111
if (
InputArgs
.hasArg(OPT_help)) {
116
std::vector<std::string> InputFiles =
InputArgs
.getAllArgValues(OPT_manifest);
123
if (
InputArgs
.hasArg(OPT_out)) {
124
OutputFile =
InputArgs
.getLastArgValue(OPT_out);
/src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
llvm-rc.cpp
353
opt::InputArgList
InputArgs
= T.ParseArgs(ArgsArr, MAI, MAC);
356
if (
InputArgs
.hasArg(WINDRES_help)) {
362
if (
InputArgs
.hasArg(WINDRES_version)) {
368
std::vector<std::string> FileArgs =
InputArgs
.getAllArgValues(WINDRES_INPUT);
371
if (
InputArgs
.hasArg(WINDRES_input)) {
372
Opts.InputFile =
InputArgs
.getLastArgValue(WINDRES_input).str();
381
if (
InputArgs
.hasArg(WINDRES_output)) {
382
Opts.OutputFile =
InputArgs
.getLastArgValue(WINDRES_output).str();
391
if (
InputArgs
.hasArg(WINDRES_input_format)) {
393
parseFormat(
InputArgs
.getLastArgValue(WINDRES_input_format))
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/
llvm-cvtres.cpp
123
opt::InputArgList
InputArgs
= T.ParseArgs(ArgsArr, MAI, MAC);
125
if (
InputArgs
.hasArg(OPT_HELP)) {
130
bool Verbose =
InputArgs
.hasArg(OPT_VERBOSE);
134
if (opt::Arg *Arg =
InputArgs
.getLastArg(OPT_MACHINE)) {
146
std::vector<std::string> InputFiles =
InputArgs
.getAllArgValues(OPT_INPUT);
154
if (opt::Arg *Arg =
InputArgs
.getLastArg(OPT_OUT)) {
162
if (llvm::opt::Arg *Arg =
InputArgs
.getLastArg(OPT_TIMESTAMP)) {
/src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
llvm-objdump.cpp
2344
static void parseIntArg(const llvm::opt::InputArgList &
InputArgs
, int ID,
2346
if (const opt::Arg *A =
InputArgs
.getLastArg(ID)) {
2357
commaSeparatedValues(const llvm::opt::InputArgList &
InputArgs
, int ID) {
2359
for (StringRef Value :
InputArgs
.getAllArgValues(ID)) {
2368
static void parseOtoolOptions(const llvm::opt::InputArgList &
InputArgs
) {
2373
ArchName =
InputArgs
.getLastArgValue(OTOOL_arch).str();
2374
LinkOptHints =
InputArgs
.hasArg(OTOOL_C);
2375
if (
InputArgs
.hasArg(OTOOL_d))
2377
DylibId =
InputArgs
.hasArg(OTOOL_D);
2378
UniversalHeaders =
InputArgs
.hasArg(OTOOL_f)
[
all
...]
MachODump.h
33
void parseMachOOptions(const llvm::opt::InputArgList &
InputArgs
);
MachODump.cpp
95
void objdump::parseMachOOptions(const llvm::opt::InputArgList &
InputArgs
) {
96
FirstPrivateHeader =
InputArgs
.hasArg(OBJDUMP_private_header);
97
ExportsTrie =
InputArgs
.hasArg(OBJDUMP_exports_trie);
98
Rebase =
InputArgs
.hasArg(OBJDUMP_rebase);
99
Rpaths =
InputArgs
.hasArg(OBJDUMP_rpaths);
100
Bind =
InputArgs
.hasArg(OBJDUMP_bind);
101
LazyBind =
InputArgs
.hasArg(OBJDUMP_lazy_bind);
102
WeakBind =
InputArgs
.hasArg(OBJDUMP_weak_bind);
103
UseDbg =
InputArgs
.hasArg(OBJDUMP_g);
104
DSYMFile =
InputArgs
.getLastArgValue(OBJDUMP_dsym_EQ).str()
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-lipo/
llvm-lipo.cpp
153
opt::InputArgList
InputArgs
=
158
StringRef(
InputArgs
.getArgString(MissingArgumentIndex)) +
161
if (
InputArgs
.size() == 0) {
167
if (
InputArgs
.hasArg(LIPO_help)) {
173
if (
InputArgs
.hasArg(LIPO_version)) {
179
for (auto Arg :
InputArgs
.filtered(LIPO_UNKNOWN))
180
reportError("unknown argument '" + Arg->getAsString(
InputArgs
) + "'");
182
for (auto Arg :
InputArgs
.filtered(LIPO_INPUT))
184
for (auto Arg :
InputArgs
.filtered(LIPO_arch)) {
195
if (
InputArgs
.hasArg(LIPO_output)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCWin64EH.cpp
677
InputArgs
,
766
Location =
InputArgs
;
792
if (Location != IntRegs && Location != FloatRegs && Location !=
InputArgs
)
794
Location =
InputArgs
;
800
Location !=
InputArgs
&& Location != StackAdjust)
816
Location !=
InputArgs
)
Completed in 48 milliseconds
Indexes created Tue Feb 24 01:34:59 UTC 2026