/external/clang/lib/ASTMatchers/Dynamic/ |
Parser.cpp | 334 std::vector<ParserValue> Args; 342 // End of args. 346 if (Args.size() > 0) { 358 Args.size() + 1); 366 Args.push_back(ArgValue); 421 *Ctor, MatcherRange, BindID, Args, Error); 510 ArrayRef<ParserValue> Args, Diagnostics *Error) { 512 return Registry::constructMatcher(Ctor, NameRange, Args, Error); 514 return Registry::constructBoundMatcher(Ctor, NameRange, BindID, Args,
|
/external/clang/test/CXX/class.derived/class.virtual/ |
p3-0x.cpp | 40 template<typename... Args> 42 virtual void f(Args...) override; // expected-error {{'f' marked 'override' but does not override any member functions}}
|
/external/clang/test/SemaCXX/ |
captured-statements.cpp | 151 template <typename T, typename... Args> 152 T captured_sum(const T &a, const Args&... args) { 157 result = a + captured_sum(args...);
|
/external/lldb/include/lldb/Interpreter/ |
Options.h | 24 #include "lldb/Interpreter/Args.h" 44 /// Error Args::ParseOptions (Options &); 109 /// Args main_command; 139 /// Get the option definitions to use when parsing Args options. 141 /// @see Args::ParseOptions (Options&) 202 /// @see Args::ParseOptions (Options&) 244 HandleOptionCompletion (Args &input, 296 HandleOptionArgumentCompletion (Args &input,
|
/external/lldb/source/Interpreter/ |
CommandHistory.cpp | 11 #include "lldb/Interpreter/Args.h" 50 size_t idx = Args::StringToUInt32 (input_str+2, 0, 0, &success); 69 uint32_t idx = Args::StringToUInt32 (input_str+1, 0, 0, &success);
|
OptionValueUInt64.cpp | 17 #include "lldb/Interpreter/Args.h" 60 uint64_t value = Args::StringToUInt64 (value_cstr, 0, 0, &success);
|
Property.cpp | 19 #include "lldb/Interpreter/Args.h" 59 m_value_sp.reset (new OptionValueBoolean(Args::StringToBoolean (definition.default_cstr_value, false, NULL))); 111 Args::StringToFormat (definition.default_cstr_value, new_format, NULL); 136 m_value_sp.reset (new OptionValueSInt64(definition.default_cstr_value ? Args::StringToSInt64 (definition.default_cstr_value) : definition.default_uint_value)); 144 m_value_sp.reset (new OptionValueUInt64(definition.default_cstr_value ? Args::StringToUInt64 (definition.default_cstr_value) : definition.default_uint_value));
|
/external/lldb/source/Plugins/Process/Linux/ |
ProcessLinux.cpp | 128 ProcessLinux::ExecutePluginCommand(Args &command, Stream *strm) 134 ProcessLinux::EnablePluginLogging(Stream *strm, Args &command)
|
/external/llvm/lib/Option/ |
OptTable.cpp | 195 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index, 199 const char *Str = Args.getArgString(Index); 238 if (Arg *A = Opt.accept(Args, Index, ArgSize)) 260 InputArgList *Args = new InputArgList(ArgBegin, ArgEnd); 262 // FIXME: Handle '@' args (or at least error on them). 268 StringRef Str = Args->getArgString(Index); 275 Arg *A = ParseOneArg(*Args, Index, FlagsToInclude, FlagsToExclude); 287 Args->append(A); 290 return Args;
|
/external/llvm/lib/Target/AArch64/ |
AArch64CollectLOH.cpp | 634 SmallVector<const MachineInstr *, 2> Args; 635 Args.push_back(L2); 636 Args.push_back(L1); 637 AArch64FI.addLOHDirective(MCLOH_AdrpAdrp, Args); 771 SmallVector<const MachineInstr *, 2> Args; 772 Args.push_back(&Def); 773 Args.push_back(&Use); 777 Args); [all...] |
/external/llvm/lib/Transforms/ObjCARC/ |
ObjCARCContract.cpp | 272 Value *Args[] = { Load->getPointerOperand(), New }; 273 if (Args[0]->getType() != I8XX) 274 Args[0] = new BitCastInst(Args[0], I8XX, "", Store); 275 if (Args[1]->getType() != I8X) 276 Args[1] = new BitCastInst(Args[1], I8X, "", Store); 278 CallInst *StoreStrong = CallInst::Create(Decl, Args, "", Store);
|
/external/lldb/source/Commands/ |
CommandObjectBreakpoint.cpp | 130 m_load_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error); 140 m_column = Args::StringToUInt32 (option_arg, 0); 188 m_catch_bp = Args::StringToBoolean (option_arg, true, &success); 195 m_ignore_count = Args::StringToUInt32(option_arg, UINT32_MAX, 0); 205 value = Args::StringToBoolean (option_arg, true, &success); 217 m_line_num = Args::StringToUInt32 (option_arg, 0); 259 m_thread_id = Args::StringToUInt64(option_arg, LLDB_INVALID_THREAD_ID, 0); 272 m_throw_bp = Args::StringToBoolean (option_arg, true, &success); 280 m_thread_index = Args::StringToUInt32(option_arg, UINT32_MAX, 0); 356 DoExecute (Args& command [all...] |
CommandObjectQuit.cpp | 82 CommandObjectQuit::DoExecute (Args& command, CommandReturnObject &result)
|
CommandObjectSyntax.cpp | 18 #include "lldb/Interpreter/Args.h" 58 CommandObjectSyntax::DoExecute (Args& command, CommandReturnObject &result)
|
CommandObjectExpression.cpp | 18 #include "lldb/Interpreter/Args.h" 90 result = Args::StringToBoolean(option_arg, true, &success); 101 bool tmp_value = Args::StringToBoolean(option_arg, true, &success); 112 result = Args::StringToUInt32(option_arg, 0, 0, &success); 123 bool tmp_value = Args::StringToBoolean(option_arg, true, &success); 482 Args args (command, end_options - command); 483 if (!ParseOptions (args, result))
|
/external/clang/lib/CodeGen/ |
CGClass.cpp | 535 FunctionArgList &Args) { 574 unsigned SrcArgIndex = Args.size() - 1; 576 = CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(Args[SrcArgIndex])); 696 void CodeGenFunction::EmitConstructorBody(FunctionArgList &Args) { 710 EmitDelegateCXXConstructorCall(Ctor, Ctor_Base, Args, Ctor->getLocEnd()); 732 EmitCtorPrologue(Ctor, CtorType, Args); [all...] |
CGAtomic.cpp | 127 CallArgList &args) { 129 CGF.CGM.getTypes().arrangeFreeFunctionCall(resultType, args, 133 return CGF.EmitCall(fnInfo, fn, ReturnValueSlot(), args); 462 AddDirectArgument(CodeGenFunction &CGF, CallArgList &Args, 469 Args.add(RValue::get(Val), ValTy); 472 Args.add(RValue::get(CGF.EmitCastToVoidPtr(Val)), 606 CallArgList Args; 609 Args.add(RValue::get(llvm::ConstantInt::get(SizeTy, Size)), 613 Args.add(RValue::get(EmitCastToVoidPtr(Ptr)), getContext().VoidPtrTy); 635 Args.add(RValue::get(EmitCastToVoidPtr(Val1)), getContext().VoidPtrTy) 902 CallArgList args; local 1052 CallArgList args; local [all...] |
/external/chromium_org/sandbox/win/src/ |
policy_params.h | 16 #define POLPARAMS_BEGIN(type) class type { public: enum Args {
|
/external/chromium_org/tools/cygprofile/ |
mergetraces.py | 22 Args: 58 Args: 74 Args: 127 Args: 196 (_, args) = parser.parse_args() 197 if len(args) <= 1: 198 parser.error('expected at least the following args: trace1 trace2') 205 for trace_file in args: 207 sys.stderr.write(" " + str(step) + "/" + str(len(args)) +
|
/external/clang/unittests/libclang/ |
LibclangTest.cpp | 438 const char *Args[] = { "-fmodules", ModulesCache.c_str(), 440 int NumArgs = sizeof(Args) / sizeof(Args[0]); 441 ClangTU = clang_parseTranslationUnit(Index, MName.c_str(), Args, NumArgs,
|
/external/llvm/include/llvm/Option/ |
OptTable.h | 130 Arg *ParseOneArg(const ArgList &Args, unsigned &Index,
|
/external/llvm/include/llvm/Support/ |
Process.h | 185 GetArgumentVector(SmallVectorImpl<const char *> &Args,
|
Program.h | 86 const char **args, ///< A vector of strings that are passed to the 121 ExecuteNoWait(StringRef Program, const char **args, const char **env = nullptr, 127 bool argumentsFitWithinSystemLimits(ArrayRef<const char*> Args);
|
/external/llvm/lib/Transforms/Instrumentation/ |
ThreadSanitizer.cpp | 482 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), 485 ArrayRef<Value*>(Args)); 497 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), 501 ArrayRef<Value*>(Args)); 515 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), 518 CallInst *C = CallInst::Create(F, ArrayRef<Value*>(Args)); 529 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), 534 CallInst *C = IRB.CreateCall(TsanAtomicCAS[Idx], Args); 543 Value *Args[] = {createOrdering(&IRB, FI->getOrdering())}; 546 CallInst *C = CallInst::Create(F, ArrayRef<Value*>(Args)); [all...] |
/external/chromium_org/tools/grit/grit/format/ |
html_inline.py | 81 Args: 139 Args: 263 Args: 358 Args: 383 Args:
|