OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thrown_object
(Results
1 - 6
of
6
) sorted by null
/external/libcxxabi/src/
cxa_noexception.cpp
27
__cxa_increment_exception_refcount(void *
thrown_object
) throw() {
28
if (
thrown_object
!= nullptr)
33
__cxa_decrement_exception_refcount(void *
thrown_object
) throw() {
34
if (
thrown_object
!= nullptr)
42
__cxa_rethrow_primary_exception(void*
thrown_object
) {
43
if (
thrown_object
!= nullptr)
cxa_exception.cpp
44
cxa_exception_from_thrown_object(void*
thrown_object
)
46
return static_cast<__cxa_exception*>(
thrown_object
) - 1;
203
void __cxa_free_exception(void *
thrown_object
) throw() {
207
((char *)cxa_exception_from_thrown_object(
thrown_object
)) - header_offset;
259
__cxa_throw(void *
thrown_object
, std::type_info *tinfo, void (*dest)(void *)) {
261
__cxa_exception* exception_header = cxa_exception_from_thrown_object(
thrown_object
);
624
If
thrown_object
is not null, atomically increment the referenceCount field
626
by
thrown_object
.
628
Requires: If
thrown_object
is not NULL, it is a native exception.
631
__cxa_increment_exception_refcount(void *
thrown_object
) throw()
686
void*
thrown_object
=
thrown_object
_from_cxa_exception(exception_header);
local
[
all
...]
cxa_default_handlers.cpp
42
void*
thrown_object
=
local
58
if (catch_type->can_catch(thrown_type,
thrown_object
))
61
const std::exception* e = static_cast<const std::exception*>(
thrown_object
);
/external/v8/src/runtime/
runtime-scopes.cc
734
CONVERT_ARG_HANDLE_CHECKED(Object,
thrown_object
, 0);
738
isolate->factory()->NewCatchContext(current, scope_info,
thrown_object
);
[
all
...]
/external/v8/src/heap/
factory.h
386
Handle<Object>
thrown_object
);
[
all
...]
factory.cc
[
all
...]
Completed in 152 milliseconds