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

Declarations

gen/tools/clang/include/clang/AST/TypeNodes.inc
   56 NON_CANONICAL_TYPE(Paren, 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) {
 1125   : public ConcreteTypeLoc<UnqualTypeLoc, ParenTypeLoc, ParenType,
 1163   if (ParenTypeLoc::isKind(*this))
 2320     if (auto PTL = Cur.getAs<ParenTypeLoc>())
 2320     if (auto PTL = Cur.getAs<ParenTypeLoc>())
tools/clang/lib/AST/TypeLoc.cpp
  406   while (ParenTypeLoc PTL = TL.getAs<ParenTypeLoc>())
  406   while (ParenTypeLoc PTL = TL.getAs<ParenTypeLoc>())
tools/clang/lib/Sema/SemaDecl.cpp
 5810   if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) {
 5810   if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) {
 5811     ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>();
 5811     ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>();
tools/clang/lib/Sema/SemaType.cpp
 5702     void VisitParenTypeLoc(ParenTypeLoc TL) {
tools/clang/lib/Sema/TreeTransform.h
 6261                                            ParenTypeLoc TL) {
 6274   ParenTypeLoc NewTL = TLB.push<ParenTypeLoc>(Result);
 6274   ParenTypeLoc NewTL = TLB.push<ParenTypeLoc>(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
 7161 void TypeLocReader::VisitParenTypeLoc(ParenTypeLoc TL) {
tools/clang/lib/Serialization/ASTWriter.cpp
  808 void TypeLocWriter::VisitParenTypeLoc(ParenTypeLoc TL) {
tools/clang/tools/libclang/CIndex.cpp
 1621 bool CursorVisitor::VisitParenTypeLoc(ParenTypeLoc TL) {