Lines Matching refs:Throwable
17 #include "throwable.h"
33 Class* Throwable::java_lang_Throwable_ = NULL;
35 void Throwable::SetCause(Throwable* cause) {
38 Throwable* current_cause = GetFieldObject<Throwable*>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_),
41 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), cause, false);
44 bool Throwable::IsCheckedException() const {
51 std::string Throwable::Dump() const {
77 Throwable* cause = GetFieldObject<Throwable*>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), false);
85 void Throwable::SetClass(Class* java_lang_Throwable) {
91 void Throwable::ResetClass() {