OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:exception_ptr
(Results
1 - 25
of
189
) sorted by null
1
2
3
4
5
6
7
8
/external/libcxx/src/support/runtime/
exception_pointer_glibcxx.ipp
12
// it uses to implement std::
exception_ptr
(which it declares as an alias of
13
// std::__exception_ptr::
exception_ptr
) is not directly exported to clients. So
14
// we have little choice but to hijack std::__exception_ptr::
exception_ptr
's
15
// (which fortunately has the same layout as our std::
exception_ptr
) copy
17
// stable ABI), and its rethrow_exception(std::__exception_ptr::
exception_ptr
)
25
struct
exception_ptr
29
exception_ptr
(const
exception_ptr
&) _NOEXCEPT;
30
exception_ptr
& operator=(const
exception_ptr
&) _NOEXCEPT
[
all
...]
exception_pointer_msvc.ipp
28
exception_ptr
::
exception_ptr
() _NOEXCEPT { __ExceptionPtrCreate(this); }
29
exception_ptr
::
exception_ptr
(nullptr_t) _NOEXCEPT { __ExceptionPtrCreate(this); }
31
exception_ptr
::
exception_ptr
(const
exception_ptr
& __other) _NOEXCEPT {
34
exception_ptr
&
exception_ptr
::operator=(const
exception_ptr
& __other) _NOEXCEPT
[
all
...]
exception_pointer_unimplemented.ipp
16
exception_ptr
::~
exception_ptr
() _NOEXCEPT
18
# warning
exception_ptr
not yet implemented
19
fprintf(stderr, "
exception_ptr
not yet implemented\n");
23
exception_ptr
::
exception_ptr
(const
exception_ptr
& other) _NOEXCEPT
26
# warning
exception_ptr
not yet implemented
27
fprintf(stderr, "
exception_ptr
not yet implemented\n");
31
exception_ptr
& exception_ptr::operator=(const exception_ptr& other) _NOEXCEP
[
all
...]
exception_pointer_cxxabi.ipp
17
exception_ptr
::~
exception_ptr
() _NOEXCEPT {
21
exception_ptr
::
exception_ptr
(const
exception_ptr
& other) _NOEXCEPT
27
exception_ptr
&
exception_ptr
::operator=(const
exception_ptr
& other) _NOEXCEPT
56
exception_ptr
current_exception() _NOEXCEPT
60
// return
exception_ptr
(__cxa_current_primary_exception())
[
all
...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/support/runtime/
exception_pointer_glibcxx.ipp
12
// it uses to implement std::
exception_ptr
(which it declares as an alias of
13
// std::__exception_ptr::
exception_ptr
) is not directly exported to clients. So
14
// we have little choice but to hijack std::__exception_ptr::
exception_ptr
's
15
// (which fortunately has the same layout as our std::
exception_ptr
) copy
17
// stable ABI), and its rethrow_exception(std::__exception_ptr::
exception_ptr
)
25
struct
exception_ptr
29
exception_ptr
(const
exception_ptr
&) _NOEXCEPT;
30
exception_ptr
& operator=(const
exception_ptr
&) _NOEXCEPT
[
all
...]
exception_pointer_unimplemented.ipp
16
exception_ptr
::~
exception_ptr
() _NOEXCEPT
18
# warning
exception_ptr
not yet implemented
19
fprintf(stderr, "
exception_ptr
not yet implemented\n");
23
exception_ptr
::
exception_ptr
(const
exception_ptr
& other) _NOEXCEPT
26
# warning
exception_ptr
not yet implemented
27
fprintf(stderr, "
exception_ptr
not yet implemented\n");
31
exception_ptr
& exception_ptr::operator=(const exception_ptr& other) _NOEXCEP
[
all
...]
exception_pointer_msvc.ipp
36
exception_ptr
::
exception_ptr
() _NOEXCEPT { __ExceptionPtrCreate(this); }
37
exception_ptr
::
exception_ptr
(nullptr_t) _NOEXCEPT { __ExceptionPtrCreate(this); }
39
exception_ptr
::
exception_ptr
(const
exception_ptr
& __other) _NOEXCEPT {
42
exception_ptr
&
exception_ptr
::operator=(const
exception_ptr
& __other) _NOEXCEPT
[
all
...]
exception_pointer_cxxabi.ipp
17
exception_ptr
::~
exception_ptr
() _NOEXCEPT {
21
exception_ptr
::
exception_ptr
(const
exception_ptr
& other) _NOEXCEPT
27
exception_ptr
&
exception_ptr
::operator=(const
exception_ptr
& other) _NOEXCEPT
56
exception_ptr
current_exception() _NOEXCEPT
60
// return
exception_ptr
(__cxa_current_primary_exception())
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
exception_ptr.h
1
// Exception Handling support header (
exception_ptr
class) for -*- C++ -*-
26
/** @file bits/
exception_ptr
.h
55
class
exception_ptr
;
58
using __exception_ptr::
exception_ptr
;
60
/** Obtain an
exception_ptr
to the currently handled exception. If there
64
exception_ptr
current_exception() _GLIBCXX_USE_NOEXCEPT;
66
/// Throw the object pointed to by the
exception_ptr
.
67
void rethrow_exception(
exception_ptr
) __attribute__ ((__noreturn__));
75
class
exception_ptr
class in namespace:std::__exception_ptr
79
explicit
exception_ptr
(void* __e) _GLIBCXX_USE_NOEXCEPT
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
exception_ptr.h
1
// Exception Handling support header (
exception_ptr
class) for -*- C++ -*-
26
/** @file bits/
exception_ptr
.h
55
class
exception_ptr
;
58
using __exception_ptr::
exception_ptr
;
60
/** Obtain an
exception_ptr
to the currently handled exception. If there
64
exception_ptr
current_exception() _GLIBCXX_USE_NOEXCEPT;
66
/// Throw the object pointed to by the
exception_ptr
.
67
void rethrow_exception(
exception_ptr
) __attribute__ ((__noreturn__));
75
class
exception_ptr
class in namespace:std::__exception_ptr
79
explicit
exception_ptr
(void* __e) _GLIBCXX_USE_NOEXCEPT
[
all
...]
/external/libcxx/include/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/darwin-x86/clang-4639204/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
139
class _LIBCPP_TYPE_VIS
exception_ptr
143
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
/prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
exception
54
typedef unspecified
exception_ptr
;
56
exception_ptr
current_exception() noexcept;
57
void rethrow_exception [[noreturn]] (
exception_ptr
p);
58
template<class E>
exception_ptr
make_exception_ptr(E e) noexcept;
70
exception_ptr
nested_ptr() const noexcept;
132
class _LIBCPP_TYPE_VIS
exception_ptr
;
134
_LIBCPP_FUNC_VIS
exception_ptr
current_exception() _NOEXCEPT;
135
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(
exception_ptr
);
137
class _LIBCPP_TYPE_VIS
exception_ptr
141
_LIBCPP_INLINE_VISIBILITY
exception_ptr
() _NOEXCEPT : __ptr_() {
[
all
...]
Completed in 792 milliseconds
1
2
3
4
5
6
7
8