HomeSort by relevance Sort by last modified time
    Searched refs:Args (Results 276 - 300 of 513) sorted by null

<<11121314151617181920>>

  /external/clang/lib/Driver/
WindowsToolChain.cpp 42 const ArgList &Args)
43 : ToolChain(D, Triple, Args) {
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
multi-level-substitution.cpp 266 template<typename... Args>
267 auto f() -> int(&)[sizeof...(Args)];
  /external/clang/test/Parser/
cxx-altivec.cpp 174 template<typename... Args> void PR16874() {
175 (void) (Args::foo()...); // expected-error {{expression contains unexpanded parameter pack 'Args'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
  /external/clang/tools/clang-check/
ClangCheck.cpp 155 Adjust(const CommandLineArguments &Args) override {
156 CommandLineArguments Return(Args);
  /external/lldb/include/lldb/Interpreter/
CommandInterpreter.h 25 #include "lldb/Interpreter/Args.h"
257 HandleCompletionMatches (Args &input,
360 Args &cmd_args,
  /external/llvm/lib/Target/R600/
R600TextureIntrinsicsReplacer.cpp 135 Value *Args[] = {
153 I.replaceAllUsesWith(Builder.CreateCall(F, Args));
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 179 SmallVector<Value*, 8> Args(II->op_begin(), II->op_end() - 3);
181 CallInst *Call = CallInst::Create(II->getCalledValue(), Args, "", II);
  /external/chromium_org/tools/grit/grit/
util.py 57 Args:
67 Args:
78 def _GetCommonBaseDirectory(*args):
81 Args:
84 prefix = os.path.commonprefix(args)
98 for path in args:
152 Args:
200 Args:
276 Args:
293 Args
    [all...]
  /external/lldb/source/Commands/
CommandObjectBreakpointCommand.cpp 434 m_script_language = (lldb::ScriptLanguage) Args::StringToOptionEnum (option_arg,
452 m_stop_on_error = Args::StringToBoolean(option_arg, false, &success);
509 DoExecute (Args& command, CommandReturnObject &result)
691 DoExecute (Args& command, CommandReturnObject &result)
788 DoExecute (Args& command,
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp 29 #include "lldb/Interpreter/Args.h"
366 reg_info.byte_size = Args::StringToUInt32(value.c_str(), 0, 0) / CHAR_BIT;
370 uint32_t offset = Args::StringToUInt32(value.c_str(), UINT32_MAX, 0);
378 const Encoding encoding = Args::StringToEncoding (value.c_str());
385 if (Args::StringToFormat (value.c_str(), format, NULL).Success())
418 reg_info.kinds[eRegisterKindGCC] = Args::StringToUInt32(value.c_str(), LLDB_INVALID_REGNUM, 0);
422 reg_info.kinds[eRegisterKindDWARF] = Args::StringToUInt32(value.c_str(), LLDB_INVALID_REGNUM, 0);
426 reg_info.kinds[eRegisterKindGeneric] = Args::StringToGenericRegister (value.c_str());
437 uint32_t reg = Args::StringToUInt32 (value_pair.first.str().c_str(), LLDB_INVALID_REGNUM, 16);
452 uint32_t reg = Args::StringToUInt32 (value_pair.first.str().c_str(), LLDB_INVALID_REGNUM, 16)
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.h 521 /// Args - This is a list of all of the arguments to this pattern (for
523 std::vector<std::string> Args;
575 unsigned getNumArgs() const { return Args.size(); }
577 assert(i < Args.size() && "Argument reference out of range!");
578 return Args[i];
580 std::vector<std::string> &getArgList() { return Args; }
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h     [all...]
CGExprScalar.cpp     [all...]
  /external/clang/tools/libclang/
Indexing.cpp 291 SourceRange Range, const MacroArgs *Args) override {}
539 std::unique_ptr<std::vector<const char *>> Args(
544 ArgsCleanup(Args.get());
546 Args->insert(Args->end(), command_line_args,
555 Args->push_back(source_filename);
558 CInvok(createInvocationFromCommandLine(*Args, Diags));
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16ISelLowering.cpp 294 (ArgListTy &Args) const {
296 if (Args.size() >= 1) {
297 Type *t = Args[0].Ty;
306 if (Args.size() >=2) {
307 Type *t = Args[1].Ty;
373 (Type* RetTy, ArgListTy &Args, bool &needHelper) const {
374 const unsigned int stubNum = getMips16HelperFunctionStubNumber(Args);
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 232 /*Args=*/nullptr);
237 /// Args - If this is a function-like macro expansion, this contains,
240 MacroArgs *Args = nullptr;
252 Args = ReadFunctionLikeMacroArgs(Identifier, MI, ExpansionEnd);
254 // Finished parsing args.
258 if (!Args) return true;
281 Callbacks->MacroExpands(Identifier, MD, ExpansionRange, Args);
285 // FIXME: We lose macro args info with delayed callback.
287 /*Args=*/nullptr);
317 if (Args) Args->destroy(*this)
    [all...]
PPLexerChange.cpp 162 MacroInfo *Macro, MacroArgs *Args) {
165 TokLexer = new TokenLexer(Tok, ILEnd, Macro, Args, *this);
168 TokLexer->Init(Tok, ILEnd, Macro, Args);
  /external/lldb/include/lldb/Target/
Process.h 41 #include "lldb/Interpreter/Args.h"
65 Args
69 SetExtraStartupCommands (const Args &args);
263 Args &
269 const Args &
293 SetArguments (const Args& args, bool first_arg_is_executable);
298 Args &
304 const Args
    [all...]
  /external/chromium_org/chrome/tools/
webforms_aggregator.py 82 Args:
117 Args:
332 Args:
379 Args:
423 Args:
498 Args:
516 Args:
603 Args:
630 Args:
731 (options, args) = parser.parse_args(
    [all...]
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
pnacl_translate_thread.cc 34 typedef std::vector<std::string> Args;
35 Args args; local
40 args.push_back(MakeCommandLineArg("-split-module=", obj_files_size));
41 args.push_back(MakeCommandLineArg("-O=", opt_level));
43 args.push_back("-bitcode-format=llvm");
45 args.push_back("-mattr=" + architecture_attributes);
47 for (Args::const_iterator arg(args.begin()); arg != args.end(); ++arg)
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
text_format.py 149 Args:
164 Args:
244 Args:
357 Args:
371 Args:
552 Args:
626 Args:
652 Args:
684 Args:
707 Args
    [all...]
  /external/clang/test/Misc/
diag-template-diffing.cpp     [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
pmu-bison.c 646 # define YYDPRINTF(Args) \
649 YYFPRINTF Args; \
803 # define YYDPRINTF(Args)
    [all...]
  /external/llvm/lib/Option/
ArgList.cpp 22 for (; Current != Args.end(); ++Current) {
40 Args.push_back(A);
44 Args.erase(std::remove_if(begin(), end(),

Completed in 3138 milliseconds

<<11121314151617181920>>