Home
last modified time | relevance | path

Searched refs:reportExceptions (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/bindings/js/
DScriptFunctionCall.cpp124 ScriptValue ScriptFunctionCall::call(bool& hadException, bool reportExceptions) in call() argument
132 if (reportExceptions) in call()
146 if (reportExceptions) in call()
162 ScriptObject ScriptFunctionCall::construct(bool& hadException, bool reportExceptions) in construct() argument
170 if (reportExceptions) in construct()
184 if (reportExceptions) in construct()
DScriptFunctionCall.h79 ScriptValue call(bool& hadException, bool reportExceptions = true);
81 ScriptObject construct(bool& hadException, bool reportExceptions = true);
/external/webkit/Source/WebCore/bindings/v8/
DScriptScope.cpp40 ScriptScope::ScriptScope(ScriptState* scriptState, bool reportExceptions) in ScriptScope() argument
45 m_exceptionCatcher.SetVerbose(reportExceptions); in ScriptScope()
DScriptFunctionCall.h66 ScriptValue call(bool& hadException, bool reportExceptions = true);
68 ScriptObject construct(bool& hadException, bool reportExceptions = true);
DScriptFunctionCall.cpp115 ScriptValue ScriptFunctionCall::call(bool& hadException, bool reportExceptions) in call() argument
117 ScriptScope scope(m_scriptState, reportExceptions); in call()
148 ScriptObject ScriptFunctionCall::construct(bool& hadException, bool reportExceptions) in construct() argument
150 ScriptScope scope(m_scriptState, reportExceptions); in construct()
DScriptScope.h41 ScriptScope(ScriptState* scriptState, bool reportExceptions = true);
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1623275 (WebCore::ScriptFunctionCall::call): Added reportExceptions parameter.