/external/webkit/Source/JavaScriptCore/qt/api/ |
D | qscriptsyntaxcheckresult.cpp | 121 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()
|
D | qscriptengine_p.h | 96 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 …]
|
D | qscriptsyntaxcheckresult_p.h | 41 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()
|
D | qscriptengine_p.cpp | 35 , 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/ |
D | WrappedRuntimeException.java | 34 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/ |
D | WrappedRuntimeException.java | 41 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/ |
D | XPathException.java | 65 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/ |
D | DebuggerCallFrame.h | 47 , 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/ |
D | ScriptState.h | 49 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/ |
D | ChangeLog-2007-10-14 | 12220 (KJS::ExecState::setException): Renamed _exception to m_exception
|
D | ChangeLog-2009-06-16 | 30762 the exception from ExecState::m_exception; instead, the code that
|