HomeSort by relevance Sort by last modified time
    Searched defs:noexcept (Results 1 - 10 of 10) sorted by null

  /external/clang/test/CXX/except/except.spec/
p9-noexcept.cpp 5 void target() noexcept
15 void reverse() noexcept(false) function
p2-places.cpp 46 void f() noexcept(false);
48 void (*fp)() noexcept(false);
50 void g(void pfa() noexcept(false));
52 typedef int (*pf)() noexcept(false); // expected-error {{specifications are not allowed in typedefs}} typedef in namespace:noex
54 void (*h())() noexcept(false);
56 void (*i() noexcept(false))(void (*)() noexcept(true)) noexcept(false);
58 void (**k)(void pfa() noexcept(false)); // no-error
60 void (**j)() noexcept(false); // expected-error {{not allowed beyond a single}
    [all...]
p5-virtual.cpp 35 virtual void f7() noexcept; member in struct:Base
36 virtual void f8() noexcept; member in struct:Base
37 virtual void f9() noexcept(false);
38 virtual void f10() noexcept(false);
41 virtual void f12() noexcept; member in struct:Base
42 virtual void f13() noexcept(false);
54 virtual void g6() noexcept; // expected-note {{overridden virtual function is here}} member in struct:Base
55 virtual void g7() noexcept; // expected-note {{overridden virtual function is here}} member in struct:Base
57 virtual void g8() noexcept; // expected-note {{overridden virtual function is here}} member in struct:Base
71 virtual void f7() noexcept; member in struct:Derived
76 virtual void f11() noexcept; member in struct:Derived
81 virtual void f15() noexcept; member in struct:Derived
    [all...]
canonical.cpp 8 template <class _Tp> _Tp&& declval() noexcept; member in namespace:std
13 static const bool value = noexcept(_Tp(declval<_Args>()...));
24 noexcept(__is_nothrow_constructible<allocator_type>::value);
32 noexcept(__is_nothrow_constructible<_Compare>::value);
47 basic_string<T, _Traits, _Allocator>::basic_string() noexcept(__is_nothrow_constructible<allocator_type>::value) {} function in namespace:std
51 noexcept(__is_nothrow_constructible<_Compare>::value) {} function in namespace:std
p1.cpp 25 // Simple parser tests, noexcept specification.
29 void f1() noexcept { }
30 void f2() noexcept (true) { } function in namespace:noex
31 void f3() noexcept (false) { } function in namespace:noex
32 void f4() noexcept (1 < 2) { }
35 void foo() noexcept { }
36 void bar() noexcept (true) { } function in class:noex::CA1
39 void (*fptr1)() noexcept; member in namespace:noex
40 void (*fptr2)() noexcept (true);
46 void f() throw(int) noexcept { } // expected-error {{cannot have both}
68 void g(T x) noexcept((sizeof(T) == sizeof(int)) || f(x)) { } function in namespace:noexcept_unevaluated
    [all...]
  /external/clang/test/CodeGenCXX/
cxx0x-delegating-ctors.cpp 5 ~non_trivial() noexcept(false);
8 non_trivial::~non_trivial() noexcept(false) {} function
  /external/clang/test/SemaCXX/
dependent-noexcept-unevaluated.cpp 5 declval() noexcept;
14 void swap(T& x, T& y) noexcept(some_trait<T>::value) function
26 void swap(array& a) noexcept(noexcept(swap(declval<T&>(), declval<T&>())));
  /external/clang/test/Lexer/
cxx0x_keyword_as_cxx98.cpp 33 int noexcept; // expected-warning {{'noexcept' is a keyword in C++11}} variable
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 9 ThrowingCopy() noexcept; member in struct:ThrowingCopy
10 ThrowingCopy(ThrowingCopy &&) noexcept; member in struct:ThrowingCopy
11 ThrowingCopy(const ThrowingCopy &) noexcept(false);
12 ThrowingCopy & operator =(ThrowingCopy &&) noexcept; member in struct:ThrowingCopy
13 ThrowingCopy & operator =(const ThrowingCopy &) noexcept(false);
18 HasCopyConstructor() noexcept; member in struct:HasCopyConstructor
19 HasCopyConstructor(const HasCopyConstructor &) noexcept(false);
24 HasCopyAssignment() noexcept; member in struct:HasCopyAssignment
25 HasCopyAssignment & operator =(const HasCopyAssignment &) noexcept(false);
30 HasMoveConstructor() noexcept; member in struct:HasMoveConstructor
31 HasMoveConstructor(HasMoveConstructor &&) noexcept; member in struct:HasMoveConstructor
36 HasMoveAssignment() noexcept; member in struct:HasMoveAssignment
37 HasMoveAssignment & operator =(HasMoveAssignment &&) noexcept; member in struct:HasMoveAssignment
42 HasDestructor() noexcept; member in struct:HasDestructor
43 ~HasDestructor() noexcept; member in struct:HasDestructor
69 PrivateMove() noexcept; member in struct:PrivateMove
73 PrivateMove(PrivateMove &&) noexcept; member in struct:PrivateMove
74 PrivateMove & operator =(PrivateMove &&) noexcept; member in struct:PrivateMove
83 PrivateDestructor() noexcept; member in struct:PrivateDestructor
85 PrivateDestructor(PrivateDestructor &&) noexcept; member in struct:PrivateDestructor
87 ~PrivateDestructor() noexcept; member in struct:PrivateDestructor
96 NonTrivialCopyOnly() noexcept; member in struct:NonTrivialCopyOnly
108 ContainsConst() noexcept; member in struct:ContainsConst
114 ContainsRef() noexcept; member in struct:ContainsRef
159 ContainsRValueRef() noexcept; member in struct:ContainsRValueRef
    [all...]
  /external/clang/test/CXX/special/class.dtor/
p3-0x.cpp 17 ~D() noexcept(false);
38 F::~F() noexcept(false) {} function
78 ~TD() noexcept(false);
102 TF<T>::~TF() noexcept(false) {} function

Completed in 203 milliseconds