OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exceptionObject
(Results
1 - 5
of
5
) sorted by null
/ndk/sources/cxx-stl/gabi++/src/
cxxabi.cc
266
extern "C" void* __cxa_get_exception_ptr(void*
exceptionObject
) {
269
reinterpret_cast<_Unwind_Exception *>(
exceptionObject
)+1)-1;
280
extern "C" void __cxa_decrement_exception_refcount(void*
exceptionObject
) throw() {
281
if (
exceptionObject
!= NULL)
284
reinterpret_cast<__cxa_exception*>(
exceptionObject
)-1;
286
__cxa_free_exception(
exceptionObject
);
290
extern "C" void __cxa_increment_exception_refcount(void*
exceptionObject
) throw() {
291
if (
exceptionObject
!= NULL)
294
reinterpret_cast<__cxa_exception*>(
exceptionObject
)-1;
/ndk/sources/cxx-stl/gabi++/include/
cxxabi.h
334
void* __cxa_begin_catch(void*
exceptionObject
);
343
void* __cxa_get_exception_ptr(void*
exceptionObject
);
349
void __cxa_decrement_exception_refcount(void*
exceptionObject
) throw();
350
void __cxa_increment_exception_refcount(void*
exceptionObject
) throw();
351
void __cxa_rethrow_primary_exception(void*
exceptionObject
);
/external/compiler-rt/lib/
gcc_personality_v0.c
186
uint64_t exceptionClass, struct _Unwind_Exception*
exceptionObject
,
190
uint64_t exceptionClass, struct _Unwind_Exception*
exceptionObject
,
237
(uintptr_t)
exceptionObject
);
/external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp
522
/// @param
exceptionObject
thrown _Unwind_Exception instance.
529
struct _Unwind_Exception *
exceptionObject
) {
533
!
exceptionObject
||
538
(((char*)
exceptionObject
) + ourBaseFromUnwindOffset);
544
"handleActionValue(...):
exceptionObject
= <%p>, "
546
exceptionObject
,
609
/// @param
exceptionObject
thrown _Unwind_Exception instance.
616
struct _Unwind_Exception *
exceptionObject
,
720
exceptionObject
);
736
(uintptr_t)
exceptionObject
);
[
all
...]
/external/webkit/Source/WebCore/bindings/js/
JSDOMBinding.cpp
290
JSObject*
exceptionObject
= exception.toObject(exec);
291
int lineNumber =
exceptionObject
->get(exec, Identifier(exec, "line")).toInt32(exec);
292
UString exceptionSourceURL =
exceptionObject
->get(exec, Identifier(exec, "sourceURL")).toString(exec);
Completed in 139 milliseconds