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

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  355   REGISTER_MATCHER(isConstexpr);
tools/clang/tools/extra/clang-tidy/cert/StaticObjectExceptionCheck.cpp
   28               unless(anyOf(isConstexpr(), hasType(cxxRecordDecl(isLambda())),
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/InterfacesGlobalInitCheck.cpp
   25               unless(isConstexpr()));
tools/clang/tools/extra/clang-tidy/fuchsia/StaticallyConstructedObjectsCheck.cpp
   42                              hasDeclaration(cxxConstructorDecl(isConstexpr())),
tools/clang/tools/extra/clang-tidy/misc/StaticAssertCheck.cpp
   53       callExpr(hasDeclaration(functionDecl(unless(isConstexpr()))));
tools/clang/tools/extra/clang-tidy/readability/ElseAfterReturnCheck.cpp
   27           ifStmt(unless(isConstexpr()),
tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
 1065                       varDecl(hasName("foo"), isConstexpr())));
 1067                       functionDecl(hasName("bar"), isConstexpr())));
 1069                       ifStmt(isConstexpr()), LanguageMode::Cxx17OrLater));
 1070   EXPECT_TRUE(notMatches("void baz() { if (1 > 0) {} }", ifStmt(isConstexpr()),