Searched refs:errorData (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
H A DLiveEditSupport.js100 * @param {!DebuggerAgent.SetScriptSourceError=} errorData
102 function innerCallback(error, errorData)
106 WebInspector.LiveEditSupport.logDetailedError(error, errorData, script);
136 * @param {!DebuggerAgent.SetScriptSourceError=} errorData
139 WebInspector.LiveEditSupport.logDetailedError = function(error, errorData, contextScript)
142 if (!errorData) {
147 var compileError = errorData.compileError;
153 WebInspector.console.addMessage(WebInspector.UIString("Unknown LiveEdit error: %s; %s", JSON.stringify(errorData), error), warningLevel);
H A DResourceScriptMapping.js310 * @param {!DebuggerAgent.SetScriptSourceError=} errorData
313 function innerCallback(error, errorData)
319 callback(error, errorData, this._script);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DScript.js178 * @param {!DebuggerAgent.SetScriptSourceError=} errorData
183 function didEditScriptSource(error, errorData, callFrames, debugData, asyncStackTrace)
189 callback(error, errorData, callFrames, asyncStackTrace, needsStepIn);
H A DDebuggerModel.js391 * @param {!DebuggerAgent.SetScriptSourceError=} errorData
396 _didEditScriptSource: function(scriptId, newSource, callback, error, errorData, callFrames, asyncStackTrace, needsStepIn)
400 this._pendingLiveEditCallback = callback.bind(this, error, errorData);
406 callback(error, errorData);
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabase.cpp819 static void callTransactionErrorCallback(ExecutionContext*, SQLTransactionErrorCallback* callback, PassOwnPtr<SQLErrorData> errorData) argument
821 RefPtrWillBeRawPtr<SQLError> error = SQLError::create(*errorData);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptDebugServer.cpp254 bool ScriptDebugServer::setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>& errorData, ScriptValue* newCallFrames, RefPtr<JSONObject>* result) argument
314 errorData = TypeBuilder::Debugger::SetScriptSourceError::create();
315 errorData->setCompileError(compileError);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DJavaScriptSourceFrame.js362 * @param {!DebuggerAgent.SetScriptSourceError=} errorData
365 function liveEditCallback(error, errorData, script)
369 liveEditErrorData = errorData;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcloctst.c5398 } errorData; typedef in typeref:struct:errorDataTag
5400 const errorData maximizeErrors[] = {
5433 const errorData minimizeErrors[] = {
5460 static int32_t getExpectedReturnValue(const errorData* data)
5473 static int32_t getBufferSize(const errorData* data, int32_t actualSize)
/external/icu/icu4c/source/test/cintltst/
H A Dcloctst.c5399 } errorData; typedef in typeref:struct:errorDataTag
5401 const errorData maximizeErrors[] = {
5434 const errorData minimizeErrors[] = {
5461 static int32_t getExpectedReturnValue(const errorData* data)
5474 static int32_t getBufferSize(const errorData* data, int32_t actualSize)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDebuggerAgent.cpp645 void InspectorDebuggerAgent::setScriptSource(ErrorString* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>& errorData, const String& scriptId, const String& newContent, const bool* const preview, RefPtr<Array<CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<StackTrace>& asyncStackTrace) argument
647 if (!scriptDebugServer().setScriptSource(scriptId, newContent, asBool(preview), error, errorData, &m_currentCallStack, &result))

Completed in 6487 milliseconds