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

Declarations

gen/tools/clang/include/clang/AST/TypeNodes.inc
   58 TYPE(Pointer, 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,
 1237 class PointerTypeLoc : public PointerLikeTypeLoc<PointerTypeLoc,
tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
   76       } else if (PointerTypeLoc PT = TL.getAs<PointerTypeLoc>()) {
   76       } else if (PointerTypeLoc PT = TL.getAs<PointerTypeLoc>()) {
tools/clang/lib/AST/Comment.cpp
  140   if (PointerTypeLoc PointerTL = TL.getAs<PointerTypeLoc>())
  140   if (PointerTypeLoc PointerTL = TL.getAs<PointerTypeLoc>())
tools/clang/lib/Sema/SemaDecl.cpp
 5803   if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) {
 5803   if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) {
 5804     PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>();
 5804     PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>();
tools/clang/lib/Sema/SemaLambda.cpp
 1334   PointerTypeLoc PtrToFunctionTL =
 1335       ConvTL.getReturnLoc().getAs<PointerTypeLoc>();
 1338   PointerTypeLoc ConvNamePtrToFunctionTL =
 1339       ConvNamePtrToFunctionTSI->getTypeLoc().getAs<PointerTypeLoc>();
tools/clang/lib/Sema/SemaStmt.cpp
  360       PointerTypeLoc TL = TI->getTypeLoc().castAs<PointerTypeLoc>();
  360       PointerTypeLoc TL = TI->getTypeLoc().castAs<PointerTypeLoc>();
tools/clang/lib/Sema/SemaType.cpp
 5618     void VisitPointerTypeLoc(PointerTypeLoc TL) {
tools/clang/lib/Sema/TreeTransform.h
 4577                                                       PointerTypeLoc TL) {
 4610   PointerTypeLoc NewT = TLB.push<PointerTypeLoc>(Result);
 4610   PointerTypeLoc NewT = TLB.push<PointerTypeLoc>(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
 6973 void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
tools/clang/lib/Serialization/ASTWriter.cpp
  622 void TypeLocWriter::VisitPointerTypeLoc(PointerTypeLoc TL) {
tools/clang/tools/extra/clang-tidy/modernize/UseAutoCheck.cpp
  424       auto Q = V->getTypeSourceInfo()->getTypeLoc().getAs<PointerTypeLoc>();
  424       auto Q = V->getTypeSourceInfo()->getTypeLoc().getAs<PointerTypeLoc>();
  427         Q = Q.getNextTypeLoc().getAs<PointerTypeLoc>();
tools/clang/tools/libclang/CIndex.cpp
 1629 bool CursorVisitor::VisitPointerTypeLoc(PointerTypeLoc TL) {