Searched refs:m_exception (Results 1 - 9 of 9) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DWrappedRuntimeException.java41 private Exception m_exception; field in class:WrappedRuntimeException
54 m_exception = e;
69 m_exception = e;
79 return m_exception;
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DWrappedRuntimeException.java34 private Exception m_exception; field in class:WrappedRuntimeException
47 m_exception = e;
62 m_exception = e;
72 return m_exception;
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptsyntaxcheckresult_p.h41 JSObjectRef m_exception; member in class:QScriptSyntaxCheckResultPrivate
51 : m_exception(0)
56 : m_exception(value)
63 return m_exception ? QScriptSyntaxCheckResult::Error : QScriptSyntaxCheckResult::Valid;
69 return m_exception ? 1 : -1;
H A Dqscriptsyntaxcheckresult.cpp121 if (m_exception)
122 JSValueUnprotect(*m_engine, m_exception);
127 if (!m_exception)
130 JSStringRef tmp = JSValueToStringCopy(*m_engine, m_exception, /* exception */ 0);
138 if (!m_exception)
140 // m_exception is an instance of the Exception so it has "line" attribute.
143 m_exception,
H A Dqscriptengine_p.h96 JSValueRef m_exception; member in class:QScriptEnginePrivate
124 return m_exception;
129 if (m_exception)
130 JSValueUnprotect(m_context, m_exception);
131 m_exception = 0;
140 if (m_exception)
141 JSValueUnprotect(m_context, m_exception);
143 m_exception = exception;
148 if (!hasUncaughtException() || !JSValueIsObject(m_context, m_exception))
153 JSValueRef lineNumber = JSObjectGetProperty(m_context, const_cast<JSObjectRef>(m_exception), lineNumberPropertyNam
[all...]
H A Dqscriptengine_p.cpp35 , m_exception(0)
46 if (m_exception)
47 JSValueUnprotect(m_context, m_exception);
91 return m_exception ? new QScriptValuePrivate(this, m_exception) : new QScriptValuePrivate();
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerCallFrame.h47 , m_exception(exception)
58 JSValue exception() const { return m_exception; }
62 JSValue m_exception; member in class:JSC::DebuggerCallFrame
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptState.h49 bool hadException() { return !m_exception.IsEmpty(); }
52 m_exception = exception;
54 v8::Local<v8::Value> exception() { return m_exception; }
74 v8::Local<v8::Value> m_exception; member in class:WebCore::ScriptState
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathException.java65 protected Exception m_exception; field in class:XPathException
152 this.m_exception = e;
167 this.m_exception = e;
188 Throwable exception = m_exception;
221 Throwable exception = m_exception;
281 Throwable exception = m_exception;
326 return m_exception;

Completed in 170 milliseconds