OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thrown_object
(Results
1 - 7
of
7
) sorted by null
/external/libcxxabi/src/
cxa_exception.cpp
45
cxa_exception_from_thrown_object(void*
thrown_object
)
47
return static_cast<__cxa_exception*>(
thrown_object
) - 1;
170
void __cxa_free_exception (void *
thrown_object
) throw() {
171
do_free(cxa_exception_from_thrown_object(
thrown_object
));
223
__cxa_throw(void*
thrown_object
, std::type_info* tinfo, void (*dest)(void*))
226
__cxa_exception* exception_header = cxa_exception_from_thrown_object(
thrown_object
);
590
If
thrown_object
is not null, atomically increment the referenceCount field
592
by
thrown_object
.
594
Requires: If
thrown_object
is not NULL, it is a native exception.
597
__cxa_increment_exception_refcount(void*
thrown_object
) throw(
656
void*
thrown_object
=
thrown_object
_from_cxa_exception(exception_header);
local
[
all
...]
cxa_default_handlers.cpp
43
void*
thrown_object
=
local
59
if (catch_type->can_catch(thrown_type,
thrown_object
))
62
const std::exception* e = static_cast<const std::exception*>(
thrown_object
);
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_exception.cpp
45
cxa_exception_from_thrown_object(void*
thrown_object
)
47
return static_cast<__cxa_exception*>(
thrown_object
) - 1;
170
void __cxa_free_exception (void *
thrown_object
) throw() {
171
do_free(cxa_exception_from_thrown_object(
thrown_object
));
223
__cxa_throw(void*
thrown_object
, std::type_info* tinfo, void (*dest)(void*))
226
__cxa_exception* exception_header = cxa_exception_from_thrown_object(
thrown_object
);
587
If
thrown_object
is not null, atomically increment the referenceCount field
589
by
thrown_object
.
591
Requires: If
thrown_object
is not NULL, it is a native exception.
594
__cxa_increment_exception_refcount(void*
thrown_object
) throw(
653
void*
thrown_object
=
thrown_object
_from_cxa_exception(exception_header);
local
[
all
...]
cxa_default_handlers.cpp
43
void*
thrown_object
=
local
59
if (catch_type->can_catch(thrown_type,
thrown_object
))
62
const std::exception* e = static_cast<const std::exception*>(
thrown_object
);
/external/v8/src/
factory.h
242
Handle<Object>
thrown_object
);
factory.cc
739
Handle<Object>
thrown_object
) {
748
context->set(Context::THROWN_OBJECT_INDEX, *
thrown_object
);
[
all
...]
runtime.cc
[
all
...]
Completed in 2741 milliseconds