HomeSort by: relevance | last modified time | path
    Searched refs:BlockPointerType (Results 1 - 25 of 46) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
AnyCall.h 71 K = (CE->getCallee()->getType()->getAs<BlockPointerType>()) ? Block
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CanonicalType.h 429 struct CanProxyAdaptor<BlockPointerType>
430 : public CanProxyBase<BlockPointerType> {
ASTNodeTraverser.h 322 void VisitBlockPointerType(const BlockPointerType *T) {
Type.h 2714 class BlockPointerType : public Type, public llvm::FoldingSetNode {
2720 BlockPointerType(QualType Pointee, QualType CanonicalCls)
6684 return isa<BlockPointerType>(CanonicalType);
7050 isa<BlockPointerType>(CanonicalType) ||
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
BodyFarm.cpp 37 const BlockPointerType *BPT = Ty->getAs<BlockPointerType>();
CalledOnceCheck.cpp 986 QualType BlockType = Ty->castAs<BlockPointerType>()->getPointeeType();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.h 187 llvm::DIType *CreateType(const BlockPointerType *Ty, llvm::DIFile *F);
356 const BlockPointerType *Ty, llvm::DIFile *Unit,
CodeGenTypes.cpp 746 const QualType FTy = cast<BlockPointerType>(Ty)->getPointeeType();
  /src/external/apache2/llvm/dist/clang/lib/Index/
USRGeneration.cpp 821 if (const BlockPointerType *BT = T->getAs<BlockPointerType>()) {
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 500 return isa<BlockPointerType>(T);
508 const auto *BPT = T->castAs<BlockPointerType>();
1218 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>())
4564 const BlockPointerType *CPT = nullptr;
4567 CPT = DRE->getType()->getAs<BlockPointerType>();
4569 CPT = MExpr->getType()->getAs<BlockPointerType>();
4575 CPT = IEXPR->getType()->getAs<BlockPointerType>();
4590 CPT = IRE->getType()->getAs<BlockPointerType>();
4593 CPT = POE->getType()->castAs<BlockPointerType>();
    [all...]
RewriteObjC.cpp 411 return isa<BlockPointerType>(T);
419 const auto *BPT = T->castAs<BlockPointerType>();
1052 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>())
3733 const BlockPointerType *CPT = nullptr;
3736 CPT = DRE->getType()->getAs<BlockPointerType>();
3738 CPT = MExpr->getType()->getAs<BlockPointerType>();
3744 CPT = IEXPR->getType()->getAs<BlockPointerType>();
3759 CPT = IRE->getType()->getAs<BlockPointerType>();
3762 CPT = POE->getType()->castAs<BlockPointerType>();
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 630 if (const auto *BPT = getAs<BlockPointerType>())
903 QualType VisitBlockPointerType(const BlockPointerType *T) {
1548 } else if (getAs<BlockPointerType>()) {
1813 Type *VisitBlockPointerType(const BlockPointerType *T) {
2154 } else if (isa<BlockPointerType>(T)) {
3869 return Cache::get(cast<BlockPointerType>(T)->getPointeeType());
3956 return computeTypeLinkageInfo(cast<BlockPointerType>(T)->getPointeeType());
DeclPrinter.cpp 155 else if (const BlockPointerType *BPy = BaseType->getAs<BlockPointerType>())
TypePrinter.cpp 399 void TypePrinter::printBlockPointerBefore(const BlockPointerType *T,
406 void TypePrinter::printBlockPointerAfter(const BlockPointerType *T,
ASTContext.cpp 2213 AS = getTargetAddressSpace(cast<BlockPointerType>(T)->getPointeeType());
3282 BlockPointerType::Profile(ID, T);
3285 if (BlockPointerType *PT =
3296 BlockPointerType *NewIP =
3300 auto *New = new (*this, TypeAlignment) BlockPointerType(T, Canonical);
6894 Expr->getType()->castAs<BlockPointerType>()->getPointeeType();
7607 const auto *BT = T->castAs<BlockPointerType>();
9100 const auto *lhsBlock = lhs->getAs<BlockPointerType>();
9101 const auto *rhsBlock = rhs->getAs<BlockPointerType>();
9764 QualType LHSPointee = LHS->castAs<BlockPointerType>()->getPointeeType()
    [all...]
CommentSema.cpp 900 if (const auto *P = QT->getAs<BlockPointerType>())
FormatString.cpp 475 argTy->getAs<BlockPointerType>())
ODRHash.cpp 828 void VisitBlockPointerType(const BlockPointerType *T) {
ASTStructuralEquivalence.cpp 720 cast<BlockPointerType>(T1)->getPointeeType(),
721 cast<BlockPointerType>(T2)->getPointeeType()))
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 1032 const AstTypeMatcher<BlockPointerType> blockPointerType;
1057 AST_POLYMORPHIC_SUPPORTED_TYPES(BlockPointerType, MemberPointerType,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExceptionSpec.cpp 1043 else if (const BlockPointerType *BT = T->getAs<BlockPointerType>())
SemaTemplateDeduction.cpp 1967 const BlockPointerType *BlockPtrParam = cast<BlockPointerType>(Param);
1968 const BlockPointerType *BlockPtrArg = dyn_cast<BlockPointerType>(Arg);
5024 assert(FD->getReturnType()->getAs<BlockPointerType>());
5830 cast<BlockPointerType>(T)->getPointeeType(),
SemaExpr.cpp 412 } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) {
4381 T = cast<BlockPointerType>(Ty)->getPointeeType();
6645 } else if (const BlockPointerType *BPT =
6646 Fn->getType()->getAs<BlockPointerType>()) {
7823 if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) {
7825 rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType();
8988 lhptee = cast<BlockPointerType>(LHSType)->getPointeeType();
8989 rhptee = cast<BlockPointerType>(RHSType)->getPointeeType()
    [all...]
SemaOverload.cpp 1544 CanTo = CanTo.castAs<BlockPointerType>()->getPointeeType();
1545 CanFrom = CanFrom.castAs<BlockPointerType>()->getPointeeType();
2557 else if (const BlockPointerType *ToBlockPtr =
2558 ToType->getAs<BlockPointerType>()) {
2567 else if (FromType->getAs<BlockPointerType>() &&
2580 else if (const BlockPointerType *FromBlockPtr =
2581 FromType->getAs<BlockPointerType>())
2745 if (const BlockPointerType *ToBlockPtr =
2746 ToType->getAs<BlockPointerType>())
2752 if (const BlockPointerType *FromBlockPtr
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 456 T = cast<BlockPointerType>(TP)->getPointeeType();

Completed in 125 milliseconds

1 2