OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputArgList
(Results
1 - 14
of
14
) sorted by null
/external/clang/include/clang/Driver/
Compilation.h
21
class
InputArgList
;
42
llvm::opt::
InputArgList
*Args;
74
llvm::opt::
InputArgList
*Args,
82
const llvm::opt::
InputArgList
&getInputArgs() const { return *Args; }
Driver.h
32
class
InputArgList
;
184
TranslateInputArgs(const llvm::opt::
InputArgList
&Args) const;
251
llvm::opt::
InputArgList
*ParseArgStrings(ArrayRef<const char *> Args);
ToolChain.h
26
class
InputArgList
;
/external/llvm/include/llvm/Option/
OptTable.h
21
class
InputArgList
;
132
/// \brief Parse an list of arguments into an
InputArgList
.
134
/// The resulting
InputArgList
will reference the strings in [\p ArgBegin,
136
///
InputArgList
.
150
/// \return An
InputArgList
; on error this will contain all the options
152
InputArgList
*ParseArgs(const char* const *ArgBegin,
ArgList.h
287
class
InputArgList
: public ArgList {
307
InputArgList
(const char* const *ArgBegin, const char* const *ArgEnd);
308
~
InputArgList
();
334
const
InputArgList
&BaseArgs;
341
DerivedArgList(const
InputArgList
&BaseArgs);
352
const
InputArgList
&getBaseArgs() const {
/external/llvm/unittests/Option/
OptionParsingTest.cpp
71
OwningPtr<
InputArgList
> AL(T.ParseArgs(Args, array_endof(Args), MAI, MAC));
114
OwningPtr<
InputArgList
> AL;
145
OwningPtr<
InputArgList
> AL(T.ParseArgs(MyArgs, array_endof(MyArgs), MAI, MAC));
154
OwningPtr<
InputArgList
> AL(T.ParseArgs(MyArgs, array_endof(MyArgs), MAI, MAC));
165
OwningPtr<
InputArgList
> AL(T.ParseArgs(MyArgs, array_endof(MyArgs), MAI, MAC));
/external/llvm/lib/Option/
ArgList.cpp
311
InputArgList
::
InputArgList
(const char* const *ArgBegin,
317
InputArgList
::~
InputArgList
() {
318
// An
InputArgList
always owns its arguments.
323
unsigned
InputArgList
::MakeIndex(StringRef String0) const {
333
unsigned
InputArgList
::MakeIndex(StringRef String0,
342
const char *
InputArgList
::MakeArgString(StringRef Str) const {
348
DerivedArgList::DerivedArgList(const
InputArgList
&_BaseArgs)
OptTable.cpp
242
InputArgList
*OptTable::ParseArgs(const char *const *ArgBegin,
248
InputArgList
*Args = new
InputArgList
(ArgBegin, ArgEnd);
/frameworks/compile/slang/
llvm-rs-cc.cpp
57
using llvm::opt::
InputArgList
;
193
llvm::OwningPtr<
InputArgList
> Args(
/external/clang/lib/Driver/
Compilation.cpp
30
InputArgList
*_Args, DerivedArgList *_TranslatedArgs)
Driver.cpp
110
InputArgList
*Driver::ParseArgStrings(ArrayRef<const char *> ArgList) {
119
InputArgList
*Args = getOpts().ParseArgs(ArgList.begin(), ArgList.end(),
189
DerivedArgList *Driver::TranslateInputArgs(const
InputArgList
&Args) const {
295
InputArgList
*Args = ParseArgStrings(ArgList.slice(1));
[
all
...]
/external/clang/tools/driver/
cc1as_main.cpp
156
OwningPtr<
InputArgList
> Args(
driver.cpp
335
OwningPtr<
InputArgList
> Args(CC1Opts->ParseArgs(argv.begin()+1, argv.end(),
/external/clang/lib/Frontend/
CompilerInvocation.cpp
[
all
...]
Completed in 527 milliseconds