HomeSort by relevance Sort by last modified time
    Searched refs:m_exception (Results 1 - 9 of 9) sorted by null

  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
WrappedRuntimeException.java 41 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/
WrappedRuntimeException.java 34 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/
qscriptsyntaxcheckresult_p.h 41 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;
qscriptsyntaxcheckresult.cpp 121 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,
qscriptengine_p.h 96 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), lineNumberPropertyName.get(), &exception)
    [all...]
qscriptengine_p.cpp 35 , 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/
DebuggerCallFrame.h 47 , 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/
ScriptState.h 49 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/
XPathException.java 65 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 185 milliseconds