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

Declarations

gen/tools/clang/include/clang/AST/TypeNodes.inc
   27 TYPE(Builtin, 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) {
  547                                               BuiltinTypeLoc,
tools/clang/lib/Sema/SemaType.cpp
 5508     void VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
tools/clang/lib/Sema/TreeTransform.h
 4529                                                       BuiltinTypeLoc T) {
 4530   BuiltinTypeLoc NewT = TLB.push<BuiltinTypeLoc>(T.getType());
 4530   BuiltinTypeLoc NewT = TLB.push<BuiltinTypeLoc>(T.getType());
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
 6959 void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
tools/clang/lib/Serialization/ASTWriter.cpp
  608 void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
tools/clang/tools/extra/clang-tidy/google/IntegerTypesCheck.cpp
   85   auto BuiltinLoc = TL.getAs<BuiltinTypeLoc>();
   85   auto BuiltinLoc = TL.getAs<BuiltinTypeLoc>();
tools/clang/tools/libclang/CIndex.cpp
 1509 bool CursorVisitor::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {