Home
last modified time | relevance | path

Searched refs:hasStaticStorageDuration (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cert/
H A DStaticObjectExceptionCheck.cpp27 anyOf(hasThreadStorageDuration(), hasStaticStorageDuration()), in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DStaticAccessedThroughInstanceCheck.cpp44 varDecl(hasStaticStorageDuration())))) in registerMatchers()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp1468 EXPECT_TRUE(matches(T, varDecl(hasName("y"), hasStaticStorageDuration()))); in TEST_P()
1469 EXPECT_TRUE(matches(T, varDecl(hasName("a"), hasStaticStorageDuration()))); in TEST_P()
1470 EXPECT_TRUE(matches(T, varDecl(hasName("b"), hasStaticStorageDuration()))); in TEST_P()
1471 EXPECT_TRUE(matches(T, varDecl(hasName("c"), hasStaticStorageDuration()))); in TEST_P()
1472 EXPECT_TRUE(notMatches(T, varDecl(hasName("x"), hasStaticStorageDuration()))); in TEST_P()
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp357 REGISTER_MATCHER(hasStaticStorageDuration); in RegistryMaps()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1073 to(varDecl(hasStaticStorageDuration()).bind(DeclBind))))); in VisitCluster()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h4362 AST_MATCHER(VarDecl, hasStaticStorageDuration) { in AST_MATCHER() argument