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

Derived Classes

tools/clang/include/clang/AST/TypeLoc.h
  357 class ConcreteTypeLoc : public Base {

Declarations

gen/tools/clang/include/clang/AST/TypeNodes.inc
   53 TYPE(ObjCObject, Type)

References

tools/clang/include/clang/AST/TypeLoc.h
   75   T castAs() const {
   77     T t;
  357 class ConcreteTypeLoc : public Base {
  360   const Derived *asDerived() const {
  366            Derived::classofType(TL.getTypePtr());
  387   void copyLocal(Derived other) {
  920                                                  ObjCObjectTypeLoc,
 1035     static_assert(alignof(ObjCObjectTypeLoc) >= alignof(TypeSourceInfo *),
 1051 class ObjCInterfaceTypeLoc : public ConcreteTypeLoc<ObjCObjectTypeLoc,
tools/clang/lib/Index/IndexTypeSourceInfo.cpp
  128   bool VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
tools/clang/lib/Sema/SemaType.cpp
 1117   auto ObjCObjectTL = ObjCObjectPointerTL.getPointeeLoc()
 1118                         .castAs<ObjCObjectTypeLoc>();
 1209   auto ObjCObjectTL = ResultTL.castAs<ObjCObjectTypeLoc>();
 1209   auto ObjCObjectTL = ResultTL.castAs<ObjCObjectTypeLoc>();
 5451     void VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
tools/clang/lib/Sema/TreeTransform.h
 6494                                                 ObjCObjectTypeLoc TL) {
 6602   ObjCObjectTypeLoc NewT = TLB.push<ObjCObjectTypeLoc>(Result);
 6602   ObjCObjectTypeLoc NewT = TLB.push<ObjCObjectTypeLoc>(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
 7213 void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
tools/clang/lib/Serialization/ASTWriter.cpp
  853 void TypeLocWriter::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
tools/clang/tools/libclang/CIndex.cpp
 1599 bool CursorVisitor::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {