Searched defs:editScriptSource (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/inspector/front-end/
H A DDebuggerPresentationModel.js144 editScriptSource: function(sourceFileId, newSource, callback)
168 WebInspector.debuggerModel.editScriptSource(script.sourceID, newSource, didEditScriptSource.bind(this, oldSource));
761 this._presentationModel.editScriptSource(sourceFile.id, content, callback.bind(this));
H A DScriptsPanel.js1091 editScriptSource: function(text, callback)
1093 this._model.editScriptSource(this._sourceFileId, text, callback);
H A DSourceFrame.js938 this._delegate.editScriptSource(newContent, callback);
996 editScriptSource: function(text, callback)
/external/webkit/Source/WebCore/bindings/v8/
H A DDebuggerScript.js165 DebuggerScript.editScriptSource = function(scriptId, newSource)
H A DScriptDebugServer.cpp214 bool ScriptDebugServer::editScriptSource(const String& sourceID, const String& newContent, String* error) function in class:WebCore::ScriptDebugServer
223 v8::Handle<v8::Function> function = v8::Local<v8::Function>::Cast(m_debuggerScript.get()->Get(v8::String::New("editScriptSource")));
/external/webkit/Source/WebCore/bindings/js/
H A DScriptDebugServer.cpp192 bool ScriptDebugServer::editScriptSource(const String&, const String&, String*) function in class:WebCore::ScriptDebugServer
/external/webkit/Source/WebCore/inspector/
H A DInspectorDebuggerAgent.cpp280 void InspectorDebuggerAgent::editScriptSource(ErrorString* error, const String& sourceID, const String& newContent, RefPtr<InspectorArray>* newCallFrames) function in class:WebCore::InspectorDebuggerAgent
282 if (scriptDebugServer().editScriptSource(sourceID, newContent, error))

Completed in 143 milliseconds