/external/llvm-project/clang/test/AST/ |
D | pragma-attribute-objc-subject-match-rules.m | 62 // CHECK-OBJC_METHOD-NEXT: ImplicitParamDecl 63 // CHECK-OBJC_METHOD-NEXT: ImplicitParamDecl 67 // CHECK-OBJC_METHOD-NEXT: ImplicitParamDecl 68 // CHECK-OBJC_METHOD-NEXT: ImplicitParamDecl 72 // CHECK-OBJC_METHOD_IS_INSTANCE-NEXT: ImplicitParamDecl 73 // CHECK-OBJC_METHOD_IS_INSTANCE-NEXT: ImplicitParamDecl
|
D | finally-msvc.m | 14 // CHECK-NEXT: ImplicitParamDecl
|
D | ast-dump-decl.m | 49 // CHECK-NEXT: ImplicitParamDecl{{.*}} self 50 // CHECK-NEXT: ImplicitParamDecl{{.*}} _cmd
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGOpenMPRuntimeGPU.cpp | 2819 ImplicitParamDecl ReduceListArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, in emitInterWarpCopyFunction() 2820 C.VoidPtrTy, ImplicitParamDecl::Other); in emitInterWarpCopyFunction() 2823 ImplicitParamDecl NumWarpsArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, in emitInterWarpCopyFunction() 2825 ImplicitParamDecl::Other); in emitInterWarpCopyFunction() 3113 ImplicitParamDecl ReduceListArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, in emitShuffleAndReduceFunction() 3114 C.VoidPtrTy, ImplicitParamDecl::Other); in emitShuffleAndReduceFunction() 3116 ImplicitParamDecl LaneIDArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.ShortTy, in emitShuffleAndReduceFunction() 3117 ImplicitParamDecl::Other); in emitShuffleAndReduceFunction() 3119 ImplicitParamDecl RemoteLaneOffsetArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, in emitShuffleAndReduceFunction() 3120 C.ShortTy, ImplicitParamDecl::Other); in emitShuffleAndReduceFunction() [all …]
|
D | CGBlocks.cpp | 1016 ImplicitParamDecl BlockFieldPseudoVar(getContext(), type, in EmitBlockLiteral() 1017 ImplicitParamDecl::Other); in EmitBlockLiteral() 1400 void CodeGenFunction::setBlockContextParameter(const ImplicitParamDecl *D, in setBlockContextParameter() 1480 ImplicitParamDecl SelfDecl(getContext(), const_cast<BlockDecl *>(blockDecl), in GenerateBlockFunction() 1482 ImplicitParamDecl::ObjCSelf); in GenerateBlockFunction() 1930 ImplicitParamDecl DstDecl(C, C.VoidPtrTy, ImplicitParamDecl::Other); in GenerateCopyHelperFunction() 1932 ImplicitParamDecl SrcDecl(C, C.VoidPtrTy, ImplicitParamDecl::Other); in GenerateCopyHelperFunction() 2127 ImplicitParamDecl SrcDecl(C, C.VoidPtrTy, ImplicitParamDecl::Other); in GenerateDestroyHelperFunction() 2378 ImplicitParamDecl Dst(Context, Context.VoidPtrTy, ImplicitParamDecl::Other); in generateByrefCopyHelper() 2381 ImplicitParamDecl Src(Context, Context.VoidPtrTy, ImplicitParamDecl::Other); in generateByrefCopyHelper() [all …]
|
D | CGOpenMPRuntime.cpp | 1107 ImplicitParamDecl OmpOutParm(C, /*DC=*/nullptr, Out->getLocation(), in emitCombinerOrInitializer() 1108 /*Id=*/nullptr, PtrTy, ImplicitParamDecl::Other); in emitCombinerOrInitializer() 1109 ImplicitParamDecl OmpInParm(C, /*DC=*/nullptr, In->getLocation(), in emitCombinerOrInitializer() 1110 /*Id=*/nullptr, PtrTy, ImplicitParamDecl::Other); in emitCombinerOrInitializer() 1768 ImplicitParamDecl Dst(CGM.getContext(), /*DC=*/nullptr, Loc, in emitThreadPrivateVarDefinition() 1770 ImplicitParamDecl::Other); in emitThreadPrivateVarDefinition() 1801 ImplicitParamDecl Dst(CGM.getContext(), /*DC=*/nullptr, Loc, in emitThreadPrivateVarDefinition() 1803 ImplicitParamDecl::Other); in emitThreadPrivateVarDefinition() 2320 ImplicitParamDecl LHSArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy, in emitCopyprivateCopyFunction() 2321 ImplicitParamDecl::Other); in emitCopyprivateCopyFunction() [all …]
|
D | CGCXXABI.cpp | 127 auto *ThisDecl = ImplicitParamDecl::Create( in buildThisParam() 130 ImplicitParamDecl::CXXThis); in buildThisParam()
|
D | CGException.cpp | 1836 if (isa<ImplicitParamDecl>(D) && in EmitCapturedLocals() 1868 if (isa<ImplicitParamDecl>(VD)) { in EmitCapturedLocals() 1877 assert((isa<ImplicitParamDecl>(VD) || VD->isLocalVarDeclOrParm()) && in EmitCapturedLocals() 1926 Args.push_back(ImplicitParamDecl::Create( in startOutlinedSEHHelper() 1929 getContext().VoidPtrTy, ImplicitParamDecl::Other)); in startOutlinedSEHHelper() 1931 Args.push_back(ImplicitParamDecl::Create( in startOutlinedSEHHelper() 1934 getContext().UnsignedCharTy, ImplicitParamDecl::Other)); in startOutlinedSEHHelper() 1936 Args.push_back(ImplicitParamDecl::Create( in startOutlinedSEHHelper() 1939 ImplicitParamDecl::Other)); in startOutlinedSEHHelper()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Decl.h | 945 friend class ImplicitParamDecl; variable 1553 class ImplicitParamDecl : public VarDecl { 1581 static ImplicitParamDecl *Create(ASTContext &C, DeclContext *DC, 1584 static ImplicitParamDecl *Create(ASTContext &C, QualType T, 1587 static ImplicitParamDecl *CreateDeserialized(ASTContext &C, unsigned ID); 1589 ImplicitParamDecl(ASTContext &C, DeclContext *DC, SourceLocation IdLoc, in ImplicitParamDecl() function 1598 ImplicitParamDecl(ASTContext &C, QualType Type, ImplicitParamKind ParamKind) in ImplicitParamDecl() function 4286 private llvm::TrailingObjects<CapturedDecl, ImplicitParamDecl *> { 4288 size_t numTrailingObjects(OverloadToken<ImplicitParamDecl>) { in numTrailingObjects() argument 4304 ImplicitParamDecl *const *getParams() const { in getParams() [all …]
|
/external/llvm-project/clang/include/clang/Analysis/ |
D | AnalysisDeclContext.h | 41 class ImplicitParamDecl; variable 178 const ImplicitParamDecl *getSelfDecl() const; 254 const ImplicitParamDecl *getSelfDecl() const { return Ctx->getSelfDecl(); } in getSelfDecl()
|
/external/clang/include/clang/AST/ |
D | Decl.h | 1355 class ImplicitParamDecl : public VarDecl { 1358 static ImplicitParamDecl *Create(ASTContext &C, DeclContext *DC, 1362 static ImplicitParamDecl *CreateDeserialized(ASTContext &C, unsigned ID); 1364 ImplicitParamDecl(ASTContext &C, DeclContext *DC, SourceLocation IdLoc, in ImplicitParamDecl() function 3628 private llvm::TrailingObjects<CapturedDecl, ImplicitParamDecl *> { 3630 size_t numTrailingObjects(OverloadToken<ImplicitParamDecl>) { in numTrailingObjects() argument 3644 ImplicitParamDecl *const *getParams() const { in getParams() 3645 return getTrailingObjects<ImplicitParamDecl *>(); in getParams() 3648 ImplicitParamDecl **getParams() { in getParams() 3649 return getTrailingObjects<ImplicitParamDecl *>(); in getParams() [all …]
|
/external/clang/test/Misc/ |
D | ast-dump-decl.m | 41 // CHECK-NEXT: ImplicitParamDecl{{.*}} self 42 // CHECK-NEXT: ImplicitParamDecl{{.*}} _cmd
|
/external/clang/lib/Analysis/ |
D | AnalysisDeclContext.cpp | 146 return isa<ImplicitParamDecl>(VD) && VD->getName() == "self"; in isSelfDecl() 149 const ImplicitParamDecl *AnalysisDeclContext::getSelfDecl() const { in getSelfDecl() 157 return dyn_cast<ImplicitParamDecl>(VD); in getSelfDecl() 175 return dyn_cast<ImplicitParamDecl>(VD); in getSelfDecl()
|
/external/llvm-project/clang/lib/Analysis/ |
D | AnalysisDeclContext.cpp | 145 return isa<ImplicitParamDecl>(VD) && VD->getName() == "self"; in isSelfDecl() 148 const ImplicitParamDecl *AnalysisDeclContext::getSelfDecl() const { in getSelfDecl() 156 return dyn_cast<ImplicitParamDecl>(VD); in getSelfDecl() 174 return dyn_cast<ImplicitParamDecl>(VD); in getSelfDecl()
|
/external/llvm-project/clang/test/Misc/ |
D | pragma-attribute-objc.m | 65 // CHECK-NEXT: ImplicitParamDecl 66 // CHECK-NEXT: ImplicitParamDecl
|
/external/clang/include/clang/Sema/ |
D | ScopeInfo.h | 38 class ImplicitParamDecl; variable 633 ImplicitParamDecl *ContextParam; 639 RecordDecl *RD, ImplicitParamDecl *Context, in CapturedRegionScopeInfo()
|
/external/clang/lib/CodeGen/ |
D | CGCXXABI.cpp | 161 ImplicitParamDecl *ThisDecl in buildThisParam() 162 = ImplicitParamDecl::Create(CGM.getContext(), nullptr, MD->getLocation(), in buildThisParam()
|
D | CGBlocks.cpp | 866 ImplicitParamDecl blockFieldPseudoVar(getContext(), /*DC*/ nullptr, in EmitBlockLiteral() 1101 void CodeGenFunction::setBlockContextParameter(const ImplicitParamDecl *D, in setBlockContextParameter() 1171 ImplicitParamDecl selfDecl(getContext(), const_cast<BlockDecl*>(blockDecl), in GenerateBlockFunction() 1327 ImplicitParamDecl dstDecl(getContext(), nullptr, SourceLocation(), nullptr, in GenerateCopyHelperFunction() 1330 ImplicitParamDecl srcDecl(getContext(), nullptr, SourceLocation(), nullptr, in GenerateCopyHelperFunction() 1506 ImplicitParamDecl srcDecl(getContext(), nullptr, SourceLocation(), nullptr, in GenerateDestroyHelperFunction() 1788 ImplicitParamDecl dst(CGF.getContext(), nullptr, SourceLocation(), nullptr, in generateByrefCopyHelper() 1792 ImplicitParamDecl src(CGF.getContext(), nullptr, SourceLocation(), nullptr, in generateByrefCopyHelper() 1865 ImplicitParamDecl src(CGF.getContext(), nullptr, SourceLocation(), nullptr, in generateByrefDisposeHelper()
|
D | CGCXXABI.h | 52 ImplicitParamDecl *getThisDecl(CodeGenFunction &CGF) { in getThisDecl() 68 ImplicitParamDecl *&getStructorImplicitParamDecl(CodeGenFunction &CGF) { in getStructorImplicitParamDecl()
|
/external/clang/include/clang/Analysis/ |
D | AnalysisContext.h | 181 const ImplicitParamDecl *getSelfDecl() const; 256 const ImplicitParamDecl *getSelfDecl() const { in getSelfDecl()
|
/external/llvm-project/clang/include/clang/Sema/ |
D | ScopeInfo.h | 48 class ImplicitParamDecl; variable 775 ImplicitParamDecl *ContextParam; 784 RecordDecl *RD, ImplicitParamDecl *Context, in CapturedRegionScopeInfo()
|
/external/clang/lib/Frontend/ |
D | ASTConsumers.cpp | 438 ImplicitParamDecl* IPD = cast<ImplicitParamDecl>(I); in PrintDeclContext()
|
/external/llvm-project/clang/lib/ARCMigrate/ |
D | TransUnbridgedCasts.cpp | 453 if (ImplicitParamDecl *IPD = dyn_cast<ImplicitParamDecl>(DRE->getDecl())) in isSelf()
|
D | TransZeroOutPropsInDealloc.cpp | 32 ImplicitParamDecl *SelfD;
|
/external/clang/lib/ARCMigrate/ |
D | TransUnbridgedCasts.cpp | 456 if (ImplicitParamDecl *IPD = dyn_cast<ImplicitParamDecl>(DRE->getDecl())) in isSelf()
|