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

<<11121314151617181920>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/roboto/
awsqueryrequest.py 162 Args = []
179 def __init__(self, **args):
180 self.args = args
194 def get_connection(self, **args):
196 self.connection = self.ServiceClass(**args)
221 filters = self.args.get('filters', [])
234 def process_args(self, **args):
245 self.args.update(args)
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 97 const TemplateArgumentList *Args = nullptr);
580 Expr **Args = nullptr;
583 Args = ParenList->getExprs();
587 Args = Construct->getArgs();
596 assert(Args[I] != nullptr && "Expected non-null Expr");
597 if (isa<CXXDefaultArgExpr>(Args[I]))
602 Args[I]->printPretty(Out, nullptr, Policy, Indentation);
879 const TemplateArgumentList *Args) {
881 assert(!Args || Params->size() == Args->size())
    [all...]
TypePrinter.cpp 960 const TemplateArgument *Args;
965 Args = TST->getArgs();
969 Args = TemplateArgs.data();
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 30 QualType ImplicitParamTy, const CallExpr *CE, CallArgList &Args) {
48 Args.add(RValue::get(This), MD->getThisType(CGF.getContext()));
52 Args.add(RValue::get(ImplicitParam), ImplicitParamTy);
56 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size());
58 // And the rest of the call args.
62 CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip),
77 CallArgList Args;
80 Args);
81 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
82 Callee, ReturnValue, Args, MD)
    [all...]
CodeGenFunction.cpp 415 llvm::Value *args[] = { local
420 EmitNounwindRuntimeCall(F, args);
648 const FunctionArgList &Args,
744 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
800 EmitFunctionProlog(*CurFnInfo, CurFn, Args);
834 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
    [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 62 STATISTIC(NumArgumentsDead , "Number of dead pointer args eliminated");
225 for (Argument &I : F->args())
758 SmallVector<Value*, 16> Args;
777 Args.push_back(*AI); // Unmodified argument
782 push_back(AttributeSet::get(F->getContext(), Args.size(), B));
795 Args.push_back(new LoadInst(Idx, Idx->getName()+".val", Call));
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 518 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
520 CallInst *C = CallInst::Create(TsanAtomicLoad[Idx], Args);
532 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
535 CallInst *C = CallInst::Create(TsanAtomicStore[Idx], Args);
549 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
552 CallInst *C = CallInst::Create(F, Args);
563 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
568 CallInst *C = IRB.CreateCall(TsanAtomicCAS[Idx], Args);
577 Value *Args[] = {createOrdering(&IRB, FI->getOrdering())};
580 CallInst *C = CallInst::Create(F, Args);
    [all...]
DataFlowSanitizer.cpp 106 "dfsan-args-abi",
557 std::vector<Value *> Args;
560 Args.push_back(&*ai);
561 CallInst *CI = CallInst::Create(F, Args, "", BB);
579 std::vector<Value *> Args;
582 Args.push_back(&*AI);
584 CallInst::Create(&F->getArgumentList().front(), Args, "", BB);
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 24 std::vector<ParserValue> Args() { return std::vector<ParserValue>(); }
25 std::vector<ParserValue> Args(const VariantValue &Arg1) {
30 std::vector<ParserValue> Args(const VariantValue &Arg1,
49 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(), Error);
62 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(Arg1), Error);
76 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(Arg1, Arg2),
  /external/chromium-trace/catapult/telemetry/telemetry/core/
platform.py 52 Args:
211 Args:
244 Args:
326 Args:
346 Args:
  /external/llvm/lib/IR/
DIBuilder.cpp 678 static DISubprogram *getSubprogram(bool IsDistinct, Ts &&... Args) {
680 return DISubprogram::getDistinct(std::forward<Ts>(Args)...);
681 return DISubprogram::get(std::forward<Ts>(Args)...);
    [all...]
  /frameworks/base/tools/aapt2/util/
Util.h 108 template <typename T, class... Args>
109 std::unique_ptr<T> make_unique(Args&&... args) {
110 return std::unique_ptr<T>(new T{std::forward<Args>(args)...});
  /external/clang/lib/Sema/
SemaDeclAttr.cpp 188 /// \brief Check if the attribute has exactly as many args as Num. May
197 /// \brief Check if the attribute has at least as many args as Num. May
206 /// \brief Check if the attribute has at most as many args as Num. May
500 SmallVectorImpl<Expr *> &Args,
508 Args.push_back(ArgExp);
517 Args.push_back(ArgExp);
525 Args.push_back(ArgExp);
568 Args.push_back(ArgExp);
589 SmallVector<Expr*, 1> Args;
591 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
client.py 195 Args:
205 Args:
215 Args:
225 Args:
233 Args:
270 Args:
300 Args:
352 Args:
383 Args:
415 Args
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 42 /// \brief Fill out Opts based on the options given in Args.
44 /// Args must have been created from the OptTable returned by
49 bool ParseDiagnosticArgs(DiagnosticOptions &Opts, llvm::opt::ArgList &Args,
  /external/clang/include/clang/Lex/
PPCallbacks.h 244 const MacroArgs *Args) {}
439 SourceRange Range, const MacroArgs *Args) override {
440 First->MacroExpands(MacroNameTok, MD, Range, Args);
441 Second->MacroExpands(MacroNameTok, MD, Range, Args);
  /external/llvm/include/llvm/Option/
Option.h 196 Arg *accept(const ArgList &Args, unsigned &Index, unsigned ArgSize) const;
  /external/llvm/include/llvm-c/
ExecutionEngine.h 125 LLVMGenericValueRef *Args);
  /external/llvm/lib/CodeGen/
ShadowStackGCLowering.cpp 160 SmallVector<Value *, 16> Args;
174 Args.clear();
176 Args.append(CS.arg_begin(), CS.arg_end());
179 InvokeInst::Create(CI->getCalledValue(), NewBB, CleanupBB, Args,
  /external/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 251 Value *Args[] = { OldEnd->getArgOperand(0), NewPhi };
252 Ret = CallInst::Create(ElseBreak, Args, "", OldEnd);
271 Value *Args[] = { Cond, Broken };
272 return CallInst::Create(IfBreak, Args, "", Insert);
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 79 TargetLowering::ArgListTy Args;
83 Args.push_back(Entry);
85 Args.push_back(Entry);
90 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args),
  /external/skia/src/core/
SkLinearBitmapPipeline.cpp 130 template <typename... Args>
131 PointProcessor(Next* next, Args&&... args)
133 , fStrategy{std::forward<Args>(args)...}{ }
160 template <typename... Args>
161 BilerpProcessor(Next* next, Args&&... args)
163 , fStrategy{std::forward<Args>(args)...}{
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection_cpp.h 127 void genArguments(const ArgumentList &Args, int Offset);
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/llvm/lib/TableGen/
Record.cpp 761 std::vector<Init*> Args;
764 Args.push_back(LHSs->getArg(i));
768 Args.push_back(RHSs->getArg(i));
771 return DagInit::get(LHSs->getOperator(), "", Args, ArgNames);
779 std::vector<Init *> Args;
780 Args.insert(Args.end(), LHSs->begin(), LHSs->end());
781 Args.insert(Args.end(), RHSs->begin(), RHSs->end());
783 Args, cast<ListRecTy>(LHSs->getType())->getElementType())
942 std::vector<std::pair<Init *, std::string> > args; local
    [all...]

Completed in 1392 milliseconds

<<11121314151617181920>>