/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InjectedScriptBase.cpp | 47 static PassRefPtr<TypeBuilder::Debugger::ExceptionDetails> toExceptionDetails(PassRefPtr<JSONObject> object) 53 RefPtr<TypeBuilder::Debugger::ExceptionDetails> exceptionDetails = TypeBuilder::Debugger::ExceptionDetails::create().setText(text); 56 exceptionDetails->setUrl(url); 59 exceptionDetails->setLine(line); 62 exceptionDetails->setColumn(column); 88 exceptionDetails->setStackTrace(frames.release()); 90 return exceptionDetails.release(); 171 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails [all...] |
JavaScriptCallFrame.cpp | 165 wrappedResult->Set(v8::String::NewFromUtf8(m_isolate, "exceptionDetails"), createExceptionDetails(tryCatch.Message(), m_isolate)); 168 wrappedResult->Set(v8::String::NewFromUtf8(m_isolate, "exceptionDetails"), v8::Undefined(m_isolate)); 198 v8::Handle<v8::Object> exceptionDetails = v8::Object::New(isolate); 199 exceptionDetails->Set(v8::String::NewFromUtf8(isolate, "text"), message->Get()); 200 exceptionDetails->Set(v8::String::NewFromUtf8(isolate, "url"), message->GetScriptOrigin().ResourceName()); 201 exceptionDetails->Set(v8::String::NewFromUtf8(isolate, "line"), v8::Integer::New(isolate, message->GetLineNumber())); 202 exceptionDetails->Set(v8::String::NewFromUtf8(isolate, "column"), v8::Integer::New(isolate, message->GetStartColumn())); 204 exceptionDetails->Set(v8::String::NewFromUtf8(isolate, "stackTrace"), message->GetStackTrace()->AsArray()); 206 exceptionDetails->Set(v8::String::NewFromUtf8(isolate, "stackTrace"), v8::Undefined(isolate)); 207 return exceptionDetails; [all...] |
InjectedScript.cpp | 61 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, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails) 69 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails); 83 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const Vector<ScriptValue>& asyncCallStacks, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails) 94 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
|
InspectorRuntimeAgent.cpp | 78 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, RefPtr<TypeBuilder::Debugger::ExceptionDetails>& exceptionDetails) 89 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown, &exceptionDetails);
|
InspectorDebuggerAgent.cpp | 59 using blink::TypeBuilder::Debugger::ExceptionDetails; [all...] |
InjectedScriptSource.js | 696 if (!wrappedResult.exceptionDetails) { 701 return this._createThrownValue(wrappedResult.result, objectGroup, generatePreview, wrappedResult.exceptionDetails); 708 * @param {!DebuggerAgent.ExceptionDetails=} exceptionDetails 711 _createThrownValue: function(value, objectGroup, generatePreview, exceptionDetails) 719 return { wasThrown: true, result: remoteObject, exceptionDetails: exceptionDetails, __proto__: null }; 763 if (objectGroup === "console" && !wrappedResult.exceptionDetails) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/ |
ScriptSnippetModel.js | 249 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails 252 function compileCallback(target, error, scriptId, exceptionDetails) 263 this._printRunOrCompileScriptResultFailure(target, exceptionDetails, evaluationUrl); 288 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails 291 function runCallback(target, error, result, exceptionDetails) 298 if (!exceptionDetails) 301 this._printRunOrCompileScriptResultFailure(target, exceptionDetails, sourceURL); 329 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetail [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
RuntimeModel.js | 208 * @param {function(?WebInspector.RemoteObject, boolean, ?RuntimeAgent.RemoteObject=, ?DebuggerAgent.ExceptionDetails=)} callback 228 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails 230 function evalCallback(error, result, wasThrown, exceptionDetails) 238 callback(null, !!wasThrown, wasThrown ? null : result, exceptionDetails); 240 callback(this.target().runtimeModel.createRemoteObject(result), !!wasThrown, undefined, exceptionDetails);
|
ConsoleModel.js | 154 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails 157 function printResult(result, wasThrown, valueResult, exceptionDetails) 163 this.dispatchEventToListeners(WebInspector.ConsoleModel.Events.CommandEvaluated, {result: result, wasThrown: wasThrown, text: text, commandMessage: commandMessage, exceptionDetails: exceptionDetails});
|
DebuggerModel.js | 598 * @param {function(?WebInspector.RemoteObject, boolean, ?RuntimeAgent.RemoteObject=, ?DebuggerAgent.ExceptionDetails=)} callback 605 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails 608 function didEvaluate(result, wasThrown, exceptionDetails) 613 callback(null, !!wasThrown, wasThrown ? null : result, exceptionDetails); 615 callback(this.target().runtimeModel.createRemoteObject(result), !!wasThrown, undefined, exceptionDetails); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/ |
ConsoleView.js | 790 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails 792 _printResult: function(result, wasThrown, originatingConsoleMessage, exceptionDetails) 810 message = new WebInspector.ConsoleMessage(target, WebInspector.ConsoleMessage.MessageSource.JS, level, exceptionDetails.text, WebInspector.ConsoleMessage.MessageType.Result, exceptionDetails.url, exceptionDetails.line, exceptionDetails.column, undefined, [WebInspector.UIString("Uncaught" (…) [all...] |