HomeSort by relevance Sort by last modified time
    Searched refs:Args (Results 26 - 50 of 537) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/command/dump/
Args.java 22 class Args {
  /external/clang/include/clang/AST/
SelectorLocationsKind.h 48 ArrayRef<Expr *> Args,
60 ArrayRef<Expr *> Args,
66 ArrayRef<ParmVarDecl *> Args,
78 ArrayRef<ParmVarDecl *> Args,
  /external/clang/test/SemaCXX/
generic-selection.cpp 30 template <unsigned Arg, unsigned... Args> struct Or {
31 enum { result = Arg | Or<Args...>::result };
38 template <class... Args> struct TypeMask {
40 result = Or<_Generic(Args(), int: 1, long: 2, short: 4, float: 8)...>::result
  /external/lldb/include/lldb/Interpreter/
OptionValueArgs.h 35 GetArgs (Args &args);
  /external/lldb/source/Commands/
CommandObjectBreakpoint.h 41 VerifyBreakpointIDs (Args &args, Target *target, CommandReturnObject &result, BreakpointIDList *valid_ids);
CommandObjectQuit.h 36 DoExecute (Args& args,
CommandObjectWatchpoint.h 37 VerifyWatchpointIDs(Target *target, Args &args, std::vector<uint32_t> &wp_ids);
CommandObjectVersion.cpp 39 CommandObjectVersion::DoExecute (Args& args, CommandReturnObject &result)
41 if (args.GetArgumentCount() == 0)
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p9-0x.cpp 23 template<typename ...Args>
24 typename get_nth_type<0, Args...>::type first_arg(Args...);
26 template<typename ...Args>
27 typename get_nth_type<1, Args...>::type second_arg(Args...);
  /external/llvm/lib/Option/
Option.cpp 31 assert(getAlias().isValid() && "Only alias options can have alias args.");
32 assert(getKind() == FlagClass && "Only Flag aliases can have alias args.");
34 "Cannot provide alias args to a flag option.");
103 Arg *Option::accept(const ArgList &Args,
110 Spelling = StringRef(Args.getArgString(Index), ArgSize);
112 Spelling = Args.MakeArgString(Twine(UnaliasedOption.getPrefix()) +
118 if (ArgSize != strlen(Args.getArgString(Index)))
134 const char *Value = Args.getArgString(Index) + ArgSize;
139 const char *Str = Args.getArgString(Index) + ArgSize;
168 if (ArgSize != strlen(Args.getArgString(Index))
    [all...]
  /external/clang/lib/Driver/
SanitizerArgs.cpp 38 const llvm::opt::ArgList &Args) {
48 for (ArgList::const_reverse_iterator I = Args.rbegin(), E = Args.rend();
51 if (!parse(D, Args, *I, Add, Remove, true))
62 Add = filterUnsupportedKinds(TC, Add, Args, *I, /*DiagnoseErrors=*/true,
69 Add = filterUnsupportedKinds(TC, Add, Args, *I, /*DiagnoseErrors=*/false,
76 Args.hasFlag(options::OPT_fsanitize_undefined_trap_on_error,
82 << lastArgumentForKind(D, Args, NotAllowedWithTrap)
93 << lastArgumentForKind(D, Args, NeedsAsanRt)
94 << lastArgumentForKind(D, Args, NeedsTsanRt)
    [all...]
ToolChains.h 104 const llvm::opt::ArgList &Args);
144 const llvm::opt::ArgList &Args,
154 const llvm::opt::ArgList &Args);
198 const llvm::opt::ArgList &Args);
206 StringRef getMachOArchName(const llvm::opt::ArgList &Args) const;
210 virtual void AddLinkARCArgs(const llvm::opt::ArgList &Args,
214 virtual void AddLinkRuntimeLibArgs(const llvm::opt::ArgList &Args,
218 addStartObjectFileArgs(const llvm::opt::ArgList &Args,
221 virtual void addMinVersionArgs(const llvm::opt::ArgList &Args,
235 void AddLinkRuntimeLib(const llvm::opt::ArgList &Args,
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 161 std::unique_ptr<InputArgList> Args(
168 << Args->getArgString(MissingArgIndex) << MissingArgCount;
173 for (arg_iterator it = Args->filtered_begin(OPT_UNKNOWN),
174 ie = Args->filtered_end();
176 Diags.Report(diag::err_drv_unknown_argument) << (*it)->getAsString(*Args);
183 Opts.Triple = llvm::Triple::normalize(Args->getLastArgValue(OPT_triple));
184 Opts.CPU = Args->getLastArgValue(OPT_target_cpu);
185 Opts.Features = Args->getAllArgValues(OPT_target_feature);
192 Opts.IncludePaths = Args->getAllArgValues(OPT_I);
193 Opts.NoInitialTextSection = Args->hasArg(OPT_n)
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
sizeofpack.cpp 19 array<sizeof...(Types)> make_array1(Types&&... args);
28 int make_array(array<sizeof...(Types)>&, Types... args);
41 static array<sizeof...(Types)> make_array(Types ... args);
83 template<class Ex, typename... Args>
84 void cxx_throw(typename enable_if<(sizeof...(Args) > 0), const char *>::type fmt, Args&&... args) {
123 template<typename T, typename... Args>
126 static const int count = 1 + Counter<Args...>::count;
135 template<typename Arg, typename... Args>
    [all...]
fixed-expansion.cpp 70 template <typename ...Args> tuple<Args...> &foo(Foo<Args...>);
130 template<typename... Args> struct foo { };
131 template<typename T, typename... Args> using bar = foo<T, Args...>; // expected-note 2{{template parameter is declared here}} expected-note {{'bar' declared here}}
132 template<typename T, typename... Args> using baz = bar<Args..., T>; // expected-error {{pack expansion used as argument for non-pack parameter of alias template}}
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 197 std::vector<ffi_type*> args(NumArgs);
202 args[ArgNo] = ffiTypeFor(ArgTy);
221 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, &args[0]) == FFI_OK) {
303 const std::vector<GenericValue> &Args) {
304 assert(Args.size() == 1);
305 TheInterpreter->addAtExitHandler((Function*)GVTOP(Args[0]));
314 const std::vector<GenericValue> &Args) {
315 TheInterpreter->exitCalled(Args[0]);
322 const std::vector<GenericValue> &Args) {
333 const std::vector<GenericValue> &Args) {
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.cpp 37 TargetLowering::ArgListTy Args;
40 Entry.Node = Dst; Args.push_back(Entry);
41 Entry.Node = Src; Args.push_back(Entry);
42 Entry.Node = Size; Args.push_back(Entry);
49 std::move(Args), 0)
  /external/chromium_org/tools/gn/
args.cc 5 #include "tools/gn/args.h"
29 " If specified, arguments from the --args command line flag are used. If\n"
30 " that flag is not specified, args from previous builds in the build\n"
31 " directory will be used (this is in the file args.gn in the build\n"
46 " gn args out/FooBar\n"
52 " gn gen out/FooBar --args=\"enable_doom_melon=true os=\\\"android\\\"\"\n"
54 " (Note that the quotes inside the args command will usually need to\n"
67 " to specify build args in an \"import\"-ed file if you want such\n"
70 Args::Args() {
    [all...]
  /external/clang/test/Index/
annotate-tokens-cxx0x.cpp 1 template<typename ...Args>
2 int f(Args ...args) {
3 return sizeof...(args) + sizeof...(Args);
69 // CHECK: Identifier: "args" [3:20 - 3:24] SizeOfPackExpr=args:2:15
70 // CHECK: Identifier: "Args" [3:38 - 3:42] TypeRef=Args:1:22
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 1 //===--- CreateInvocationFromCommandLine.cpp - CompilerInvocation from Args ==//
41 SmallVector<const char *, 16> Args;
42 Args.push_back("<clang>"); // FIXME: Remove dummy argument.
43 Args.insert(Args.end(), ArgList.begin(), ArgList.end());
46 Args.push_back("-fsyntax-only");
55 std::unique_ptr<driver::Compilation> C(TheDriver.BuildCompilation(Args));
  /external/clang/test/FixIt/
fixit-cxx0x.cpp 143 template <typename Args...> // expected-error {{'...' must immediately precede declared identifier}}
144 void misplacedEllipsisInTypeParameter(Args...);
146 template <typename... Args...> // expected-error {{'...' must immediately precede declared identifier}}
147 void redundantEllipsisInTypeParameter(Args...);
149 template <template <typename> class Args...> // expected-error {{'...' must immediately precede declared identifier}}
150 void misplacedEllipsisInTemplateTypeParameter(Args<int>...);
152 template <template <typename> class... Args...> // expected-error {{'...' must immediately precede declared identifier}}
153 void redundantEllipsisInTemplateTypeParameter(Args<int>...);
  /external/clang/unittests/Tooling/
ToolingTest.cpp 144 std::vector<std::string> Args;
145 Args.push_back("tool-executable");
146 Args.push_back("-Idef");
147 Args.push_back("-fsyntax-only");
148 Args.push_back("test.cpp");
149 clang::tooling::ToolInvocation Invocation(Args, new SyntaxOnlyAction,
163 std::vector<std::string> Args;
164 Args.push_back("tool-executable");
165 Args.push_back("-Idef");
166 Args.push_back("-fsyntax-only")
    [all...]
  /external/clang/unittests/AST/
ExternalASTSourceTest.cpp 54 const char *Args[] = { "test.cc" };
55 CompilerInvocation::CreateFromArgs(*Invocation, Args,
56 Args + array_lengthof(Args),
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 44 TargetLowering::ArgListTy Args;
48 Args.push_back(Entry);
50 Args.push_back(Entry);
54 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args), 0)
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 112 static cl::list<std::string> OptArgs("opt-args", cl::Positional,
172 SmallVector<const char*, 8> Args;
174 Args.push_back("valgrind");
175 Args.push_back("--error-exitcode=1");
176 Args.push_back("-q");
177 Args.push_back(tool.c_str());
179 Args.push_back(tool.c_str());
181 Args.push_back("-o");
182 Args.push_back(OutputFilename.c_str());
184 Args.push_back(OptArgs[i].c_str())
    [all...]

Completed in 483 milliseconds

12 3 4 5 6 7 8 91011>>