/llvm-project/llvm/lib/Option/ |
H A D | Option.cpp | 116 const size_t ArgStringSize = StringRef(Args.getArgString(Index)).size(); in acceptInternal() 124 const char *Value = Args.getArgString(Index) + SpellingSize; in acceptInternal() 129 const char *Str = Args.getArgString(Index) + SpellingSize; in acceptInternal() 162 Args.getArgString(Index - 1) == nullptr) in acceptInternal() 166 Args.getArgString(Index - 1)); in acceptInternal() 177 Args.getArgString(Index - getNumArgs())); in acceptInternal() 179 A->getValues().push_back(Args.getArgString(Index - getNumArgs() + i)); in acceptInternal() 185 const char *Value = Args.getArgString(Index) + SpellingSize; in acceptInternal() 192 Args.getArgString(Index - 1) == nullptr) in acceptInternal() 196 Args.getArgString(Inde in acceptInternal() [all...] |
H A D | ArgList.cpp | 187 StringRef Cur = getArgString(Index); in GetOrMakeJoinedArgString() 238 return getArgString(MakeIndex(Str)); in MakeArgStringRef() 264 Index, BaseArgs.getArgString(Index), BaseArg)); in MakePositionalArg() 273 Index, BaseArgs.getArgString(Index + 1), BaseArg)); in MakeSeparateArg() 282 BaseArgs.getArgString(Index) + Opt.getName().size(), BaseArg)); in MakeJoinedArg()
|
H A D | OptTable.cpp | 355 const char *CStr = Args.getArgString(Index); in parseOneArgGrouped() 377 Opt.accept(Args, StringRef(Args.getArgString(Index), ArgSize), in parseOneArgGrouped() 440 StringRef Str = Args.getArgString(Index); in internalParseOneArg() 481 Opt.accept(Args, StringRef(Args.getArgString(Index), ArgSize), in internalParseOneArg() 539 if (Args.getArgString(Index) == nullptr) { in internalParseArgs() 544 StringRef Str = Args.getArgString(Index); in internalParseArgs() 555 Args.getArgString(Index))); in internalParseArgs() 593 ErrorFn((Twine(Args.getArgString(MAI)) + ": missing argument").str()); in parseArgs()
|
/llvm-project/llvm/include/llvm/Option/ |
H A D | ArgList.h | 275 virtual const char *getArgString(unsigned Index) const = 0; 438 const char *getArgString(unsigned Index) const override { in getArgString() function 476 const char *getArgString(unsigned Index) const override { in getArgString() function 477 return BaseArgs.getArgString(Index); in getArgString()
|
/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | COFFDirectiveParser.cpp | 68 Result.getArgString(missingIndex) + in parse()
|
/llvm-project/llvm/tools/opt-viewer/ |
H A D | optrecord.py | 159 def getArgString(self, mapping): member in Remark 220 values = [self.getArgString(mapping) for mapping in self.Args]
|
/llvm-project/lld/Common/ |
H A D | Args.cpp | 39 StringRef spelling = args.getArgString(a->getIndex()); in getInteger()
|
/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/ |
H A D | DlltoolDriver.cpp | 170 llvm::errs() << Args.getArgString(MissingIndex) << ": missing argument\n"; in dlltoolDriverMain()
|
/llvm-project/lld/ELF/ |
H A D | DriverUtils.cpp | 129 ErrAlways(ctx) << args.getArgString(missingIndex) << ": missing argument"; in parse()
|
/llvm-project/lld/COFF/ |
H A D | DriverUtils.cpp | 822 ctx.config.argv.emplace_back(args.getArgString(arg->getIndex())); in convertResToCOFF() 830 Fatal(ctx) << args.getArgString(missingIndex) << ": missing argument"; in convertResToCOFF() 885 Fatal(ctx) << result.args.getArgString(missingIndex) in getQuotingStyle()
|
/llvm-project/lld/MachO/ |
H A D | DriverUtils.cpp | 115 error(Twine(args.getArgString(missingIndex)) + ": missing argument"); in parse()
|
/llvm-project/llvm/lib/ToolDrivers/llvm-lib/ |
H A D | LibDriver.cpp | 332 << Args.getArgString(MissingIndex) << "\", expected " in libDriverMain()
|
/llvm-project/lld/MinGW/ |
H A D | Driver.cpp | 125 error(StringRef(args.getArgString(missingIndex)) + ": missing argument"); in parse()
|
/llvm-project/lldb/tools/driver/ |
H A D | Driver.cpp | 765 << input_args.getArgString(MissingArgIndex) in main()
|
/llvm-project/clang/tools/driver/ |
H A D | cc1as_main.cpp | 244 << Args.getArgString(MissingArgIndex) << MissingArgCount; in CreateFromArgs()
|
/llvm-project/llvm/tools/llvm-objcopy/ |
H A D | ObjcopyOptions.cpp | 710 InputArgs.getArgString(MissingArgumentIndex), MissingArgumentCount); in parseObjcopyOptions() 1314 StringRef(InputArgs.getArgString(MissingArgumentIndex)) + in parseBitcodeStripOptions()
|
/llvm-project/llvm/tools/llvm-lipo/ |
H A D | llvm-lipo.cpp | 161 StringRef(InputArgs.getArgString(MissingArgumentIndex)) + in parseLipoOptions()
|
/llvm-project/lld/wasm/ |
H A D | Driver.cpp | 253 error(Twine(args.getArgString(missingIndex)) + ": missing argument"); in getArchiveMembers()
|
/llvm-project/flang/lib/Frontend/ |
H A D | CompilerInvocation.cpp | 1341 << args.getArgString(missingArgIndex) << missingArgCount;
|
/llvm-project/clang/lib/Frontend/ |
H A D | CompilerInvocation.cpp | 1209 os << Args.getArgString(i); in initOption() 4941 << Args.getArgString(MissingArgIndex) << MissingArgCount; in getModuleHash()
|
/llvm-project/clang/lib/Driver/ |
H A D | Driver.cpp | 324 << Args.getArgString(MissingArgIndex) << MissingArgCount; in ParseArgStrings() 1147 Arg *Copy = new Arg(Opt->getOption(), Args.getArgString(Index), Index); in loadDefaultConfigFiles() 1158 Args.getArgString(Index), Index); in loadDefaultConfigFiles()
|
/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | Clang.cpp | 9024 auto ArchStr = StringRef(TCArgs.getArgString(ArgIndex)); in ConstructJob() 9118 StringRef ArchStr = StringRef(TCArgs.getArgString(ArgIndex));
|