Searched refs:BPT (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp37 const BlockPointerType *BPT = Ty->getAs<BlockPointerType>(); local
38 if (!BPT)
44 BPT->getPointeeType()->getAs<FunctionProtoType>();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp419 const auto *BPT = T->castAs<BlockPointerType>(); local
420 T = Context->getPointerType(BPT->getPointeeType());
1050 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>())
1051 PointeeTy = BPT->getPointeeType();
3966 const BlockPointerType *BPT = QT->getAs<BlockPointerType>(); local
3967 assert(BPT && "BlockPointerTypeTakeAnyBlockArguments(): not a block pointer type");
3968 FTP = BPT->getPointeeType()->getAs<FunctionProtoType>();
3984 const BlockPointerType *BPT = QT->getAs<BlockPointerType>(); local
3985 assert(BPT && "BlockPointerTypeTakeAnyBlockArguments(): not a block pointer type");
3986 FTP = BPT
[all...]
H A DRewriteModernObjC.cpp508 const auto *BPT = T->castAs<BlockPointerType>(); local
509 T = Context->getPointerType(BPT->getPointeeType());
1216 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>())
1217 PointeeTy = BPT->getPointeeType();
4810 const BlockPointerType *BPT = QT->getAs<BlockPointerType>(); local
4811 assert(BPT && "BlockPointerTypeTakeAnyBlockArguments(): not a block pointer type");
4812 FTP = BPT->getPointeeType()->getAs<FunctionProtoType>();
4828 const BlockPointerType *BPT = QT->getAs<BlockPointerType>(); local
4829 assert(BPT && "BlockPointerTypeTakeAnyBlockArguments(): not a block pointer type");
4830 FTP = BPT
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp568 const BlockPointerType *BPT = local
571 BPT->getPointeeType()->castAs<FunctionProtoType>()->getParamTypes();
667 const BlockPointerType *BPT = local
670 BPT->getPointeeType()->castAs<FunctionProtoType>()->getNumParams();
761 const BlockPointerType *BPT = local
763 if (BPT->getPointeeType()->castAs<FunctionProtoType>()->getNumParams() > 0) {
H A DSemaExpr.cpp5969 } else if (const BlockPointerType *BPT =
5971 FuncT = BPT->getPointeeType()->castAs<FunctionType>();
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DType.cpp562 if (const auto *BPT = getAs<BlockPointerType>())
563 return BPT->getPointeeType();
H A DExpr.cpp1504 } else if (const auto *BPT = CalleeType->getAs<BlockPointerType>()) {
1505 CalleeType = BPT->getPointeeType();
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.cpp1257 const auto *BPT = E->getCallee()->getType()->castAs<BlockPointerType>(); local
1261 QualType FnType = BPT->getPointeeType();

Completed in 434 milliseconds