Home
last modified time | relevance | path

Searched refs:isNoThrow (Results 1 – 5 of 5) sorted by relevance

/external/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp860 EXPECT_TRUE(notMatches("void f();", functionDecl(isNoThrow()))); in TEST()
861 EXPECT_TRUE(notMatches("void f() throw(int);", functionDecl(isNoThrow()))); in TEST()
863 notMatches("void f() noexcept(false);", functionDecl(isNoThrow()))); in TEST()
864 EXPECT_TRUE(matches("void f() throw();", functionDecl(isNoThrow()))); in TEST()
865 EXPECT_TRUE(matches("void f() noexcept;", functionDecl(isNoThrow()))); in TEST()
867 EXPECT_TRUE(notMatches("void f();", functionProtoType(isNoThrow()))); in TEST()
868 EXPECT_TRUE(notMatches("void f() throw(int);", functionProtoType(isNoThrow()))); in TEST()
870 notMatches("void f() noexcept(false);", functionProtoType(isNoThrow()))); in TEST()
871 EXPECT_TRUE(matches("void f() throw();", functionProtoType(isNoThrow()))); in TEST()
872 EXPECT_TRUE(matches("void f() noexcept;", functionProtoType(isNoThrow()))); in TEST()
/external/clang/include/clang/Basic/
DBuiltins.h109 bool isNoThrow(unsigned ID) const { in isNoThrow() function
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp318 REGISTER_MATCHER(isNoThrow); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h3365 AST_POLYMORPHIC_MATCHER(isNoThrow, in AST_POLYMORPHIC_MATCHER() argument
/external/clang/lib/Sema/
DSemaDecl.cpp11871 if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>()) in AddKnownFunctionAttributes()