Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/llvm-project-15.0.7/compiler-rt/lib/scudo/
H A Dscudo_new_delete.cpp31 #define OPERATOR_NEW_BODY_ALIGN(Type, Align, NoThrow) \ argument
33 if (!NoThrow && UNLIKELY(!Ptr)) reportOutOfMemory(size); \
35 #define OPERATOR_NEW_BODY(Type, NoThrow) \ argument
36 OPERATOR_NEW_BODY_ALIGN(Type, 0, NoThrow)
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dmember-init.cpp44 struct NoThrow { NoThrowCtor tc = 42; }; argument
47 static_assert(noexcept(NoThrow()), "incorrect exception specification");
/llvm-project-15.0.7/clang/test/Misc/
H A Dpragma-attribute-supported-attributes-list.test115 // CHECK-NEXT: NoThrow (SubjectMatchRule_hasType_functionType)
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DAttr.td2075 def NoThrow : InheritableAttr {
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDecl.cpp10691 case attr::NoThrow: in AttrCompatibleWithMultiVersion()