Home
last modified time | relevance | path

Searched defs:Throws (Results 1 – 8 of 8) sorted by relevance

/llvm-project/libcxx/test/std/containers/sequences/vector/vector.modifiers/
H A Derase_iter.pass.cpp23 struct Throws { global() struct
24 ThrowsThrows Throws() argument
25 ThrowsThrows Throws() argument
26 ThrowsThrows Throws() argument
30 ThrowsThrows Throws() argument
34 operator =Throws operator =() argument
38 operator =Throws operator =() argument
43 sThrowsThrows global() argument
46 v_Throws global() argument
H A Derase_iter_iter.pass.cpp23 struct Throws { global() struct
24 ThrowsThrows Throws() argument
25 ThrowsThrows Throws() argument
26 ThrowsThrows Throws() argument
27 ThrowsThrows Throws() argument
28 operator =Throws operator =() argument
29 operator =Throws operator =() argument
31 sThrowsThrows global() argument
34 v_Throws global() argument
/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/
H A Derase_iter.pass.cpp24 struct Throws { struct
25 Throws() : v_(0) {} in Throws() function
26 Throws(int v) : v_(v) {} in Throws() function
27 Throws(const Throws &rhs) : v_(rhs.v_) { if (sThrows) throw 1; } in Throws() argument
28 Throws( Throws &&rhs) : v_(rhs.v_) { if (sThrows) throw 1; } in Throws() function
29 Throws& operator=(const Throws &rhs) { v_ = rhs.v_; return *this; } in operator =() argument
30 Throws& operator=( Throws &&rhs) { v_ = rhs.v_; return *this; } in operator =() argument
33 static bool sThrows; argument
36 bool Throws::sThrows = false; argument
H A Derase_iter_iter.pass.cpp26 struct Throws { struct
27 Throws() : v_(0) {} in Throws() argument
28 Throws(int v) : v_(v) {} in Throws() function
29 Throws(const Throws &rhs) : v_(rhs.v_) { if (sThrows) throw 1; } in Throws() argument
30 Throws( Throws &&rhs) : v_(rhs.v_) { if (sThrows) throw 1; } in Throws() function
31 Throws& operator=(const Throws &rhs) { v_ = rhs.v_; return *this; } in operator =() argument
32 Throws& operator=( Throws &&rhs) { v_ = rhs.v_; return *this; } in operator =() argument
35 static bool sThrows; argument
38 bool Throws::sThrows = false; argument
/llvm-project/clang/test/CodeGenCXX/
H A Dnew-array-init-exceptions.cpp4 struct Throws { struct
/llvm-project/clang/unittests/AST/
H A DASTDumperTest.cpp132 TestInputs Throws(R"cc( in TEST() local
/llvm-project/bolt/lib/Core/
H A DExceptions.cpp391 const bool Throws = BC.MIB->isInvoke(Instr); updateEHRanges() local
/llvm-project/clang/test/SemaCXX/
H A Dwarn-throw-out-noexcept-func.cpp134 struct Throws { struct