OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:noexcept
(Results
1 - 8
of
8
) sorted by null
/external/clang/test/CXX/except/except.spec/
p9-noexcept.cpp
5
void target()
noexcept
14
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
((f(x), sizeof(T) == 4)) { }
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/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 310 milliseconds