/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorRuntimeAgent.h | 66 TypeBuilder::OptOutput<bool>* wasThrown); 75 TypeBuilder::OptOutput<bool>* wasThrown);
|
InjectedScript.h | 60 TypeBuilder::OptOutput<bool>* wasThrown); 68 TypeBuilder::OptOutput<bool>* wasThrown); 78 TypeBuilder::OptOutput<bool>* wasThrown);
|
InjectedScriptBase.h | 64 void makeEvalCall(ErrorString*, ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
|
InspectorRuntimeAgent.cpp | 69 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const int* executionContextId, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) 80 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown); 88 void InspectorRuntimeAgent::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const RefPtr<JSONArray>* const optionalArguments, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) 105 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
|
InjectedScriptBase.cpp | 118 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown) 138 if (!resultObj || !resultPair->getBoolean("wasThrown", &wasThrownVal)) { 139 *errorString = "Internal error: result is not a pair of value and wasThrown flag"; 143 *wasThrown = wasThrownVal;
|
InjectedScript.cpp | 60 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown) 68 makeEvalCall(errorString, function, result, wasThrown); 71 void InjectedScript::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown) 79 makeEvalCall(errorString, function, result, wasThrown); 82 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown) 92 makeEvalCall(errorString, function, result, wasThrown);
|
InspectorDebuggerAgent.h | 124 TypeBuilder::OptOutput<bool>* wasThrown); 126 void runScript(ErrorString*, const TypeBuilder::Debugger::ScriptId&, const int* executionContextId, const String* objectGroup, const bool* doNotPauseOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown);
|
InjectedScriptSource.js | 457 descriptor.wasThrown = true; 528 return { wasThrown: false, 572 return { wasThrown: false, 590 return { wasThrown: true, result: remoteObject }; [all...] |
InspectorDebuggerAgent.cpp | 806 void InspectorDebuggerAgent::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
PropertiesSidebarPane.js | 82 function nodePrototypesReady(object, wasThrown) 84 if (!object || wasThrown)
|
RuntimeModel.js | 149 * @param {boolean=} wasThrown 151 function evalCallback(error, result, wasThrown) 159 callback(null, !!wasThrown, wasThrown ? null : result); 161 callback(WebInspector.RemoteObject.fromPayload(result), !!wasThrown); 216 function evaluated(result, wasThrown) 218 if (!result || wasThrown) { 259 * @param {boolean} wasThrown 263 function receivedPropertyNamesFromEval(notRelevant, wasThrown, result) 265 if (result && !wasThrown) [all...] |
RemoteObject.js | 265 * @param {boolean=} wasThrown 268 function evaluatedCallback(error, result, wasThrown) 270 if (error || wasThrown) { 305 * @param {boolean=} wasThrown 307 function propertySetCallback(error, result, wasThrown) 309 if (error || wasThrown) { 348 * @param {boolean=} wasThrown 350 function mycallback(error, result, wasThrown) 357 callback(WebInspector.RemoteObject.fromPayload(result), wasThrown); 373 * @param {boolean=} wasThrown [all...] |
ExtensionAuditCategory.js | 149 * @param {boolean=} wasThrown 151 function onEvaluate(error, result, wasThrown) 153 if (wasThrown)
|
ObjectPopoverHelper.js | 97 * @param {boolean} wasThrown 101 function showObjectPopover(result, wasThrown, anchorOverride) 105 if (wasThrown) {
|
ObjectPropertiesSection.js | 207 if (this.property.wasThrown) { 219 if (this.property.wasThrown) 237 this.hasChildren = this.property.value.hasChildren && !this.property.wasThrown; 433 * @param {boolean=} wasThrown 435 _onInvokeGetterClick: function(result, wasThrown) 440 this.property.wasThrown = wasThrown; 852 * @param {boolean=} wasThrown 855 function processArrayFragment(arrayFragment, wasThrown) 857 if (!arrayFragment || wasThrown) [all...] |
DebuggerModel.js | 610 * @param {boolean=} wasThrown 613 function didEvaluate(result, wasThrown) 618 callback(null, !!wasThrown, wasThrown ? null : result); 620 callback(WebInspector.RemoteObject.fromPayload(result), !!wasThrown); 932 * @param {boolean=} wasThrown 934 function didEvaluateOnCallFrame(error, result, wasThrown) 941 callback(result, wasThrown); [all...] |
ScriptSnippetModel.js | 262 * @param {boolean=} wasThrown 265 function runCallback(error, result, wasThrown) 272 this._printRunScriptResult(result, wasThrown); 278 * @param {boolean=} wasThrown 280 _printRunScriptResult: function(result, wasThrown) 282 var level = (wasThrown ? WebInspector.ConsoleMessage.MessageLevel.Error : WebInspector.ConsoleMessage.MessageLevel.Log);
|
WatchExpressionsSidebarPane.js | 151 * @param {boolean} wasThrown 154 function appendResult(expression, watchIndex, result, wasThrown) 161 property.wasThrown = wasThrown; 386 if (this.property.wasThrown) {
|
WorkerManager.js | 106 * @param {boolean=} wasThrown 108 function evalCallback(error, result, wasThrown) 110 if (error || wasThrown) {
|
ExtensionPanel.js | 210 * @param {boolean=} wasThrown 212 _onEvaluate: function(title, callback, error, result, wasThrown)
|
ConsoleView.js | 608 * @param {boolean} wasThrown 611 _printResult: function(result, wasThrown, originatingCommand) 624 var message = new WebInspector.ConsoleCommandResult(result, wasThrown, originatingCommand, this._linkifier, url, lineNumber, columnNumber); 677 * @param {boolean} wasThrown 681 function printResult(result, wasThrown, valueResult) 691 this._printResult(result, wasThrown, commandMessage); [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
PageScriptDebugServer.h | 65 virtual void runScript(ScriptState*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionMessage);
|
ScriptDebugServer.h | 101 virtual void runScript(ScriptState*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionMessage);
|
PageScriptDebugServer.cpp | 159 void PageScriptDebugServer::runScript(ScriptState* state, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionMessage) 170 ScriptDebugServer::runScript(state, scriptId, result, wasThrown, exceptionMessage);
|
ScriptDebugServer.cpp | 592 void ScriptDebugServer::runScript(ScriptState* state, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionMessage) 609 *wasThrown = false; 611 *wasThrown = true;
|