Home
last modified time | relevance | path

Searched refs:isBuiltinType (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/performance/
H A DTypePromotionInMathFnCheck.cpp23 AST_MATCHER_P(Type, isBuiltinType, BuiltinType::Kind, Kind) { in AST_MATCHER_P() argument
56 return hasParameter(Pos, hasType(isBuiltinType(Kind))); in registerMatchers()
59 return hasArgument(Pos, hasType(isBuiltinType(Kind))); in registerMatchers()
106 pointee(isBuiltinType(IntTy)))))))), in registerMatchers()
129 pointee(isBuiltinType(IntTy)))))))), in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/google/
H A DAvoidCStyleCastsCheck.cpp233 if ((SourceType->isBuiltinType() || SourceType->isEnumeralType()) && in check()
234 (DestType->isBuiltinType() || DestType->isEnumeralType())) { in check()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cert/
H A DPostfixOperatorCheck.cpp69 if (ReturnType.isConstQualified() || ReturnType->isBuiltinType() || in check()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObject.h325 return T->isBuiltinType() || T->isEnumeralType() || in isPrimitiveType()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DMakeMemberFunctionConstCheck.cpp158 !Cast->getType()->isBuiltinType()) in visitUser()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DSemanticHighlighting.cpp154 if (TP->isBuiltinType()) // Builtins are special, they do not have decls. in kindForType()
270 if (Underlying->isBuiltinType()) in isDefaultLibrary()
513 if (T->isBuiltinType()) in scopeModifier()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenTypes.cpp431 Ty->isBuiltinType() || in ConvertType()
H A DTargetInfo.cpp1806 if ((Ty->isVectorType() || Ty->isBuiltinType()) && in runVectorCallFirstPass()
1853 if (Ty->isBuiltinType() || Ty->isVectorType()) in classifyArgumentType()
4283 if (!Ty->isBuiltinType() && !Ty->isVectorType() && in reclassifyHvaArgForVectorCall()
4326 if (IsReturnType || Ty->isBuiltinType() || Ty->isVectorType()) in classify()
4333 (IsReturnType || Ty->isBuiltinType() || Ty->isVectorType())) { in classify()
4338 } else if (!Ty->isBuiltinType() && !Ty->isVectorType()) { in classify()
5671 assert(VT->getElementType()->isBuiltinType() && "expected builtin type!"); in coerceIllegalVector()
5680 assert(VT->getElementType()->isBuiltinType() && "expected builtin type!"); in coerceIllegalVector()
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp187 EXPECT_TRUE(type_ptr->isBuiltinType()); in VerifyEncodingAndBitSize()
/llvm-project-15.0.7/clang/lib/AST/
H A DItaniumMangle.cpp2780 if (Ty->isBuiltinType()) in isTypeSubstitutable()
3482 assert(EltType->isBuiltinType() && "Neon vector element not a BuiltinType"); in mangleNeonVectorType()
3577 assert(EltType->isBuiltinType() && "Neon vector element not a BuiltinType"); in mangleAArch64NeonVectorType()
3646 assert(EltType->isBuiltinType() && in mangleAArch64FixedSveVectorType()
H A DASTContext.cpp4012 assert(vecType->isBuiltinType()); in getVectorType()
4082 assert(vecType->isBuiltinType() || vecType->isDependentType()); in getExtVectorType()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DType.h2023 bool isBuiltinType() const;
6893 inline bool Type::isBuiltinType() const {
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExprObjC.cpp601 } else if (ValueType->isBuiltinType()) { in BuildObjCBoxedExpr()
H A DSemaType.cpp2623 (!CurType->isBuiltinType() || CurType->isBooleanType() || in BuildVectorType()
H A DSemaDeclAttr.cpp1531 QT->isBuiltinType() ? diag::err_iboutletcollection_builtintype in handleIBOutletCollection()
H A DSemaExpr.cpp5732 } else if (LHSTy->isBuiltinType() && in CreateBuiltinArraySubscriptExpr()