Searched refs:wasThrown (Results 1 - 17 of 17) sorted by relevance

/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DRuntimeManager.js51 function evalCallback(error, result, wasThrown)
62 callback(null, wasThrown, wasThrown ? null : result);
64 callback(WebInspector.RemoteObject.fromPayload(result), wasThrown);
H A DJavaScriptRuntimeCompletionProvider.js118 function evaluated(result, wasThrown)
120 if (wasThrown || !result || result.type === "undefined" || (result.type === "object" && result.subtype === "null")) {
163 function receivedPropertyNamesFromEvaluate(object, wasThrown, result)
165 receivedPropertyNames.call(this, result && !wasThrown ? result.value : null);
H A DJavaScriptLogViewController.js225 function printResult(result, wasThrown)
230 this._appendConsoleMessage(new WebInspector.ConsoleCommandResult(result, wasThrown, commandMessage), true);
H A DDOMTreeManager.js613 function regionNodesAvailable(error, remoteObject, wasThrown)
620 if (wasThrown) {
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DConsoleCommandResult.js30 WebInspector.ConsoleCommandResult = function(result, wasThrown, originatingCommand)
32 var level = (wasThrown ? WebInspector.ConsoleMessage.MessageLevel.Error : WebInspector.ConsoleMessage.MessageLevel.Log);
H A DObjectPropertiesSection.js197 if (this.property.wasThrown)
211 if (this.property.wasThrown)
225 this.hasChildren = this.property.value.hasChildren && !this.property.wasThrown;
H A DSourceCodeTextEditor.js1078 function populate(error, result, wasThrown)
1080 if (error || wasThrown)
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Protocol/
H A DRemoteObject.js167 function evaluatedCallback(error, result, wasThrown)
169 if (error || wasThrown) {
185 function propertySetCallback(error, result, wasThrown)
187 if (error || wasThrown) {
205 function mycallback(error, result, wasThrown)
207 callback((error || wasThrown) ? null : WebInspector.RemoteObject.fromPayload(result));
215 function mycallback(error, result, wasThrown)
217 callback((error || wasThrown) ? null : result.value);
246 if (descriptor && descriptor.wasThrown)
247 this.wasThrown
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/
H A DInjectedScript.h59 void evaluate(ErrorString*, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
60 void callFunctionOn(ErrorString*, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
61 void evaluateOnCallFrame(ErrorString*, const Deprecated::ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
H A DInjectedScript.cpp61 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>* result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) argument
69 makeEvalCall(errorString, function, result, wasThrown);
72 void InjectedScript::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>* result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) argument
80 makeEvalCall(errorString, function, result, wasThrown);
83 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const Deprecated::ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>* result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) argument
93 makeEvalCall(errorString, function, result, wasThrown);
H A DInjectedScriptBase.cpp122 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, Deprecated::ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown) argument
145 if (!resultObj || !resultPair->getBoolean(ASCIILiteral("wasThrown"), &wasThrownVal)) {
146 *errorString = ASCIILiteral("Internal error: result is not a pair of value and wasThrown flag");
151 *wasThrown = wasThrownVal;
H A DInjectedScriptBase.h71 void makeEvalCall(ErrorString*, Deprecated::ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
H A DInjectedScriptSource.js367 descriptor.wasThrown = true;
430 return { wasThrown: false,
474 return { wasThrown: false,
492 return { wasThrown: true,
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/agents/
H A DInspectorRuntimeAgent.h63 virtual void evaluate(ErrorString*, const String& expression, const String* objectGroup, const bool* includeCommandLineAPI, const bool* doNotPauseOnExceptionsAndMuteConsole, const int* executionContextId, const bool* returnByValue, const bool* generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) override final;
64 virtual void callFunctionOn(ErrorString*, const String& objectId, const String& expression, const RefPtr<Inspector::InspectorArray>* optionalArguments, const bool* doNotPauseOnExceptionsAndMuteConsole, const bool* returnByValue, const bool* generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) override final;
H A DInspectorRuntimeAgent.cpp114 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<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) argument
126 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
134 void InspectorRuntimeAgent::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const RefPtr<InspectorArray>* const optionalArguments, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) argument
152 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
H A DInspectorDebuggerAgent.h87 virtual void evaluateOnCallFrame(ErrorString*, const String& callFrameId, const String& expression, const String* objectGroup, const bool* includeCommandLineAPI, const bool* doNotPauseOnExceptionsAndMuteConsole, const bool* returnByValue, const bool* generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) override;
H A DInspectorDebuggerAgent.cpp519 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<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) argument
534 injectedScript.evaluateOnCallFrame(errorString, m_currentCallStack, callFrameId, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, returnByValue ? *returnByValue : false, generatePreview ? *generatePreview : false, &result, wasThrown);

Completed in 95 milliseconds