reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

gen/tools/clang/include/clang/AST/TypeNodes.inc
   26 TYPE(BlockPointer, Type)

References

tools/clang/include/clang/AST/TypeLoc.h
   75   T castAs() const {
   77     T t;
   86   T getAs() const {
   87     if (!T::isKind(*this))
   89     T t;
  360   const Derived *asDerived() const {
  366            Derived::classofType(TL.getTypePtr());
  387   void copyLocal(Derived other) {
 1208 class PointerLikeTypeLoc : public ConcreteTypeLoc<UnqualTypeLoc, Derived,
 1250 class BlockPointerTypeLoc : public PointerLikeTypeLoc<BlockPointerTypeLoc,
tools/clang/lib/AST/Comment.cpp
  148   if (BlockPointerTypeLoc BlockPointerTL = TL.getAs<BlockPointerTypeLoc>())
  148   if (BlockPointerTypeLoc BlockPointerTL = TL.getAs<BlockPointerTypeLoc>())
tools/clang/lib/Sema/SemaCodeComplete.cpp
 2723     if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) {
 2723     if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) {
tools/clang/lib/Sema/SemaType.cpp
 5614     void VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
tools/clang/lib/Sema/TreeTransform.h
 4618                                                   BlockPointerTypeLoc TL) {
 4636   BlockPointerTypeLoc NewT = TLB.push<BlockPointerTypeLoc>(Result);
 4636   BlockPointerTypeLoc NewT = TLB.push<BlockPointerTypeLoc>(Result);
tools/clang/lib/Sema/TypeLocBuilder.h
   93   template <class TyLocType> TyLocType push(QualType T) {
   94     TyLocType Loc = TypeLoc(T, nullptr).castAs<TyLocType>();
   94     TyLocType Loc = TypeLoc(T, nullptr).castAs<TyLocType>();
   97     return pushImpl(T, LocalSize, LocalAlign).castAs<TyLocType>();
tools/clang/lib/Serialization/ASTReader.cpp
 6989 void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
tools/clang/lib/Serialization/ASTWriter.cpp
  634 void TypeLocWriter::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
tools/clang/tools/libclang/CIndex.cpp
 1633 bool CursorVisitor::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {