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

References

tools/clang/include/clang/Sema/DeclSpec.h
 1539     case DeclaratorChunk::Pointer:       return Ptr.destroy();
 1564     I.Ptr.TypeQuals       = TypeQuals;
 1565     I.Ptr.ConstQualLoc    = ConstQualLoc.getRawEncoding();
 1566     I.Ptr.VolatileQualLoc = VolatileQualLoc.getRawEncoding();
 1567     I.Ptr.RestrictQualLoc = RestrictQualLoc.getRawEncoding();
 1568     I.Ptr.AtomicQualLoc   = AtomicQualLoc.getRawEncoding();
 1569     I.Ptr.UnalignedQualLoc = UnalignedQualLoc.getRawEncoding();
tools/clang/lib/Sema/SemaType.cpp
 2853       DeclaratorChunk::PointerTypeInfo &PTI = OuterChunk.Ptr;
 4430         if (DeclType.Ptr.TypeQuals)
 4431           T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Ptr.TypeQuals);
 4447       if (DeclType.Ptr.TypeQuals)
 4448         T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Ptr.TypeQuals);
 5731     Loc = SourceLocation::getFromRawEncoding(Chunk.Ptr.AtomicQualLoc);