Searched refs:Args (Results 201 - 225 of 473) sorted by relevance

1234567891011>>

/external/lldb/source/Commands/
H A DCommandObjectHelp.cpp63 CommandObjectHelp::DoExecute (Args& command, CommandReturnObject &result)
199 Args &input,
H A DCommandObjectTarget.cpp20 #include "lldb/Interpreter/Args.h"
198 HandleArgumentCompletion (Args &input,
223 DoExecute (Args& command, CommandReturnObject &result)
374 DoExecute (Args& args, CommandReturnObject &result)
422 DoExecute (Args& args, CommandReturnObject &result)
428 uint32_t target_idx = Args::StringToUInt32 (target_idx_arg, UINT32_MAX, 0, &success);
508 DoExecute (Args& args, CommandReturnObject &result)
528 uint32_t target_idx = Args::StringToUInt32 (target_idx_arg, UINT32_MAX, 0, &success);
768 DoExecute (Args& args, CommandReturnObject &result)
1011 DoExecute (Args
[all...]
H A DCommandObjectWatchpointCommand.cpp411 m_script_language = (lldb::ScriptLanguage) Args::StringToOptionEnum (option_arg,
429 m_stop_on_error = Args::StringToBoolean(option_arg, false, &success);
486 DoExecute (Args& command, CommandReturnObject &result)
652 DoExecute (Args& command, CommandReturnObject &result)
743 DoExecute (Args& command,
/external/lldb/source/Interpreter/
H A DAndroid.mk13 Args.cpp \
H A DOptionGroupPlatform.cpp129 if (Args::StringToVersion (option_arg,
H A DOptionValueBoolean.cpp18 #include "lldb/Interpreter/Args.h"
53 bool value = Args::StringToBoolean(value_cstr, false, &success);
H A DOptionValueFileSpec.cpp20 #include "lldb/Interpreter/Args.h"
87 Args args(value_cstr);
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.cpp17 #include "lldb/Interpreter/Args.h"
374 match_info.GetProcessInfo().SetProcessID (Args::StringToUInt32(value.c_str(), LLDB_INVALID_PROCESS_ID, 0, &success));
378 match_info.GetProcessInfo().SetParentProcessID (Args::StringToUInt32(value.c_str(), LLDB_INVALID_PROCESS_ID, 0, &success));
382 match_info.GetProcessInfo().SetUserID (Args::StringToUInt32(value.c_str(), UINT32_MAX, 0, &success));
386 match_info.GetProcessInfo().SetGroupID (Args::StringToUInt32(value.c_str(), UINT32_MAX, 0, &success));
390 match_info.GetProcessInfo().SetEffectiveUserID (Args::StringToUInt32(value.c_str(), UINT32_MAX, 0, &success));
394 match_info.GetProcessInfo().SetEffectiveGroupID (Args::StringToUInt32(value.c_str(), UINT32_MAX, 0, &success));
398 match_info.SetMatchAllUsers(Args::StringToBoolean(value.c_str(), false, &success));
485 uint32_t response_size = Args::StringToUInt32(value.c_str(), 0, 0, &success);
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp455 SmallVectorImpl<Expr *> &Args,
463 Args.push_back(ArgExp);
472 Args.push_back(ArgExp);
480 Args.push_back(ArgExp);
523 Args.push_back(ArgExp);
548 SmallVector<Expr*, 1> Args; local
550 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
551 unsigned Size = Args.size();
555 Arg = Args[0];
585 SmallVectorImpl<Expr *> &Args) {
453 checkAttrArgsAreCapabilityObjs(Sema &S, Decl *D, const AttributeList &Attr, SmallVectorImpl<Expr *> &Args, int Sidx = 0, bool ParamIdxOk = false) argument
583 checkAcquireOrderAttrCommon(Sema &S, Decl *D, const AttributeList &Attr, SmallVectorImpl<Expr *> &Args) argument
610 SmallVector<Expr*, 1> Args; local
623 SmallVector<Expr*, 1> Args; local
634 checkLockFunAttrCommon(Sema &S, Decl *D, const AttributeList &Attr, SmallVectorImpl<Expr *> &Args) argument
646 SmallVector<Expr*, 1> Args; local
659 SmallVector<Expr*, 1> Args; local
672 checkTryLockFunAttrCommon(Sema &S, Decl *D, const AttributeList &Attr, SmallVectorImpl<Expr *> &Args) argument
692 SmallVector<Expr*, 2> Args; local
705 SmallVector<Expr*, 2> Args; local
719 SmallVector<Expr*, 1> Args; local
3950 SmallVector<Expr*, 1> Args; local
3962 SmallVector<Expr*, 2> Args; local
3977 SmallVector<Expr *, 1> Args; local
[all...]
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp46 CallArgList Args; local
49 Args.add(RValue::get(This), MD->getThisType(getContext()));
53 Args.add(RValue::get(ImplicitParam), ImplicitParamTy);
57 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size());
60 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
62 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
63 Callee, ReturnValue, Args, MD);
267 CallArgList Args; local
273 Args.add(RValue::get(This), ThisType);
278 EmitCallArgs(Args, FP
999 EmitNewDeleteCall(CodeGenFunction &CGF, const FunctionDecl *Callee, const FunctionProtoType *CalleeType, const CallArgList &Args) argument
1035 CallArgList Args; local
1491 CallArgList Args; variable
[all...]
H A DCGCall.cpp1338 const FunctionArgList &Args) {
1390 ArgVals.reserve(Args.size());
1396 assert(FI.arg_size() == Args.size() &&
1400 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
1621 for (int I = Args.size() - 1; I >= 0; --I)
1622 EmitParmDecl(*Args[I], ArgVals[I].getPointer(), ArgVals[I].getInt(),
1625 for (unsigned I = 0, E = Args.size(); I != E; ++I)
1626 EmitParmDecl(*Args[I], ArgVals[I].getPointer(), ArgVals[I].getInt(),
2259 void CodeGenFunction::EmitCallArgs(CallArgList &Args, argument
1336 EmitFunctionProlog(const CGFunctionInfo &FI, llvm::Function *Fn, const FunctionArgList &Args) argument
2492 EmitCallOrInvoke(llvm::Value *Callee, ArrayRef<llvm::Value *> Args, const Twine &Name) argument
2523 ExpandTypeToArgs(QualType Ty, RValue RV, SmallVectorImpl<llvm::Value *> &Args, llvm::FunctionType *IRFuncTy) argument
2603 SmallVector<llvm::Value*, 16> Args; local
[all...]
H A DCodeGenTypes.h179 arrangeFreeFunctionDeclaration(QualType ResTy, const FunctionArgList &Args,
191 const CGFunctionInfo &arrangeCXXConstructorCall(const CallArgList &Args,
198 const CGFunctionInfo &arrangeFreeFunctionCall(const CallArgList &Args,
H A DCodeGenFunction.cpp525 const FunctionArgList &Args,
594 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
649 EmitFunctionProlog(*CurFnInfo, CurFn, Args);
675 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
696 void CodeGenFunction::EmitFunctionBody(FunctionArgList &Args, argument
765 FunctionArgList Args; local
773 CGM.getCXXABI().buildThisParam(*this, Args);
777 Args
521 StartFunction(GlobalDecl GD, QualType RetTy, llvm::Function *Fn, const CGFunctionInfo &FnInfo, const FunctionArgList &Args, SourceLocation Loc, SourceLocation StartLoc) argument
1599 llvm::Value *Args[4] = { local
[all...]
/external/chromium_org/tools/code_coverage/
H A Dcroc_scan.py25 Args:
89 Args:
149 Args:
/external/llvm/include/llvm/Option/
H A DOptTable.h130 Arg *ParseOneArg(const ArgList &Args, unsigned &Index,
/external/llvm/include/llvm/Support/
H A DProcess.h185 GetArgumentVector(SmallVectorImpl<const char *> &Args,
/external/llvm/lib/Target/R600/
H A DSIAnnotateControlFlow.cpp238 Value *Args[] = { OldEnd->getArgOperand(0), NewPhi }; local
239 Ret = CallInst::Create(ElseBreak, Args, "", OldEnd);
253 Value *Args[] = { Cond, Broken }; local
254 return CallInst::Create(IfBreak, Args, "", Insert);
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp58 TargetLowering::ArgListTy Args; local
62 Args.push_back(Entry);
64 Args.push_back(Entry);
69 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args),
/external/clang/unittests/AST/
H A DSourceLocationTest.cpp236 std::vector<std::string> Args; local
237 Args.push_back("-fno-delayed-template-parsing");
243 unresolvedConstructExpr(), Args, Lang_CXX11));
/external/libcxx/test/support/
H A Dallocators.h145 template <class U, class ...Args>
146 void construct(U* p, Args&& ...args)
148 ::new (p) U(std::forward<Args>(args)...);
/external/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.cpp18 #include "lldb/Interpreter/Args.h"
128 if (Args::StringToFormat(format_cstr, reg_info.format, NULL).Fail())
139 reg_info.encoding = Args::StringToEncoding (encoding_cstr, eEncodingUint);
154 reg_info.kinds[lldb::eRegisterKindGeneric] = Args::StringToGenericRegister (reg_info_dict.GetItemForKeyAsString(generic_pystr));
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp232 std::vector<GenericValue> Args(1);
233 Args[0].IntVal = APInt(32, p->value);
236 GenericValue gv = p->EE->runFunction(p->F, Args);
/external/clang/include/clang/AST/
H A DDeclTemplate.h164 TemplateArgumentList(const TemplateArgument *Args, unsigned NumArgs,
166 : Arguments(Args, Owned), NumArguments(NumArgs) { }
176 const TemplateArgument *Args,
184 const TemplateArgument *Args, unsigned NumArgs)
185 : Arguments(Args, false), NumArguments(NumArgs) { }
599 ArrayRef<TemplateArgument> Args, void *&InsertPos);
820 FunctionDecl *findSpecialization(ArrayRef<TemplateArgument> Args,
1438 const TemplateArgument *Args,
1449 const TemplateArgument *Args,
1675 const TemplateArgument *Args,
2190 ClassScopeFunctionSpecializationDecl(DeclContext *DC, SourceLocation Loc, CXXMethodDecl *FD, bool Args, TemplateArgumentListInfo TemplArgs) argument
[all...]
/external/llvm/lib/TableGen/
H A DSetTheory.cpp152 SmallVector<RecSet, 4> Args(Expr->getNumArgs());
155 ST.evaluate(Expr->getArg(i), Args[i], Loc);
156 MaxSize = std::max(MaxSize, unsigned(Args[i].size()));
161 if (n < Args[i].size())
162 Elts.insert(Args[i][n]);
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp498 std::vector<Value *> Args; local
501 Args.push_back(&*ai);
502 CallInst *CI = CallInst::Create(F, Args, "", BB);
519 std::vector<Value *> Args; local
522 Args.push_back(&*AI);
524 CallInst::Create(&F->getArgumentList().front(), Args, "", BB);
1301 std::vector<Value *> Args; local
1315 Args.push_back(T);
1316 Args.push_back(
1319 Args
1392 std::vector<Value *> Args; local
[all...]

Completed in 792 milliseconds

1234567891011>>