Lines Matching full:arglist
1 //===--- ArgList.h - Argument List Management ----------*- C++ -*-===//
28 class ArgList;
31 /// arg_iterator - Iterates through arguments stored inside an ArgList.
37 const ArgList &Args;
59 const ArgList &_Args, OptSpecifier _Id0 = 0U,
89 /// ArgList - Ordered collection of driver arguments.
91 /// The ArgList class manages a list of Arg instances as well as
95 class ArgList {
97 ArgList(const ArgList &) LLVM_DELETED_FUNCTION;
98 void operator=(const ArgList &) LLVM_DELETED_FUNCTION;
112 ArgList();
115 virtual ~ArgList();
277 /// lifetime will match that of the ArgList.
297 class InputArgList : public ArgList {
301 /// This is mutable since we treat the ArgList as being the list
308 /// This is mutable since we treat the ArgList as being the list
343 class DerivedArgList : public ArgList {