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

Declarations

tools/clang/include/clang/AST/Type.h
 1925   bool isBuiltinType() const;

References

tools/clang/lib/AST/ASTContext.cpp
 3495   assert(vecType->isBuiltinType());
 3565   assert(vecType->isBuiltinType() || vecType->isDependentType());
tools/clang/lib/AST/ItaniumMangle.cpp
 2396   if (Ty->isBuiltinType())
 3047   assert(EltType->isBuiltinType() && "Neon vector element not a BuiltinType");
 3138   assert(EltType->isBuiltinType() && "Neon vector element not a BuiltinType");
tools/clang/lib/CodeGen/TargetInfo.cpp
 1659       if (Ty->isBuiltinType() || Ty->isVectorType())
 1759     if ((Ty->isVectorType() || Ty->isBuiltinType()) &&
 1778     if (IsHva && !Ty->isVectorType() && !Ty->isBuiltinType()) {
 3920   if (!Ty->isBuiltinType() && !Ty->isVectorType() &&
 3963         if (IsReturnType || Ty->isBuiltinType() || Ty->isVectorType())
 3970           (IsReturnType || Ty->isBuiltinType() || Ty->isVectorType())) {
 3975       } else if (!Ty->isBuiltinType() && !Ty->isVectorType()) {
tools/clang/lib/Sema/SemaDeclAttr.cpp
 1399            QT->isBuiltinType() ? diag::err_iboutletcollection_builtintype
tools/clang/lib/Sema/SemaExprObjC.cpp
  598   } else if (ValueType->isBuiltinType()) {
tools/clang/lib/Sema/SemaType.cpp
 2354       (!CurType->isBuiltinType() || CurType->isBooleanType() ||
tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObject.h
  325   return T->isBuiltinType() || T->isEnumeralType() ||
tools/clang/tools/extra/clang-tidy/cert/PostfixOperatorCheck.cpp
   73   if (ReturnType.isConstQualified() || ReturnType->isBuiltinType() ||
tools/clang/tools/extra/clang-tidy/google/AvoidCStyleCastsCheck.cpp
  202     if ((SourceType->isBuiltinType() || SourceType->isEnumeralType()) &&
  203         (DestType->isBuiltinType() || DestType->isEnumeralType())) {
tools/clang/tools/extra/clangd/SemanticHighlighting.cpp
   94   if (TP->isBuiltinType()) // Builtins are special, they do not have decls.
tools/lldb/unittests/Symbol/TestClangASTContext.cpp
  191   EXPECT_TRUE(type_ptr->isBuiltinType());