Home
last modified time | relevance | path

Searched refs:typedefType (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DNumberObjectConversionChecker.cpp202 typedefType(hasDeclaration(anyOf( in checkASTCodeBody()
243 qualType(typedefType(hasDeclaration( in checkASTCodeBody()
256 unless(typedefType(hasDeclaration( in checkASTCodeBody()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/
H A DMisplacedConstCheck.cpp26 hasType(typedefType(hasDeclaration(anyOf( in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/google/
H A DUpgradeGoogletestCaseCheck.cpp191 typeLoc(loc(qualType(typedefType(hasDeclaration(TestCaseTypeAlias)))), in registerMatchers()
201 typedefType(hasDeclaration(TestCaseTypeAlias))))), in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DUseAutoCheck.cpp177 return typedefType(hasDeclaration(standardIterator())); in typedefIterator()
199 anyOf(typedefType(HasIteratorDecl), recordType(HasIteratorDecl)))); in iteratorFromUsingDeclaration()
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/find-all-symbols/
H A DFindAllSymbols.cpp224 loc(typedefType(hasDeclaration(Typedefs.bind("use"))))), in registerMatchers()
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp576 REGISTER_MATCHER(typedefType); in RegistryMaps()
/llvm-project-15.0.7/clang/lib/AST/
H A DType.cpp4325 if (const auto *typedefType = dyn_cast<TypedefType>(cur)) in isObjCNSObjectType() local
4326 return typedefType->getDecl()->hasAttr<ObjCNSObjectAttr>(); in isObjCNSObjectType()
4336 if (const auto *typedefType = dyn_cast<TypedefType>(this)) in isObjCIndependentClassType() local
4337 return typedefType->getDecl()->hasAttr<ObjCIndependentClassAttr>(); in isObjCIndependentClassType()
/llvm-project-15.0.7/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp1056 const AstTypeMatcher<TypedefType> typedefType; variable
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNodeTest.cpp1812 varDecl(hasName("a"), hasType(typedefType())))); in TEST_P()
H A DASTMatchersTraversalTest.cpp248 hasType(typedefType(hasDeclaration(decl())))))); in TEST()
5464 elaboratedType(elaboratedType(namesType(typedefType()))))); in TEST()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7155 extern const AstTypeMatcher<TypedefType> typedefType;
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaType.cpp7313 if (auto typedefType = desugared->getAs<TypedefType>()) { in checkNullabilityTypeSpecifier() local
7314 TypedefNameDecl *typedefDecl = typedefType->getDecl(); in checkNullabilityTypeSpecifier()