/external/clang/include/clang/Sema/ |
ParsedTemplate.h | 174 /// NumArgs - The number of template arguments. 175 unsigned NumArgs; 182 /// \brief Creates a new TemplateIdAnnotation with NumArgs arguments and 185 Allocate(unsigned NumArgs, SmallVectorImpl<TemplateIdAnnotation*> &List) { 188 sizeof(ParsedTemplateArgument) * NumArgs); 189 TemplateId->NumArgs = NumArgs; 196 for (unsigned I = 0; I != NumArgs; ++I)
|
AttributeList.h | 67 /// 1: __attribute__(( const )). ParmName/Args/NumArgs will all be unused. 68 /// 2: __attribute__(( mode(byte) )). ParmName used, Args/NumArgs unused. 69 /// 3: __attribute__(( format(printf, 1, 2) )). ParmName/Args/NumArgs all used. 99 unsigned NumArgs : 15; 153 + NumArgs)[index]; 157 + NumArgs)[index]; 177 return *reinterpret_cast<TypeTagForDatatypeData*>(getArgsBuffer()+NumArgs); 182 + NumArgs); 217 ArgsUnion *args, unsigned numArgs, 220 ScopeLoc(scopeLoc), EllipsisLoc(ellipsisLoc), NumArgs(numArgs) [all...] |
/art/compiler/jni/quick/ |
calling_convention.h | 113 DCHECK_LT(param, NumArgs()); 123 DCHECK_LT(param, NumArgs()); 133 DCHECK_LT(param, NumArgs()); 142 DCHECK_LT(param, NumArgs()); 151 DCHECK_LT(param, NumArgs()); 159 size_t NumArgs() const { 172 DCHECK_LT(param, NumArgs());
|
calling_convention.cc | 98 return itr_args_ < NumArgs(); 211 return arg_pos < NumArgs();
|
/art/compiler/jni/quick/arm/ |
calling_convention_arm.cc | 131 size_t num_spills = NumArgs() + NumLongOrDoubleArgs(); 143 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { 215 for (size_t cur_arg = IsStatic() ? 0 : 1, cur_reg = 2; cur_arg < NumArgs(); cur_arg++) { 278 (arg_pos < NumArgs()) && 320 size_t param_args = NumArgs() + NumLongOrDoubleArgs();
|
/external/clang/lib/FrontendTool/ |
ExecuteCompilerInvocation.cpp | 197 unsigned NumArgs = Clang->getFrontendOpts().LLVMArgs.size(); 198 auto Args = llvm::make_unique<const char*[]>(NumArgs + 2); 200 for (unsigned i = 0; i != NumArgs; ++i) 202 Args[NumArgs + 1] = nullptr; 203 llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args.get());
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
NonNullParamChecker.cpp | 54 unsigned NumArgs = Call.getNumArgs(); 55 llvm::SmallBitVector AttrNonNull(NumArgs); 58 AttrNonNull.set(0, NumArgs); 62 if (Val >= NumArgs) 73 for (unsigned idx = 0; idx < NumArgs; ++idx) {
|
ObjCSelfInitChecker.cpp | 246 unsigned NumArgs = CE.getNumArgs(); 252 for (unsigned i = 0; i < NumArgs; ++i) { 279 unsigned NumArgs = CE.getNumArgs(); 280 for (unsigned i = 0; i < NumArgs; ++i) {
|
/external/clang/lib/Sema/ |
AttributeList.cpp | 40 return (sizeof(AttributeList) + NumArgs * sizeof(ArgsUnion)); 157 unsigned NumArgs : 4; 180 return getInfo(*this).NumArgs;
|
/external/llvm/include/llvm/Analysis/ |
TargetTransformInfoImpl.h | 116 unsigned getCallCost(FunctionType *FTy, int NumArgs) { 123 if (NumArgs < 0) 126 NumArgs = FTy->getNumParams(); 128 return TTI::TCC_Basic * (NumArgs + 1); 369 unsigned getCallCost(const Function *F, int NumArgs) { 372 if (NumArgs < 0) 375 NumArgs = F->arg_size(); 388 return static_cast<T *>(this)->getCallCost(F->getFunctionType(), NumArgs);
|
TargetTransformInfo.h | 155 int getCallCost(FunctionType *FTy, int NumArgs = -1) const; 161 int getCallCost(const Function *F, int NumArgs = -1) const; 554 virtual int getCallCost(FunctionType *FTy, int NumArgs) = 0; 555 virtual int getCallCost(const Function *F, int NumArgs) = 0; 658 int getCallCost(FunctionType *FTy, int NumArgs) override { 659 return Impl.getCallCost(FTy, NumArgs); 661 int getCallCost(const Function *F, int NumArgs) override { 662 return Impl.getCallCost(F, NumArgs); [all...] |
/external/clang/lib/AST/ |
DeclTemplate.cpp | 690 unsigned NumArgs) 691 : Arguments(getTrailingObjects<TemplateArgument>()), NumArguments(NumArgs) { 692 std::uninitialized_copy(Args, Args + NumArgs, 699 unsigned NumArgs) { 700 void *Mem = Context.Allocate(totalSizeToAlloc<TemplateArgument>(NumArgs)); 701 return new (Mem) TemplateArgumentList(Args, NumArgs); 737 unsigned NumArgs, 744 TemplateArgs(TemplateArgumentList::CreateCopy(Context, Args, NumArgs)), 761 unsigned NumArgs, 766 SpecializedTemplate, Args, NumArgs, PrevDecl) [all...] |
/art/compiler/jni/quick/mips/ |
calling_convention_mips.cc | 96 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { 153 for (size_t cur_arg = IsStatic() ? 0 : 1, cur_reg = 2; cur_arg < NumArgs(); cur_arg++) { 205 (arg_pos < NumArgs()) && 247 size_t param_args = NumArgs() + NumLongOrDoubleArgs();
|
/external/clang/include/clang/AST/ |
CommentCommandTraits.h | 51 unsigned NumArgs : 4;
|
CommentParser.h | 103 unsigned NumArgs);
|
TemplateBase.h | 97 unsigned NumArgs; 204 this->Args.NumArgs = Args.size(); 323 return Args.Args + Args.NumArgs; 336 return Args.NumArgs; 342 return llvm::makeArrayRef(Args.Args, Args.NumArgs);
|
ExprObjC.h | 878 unsigned NumArgs : NumArgsBitWidth; 882 NumArgs = Num; [all...] |
DeclTemplate.h | 188 TemplateArgumentList(const TemplateArgument *Args, unsigned NumArgs); 199 unsigned NumArgs); 206 unsigned NumArgs) 207 : Arguments(Args), NumArguments(NumArgs) {} 567 unsigned NumArgs; 573 return NumArgs; 604 unsigned getNumTemplateArgs() const { return NumArgs; } [all...] |
/external/compiler-rt/lib/ubsan/ |
ubsan_diag.h | 177 unsigned NumArgs; 184 CHECK(NumArgs != MaxArgs); 185 Args[NumArgs++] = A; 201 : Loc(Loc), Level(Level), Message(Message), NumArgs(0), NumRanges(0) {}
|
/external/llvm/lib/Target/ |
TargetRecip.cpp | 113 unsigned NumArgs = Args.size(); 115 for (unsigned i = 0; i != NumArgs; ++i) { 169 unsigned NumArgs = Args.size(); 172 if (NumArgs == 1 && parseGlobalParams(Args[0]))
|
/art/compiler/jni/quick/mips64/ |
calling_convention_mips64.cc | 96 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { 191 size_t all_args = NumArgs() + NumberOfExtraArgumentsForJni();
|
/external/clang/include/clang/Basic/ |
Diagnostic.h | [all...] |
/external/clang/include/clang/CodeGen/ |
CGFunctionInfo.h | 376 unsigned NumArgs; 407 const_arg_iterator arg_end() const { return getArgsBuffer() + 1 + NumArgs; } 409 arg_iterator arg_end() { return getArgsBuffer() + 1 + NumArgs; } 411 unsigned arg_size() const { return NumArgs; }
|
/external/llvm/include/llvm-c/ |
ExecutionEngine.h | 124 unsigned NumArgs,
|
/art/compiler/jni/quick/arm64/ |
calling_convention_arm64.cc | 111 if ((entry_spills_.size() == 0) && (NumArgs() > 0)) { 265 size_t all_args = NumArgs() + NumberOfExtraArgumentsForJni();
|