Home
last modified time | relevance | path

Searched refs:m_exception (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/JavaScriptCore/qt/api/
Dqscriptsyntaxcheckresult.cpp121 if (m_exception) in ~QScriptSyntaxCheckResultPrivate()
122 JSValueUnprotect(*m_engine, m_exception); in ~QScriptSyntaxCheckResultPrivate()
127 if (!m_exception) in errorMessage()
130 JSStringRef tmp = JSValueToStringCopy(*m_engine, m_exception, /* exception */ 0); in errorMessage()
138 if (!m_exception) in errorLineNumber()
143 m_exception, in errorLineNumber()
Dqscriptengine_p.h96 JSValueRef m_exception; variable
124 return m_exception; in hasUncaughtException()
129 if (m_exception) in clearExceptions()
130 JSValueUnprotect(m_context, m_exception); in clearExceptions()
131 m_exception = 0; in clearExceptions()
140 if (m_exception) in setException()
141 JSValueUnprotect(m_context, m_exception); in setException()
143 m_exception = exception; in setException()
148 if (!hasUncaughtException() || !JSValueIsObject(m_context, m_exception)) in uncaughtExceptionLineNumber()
153 …JSValueRef lineNumber = JSObjectGetProperty(m_context, const_cast<JSObjectRef>(m_exception), lineN… in uncaughtExceptionLineNumber()
[all …]
Dqscriptsyntaxcheckresult_p.h41 JSObjectRef m_exception;
51 : m_exception(0) in QScriptSyntaxCheckResultPrivate()
56 : m_exception(value) in QScriptSyntaxCheckResultPrivate()
63 return m_exception ? QScriptSyntaxCheckResult::Error : QScriptSyntaxCheckResult::Valid; in state()
69 return m_exception ? 1 : -1; in errorColumnNumber()
Dqscriptengine_p.cpp35 , m_exception(0) in QScriptEnginePrivate()
46 if (m_exception) in ~QScriptEnginePrivate()
47 JSValueUnprotect(m_context, m_exception); in ~QScriptEnginePrivate()
91 return m_exception ? new QScriptValuePrivate(this, m_exception) : new QScriptValuePrivate(); in uncaughtException()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DWrappedRuntimeException.java34 private Exception m_exception; field in WrappedRuntimeException
47 m_exception = e; in WrappedRuntimeException()
62 m_exception = e; in WrappedRuntimeException()
72 return m_exception; in getException()
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DWrappedRuntimeException.java41 private Exception m_exception; field in WrappedRuntimeException
54 m_exception = e; in WrappedRuntimeException()
69 m_exception = e; in WrappedRuntimeException()
79 return m_exception; in getException()
/external/apache-xml/src/main/java/org/apache/xpath/
DXPathException.java65 protected Exception m_exception; field in XPathException
152 this.m_exception = e; in XPathException()
167 this.m_exception = e; in XPathException()
188 Throwable exception = m_exception; in printStackTrace()
221 Throwable exception = m_exception; in getMessage()
281 Throwable exception = m_exception; in printStackTrace()
326 return m_exception; in getException()
/external/webkit/Source/JavaScriptCore/debugger/
DDebuggerCallFrame.h47 , m_exception(exception) in DebuggerCallFrame()
58 JSValue exception() const { return m_exception; } in exception()
62 JSValue m_exception; variable
/external/webkit/Source/WebCore/bindings/v8/
DScriptState.h49 bool hadException() { return !m_exception.IsEmpty(); } in hadException()
52 m_exception = exception; in setException()
54 v8::Local<v8::Value> exception() { return m_exception; } in exception()
74 v8::Local<v8::Value> m_exception; variable
/external/webkit/Source/JavaScriptCore/
DChangeLog-2007-10-1412220 (KJS::ExecState::setException): Renamed _exception to m_exception
DChangeLog-2009-06-1630762 the exception from ExecState::m_exception; instead, the code that