Searched refs:sourceID (Results 1 - 25 of 65) sorted by relevance

123

/external/webkit/Source/JavaScriptCore/interpreter/
H A DCallFrame.cpp38 intptr_t sourceID; local
42 interpreter()->retrieveLastCaller(this, signedLineNumber, sourceID, urlString, function);
/external/webkit/Source/WebCore/inspector/front-end/
H A DScript.js26 WebInspector.Script = function(sourceID, sourceURL, lineOffset, columnOffset, length, errorLine, errorMessage, isContentScript)
28 this.sourceID = sourceID;
51 DebuggerAgent.getScriptSource(this.sourceID, didGetScriptSource.bind(this));
62 DebuggerAgent.editScriptSource(this.sourceID, newSource, didEditScriptSource.bind(this));
H A DDebuggerModel.js127 scriptForSourceID: function(sourceID)
129 return this._scripts[sourceID];
140 for (var sourceID in this._scripts) {
141 var script = this._scripts[sourceID];
148 editScriptSource: function(sourceID, newSource, callback)
150 this._scripts[sourceID].editSource(newSource, this._didEditScriptSource.bind(this, sourceID, newSource, callback));
153 _didEditScriptSource: function(sourceID, newSource, callback, error, callFrames)
182 _parsedScriptSource: function(sourceID, sourceURL, lineOffset, columnOffset, length, isContentScript)
184 var script = new WebInspector.Script(sourceID, sourceUR
[all...]
H A DSourceFile.js91 if (this._concatenatedScripts[script.sourceID])
94 this._concatenatedScripts[this._scripts[i].sourceID] = true;
195 scriptRanges.push({ start: start, end: end, sourceID: script.sourceID });
292 return { sourceID: closestScript.sourceID, lineNumber: lineNumber, columnNumber: columnNumber };
H A DDebuggerPresentationModel.js99 var sourceFileId = this._createSourceFileId(script.sourceURL, script.sourceID);
168 WebInspector.debuggerModel.editScriptSource(script.sourceID, newSource, didEditScriptSource.bind(this, oldSource));
325 var script = WebInspector.debuggerModel.scriptForSourceID(location.sourceID);
329 location.sourceID = script.sourceID;
523 var script = WebInspector.debuggerModel.scriptForSourceID(callFrame.location.sourceID);
525 sourceFile = this._sourceFileForScript(script.sourceURL, script.sourceID);
553 _sourceFileForScript: function(sourceURL, sourceID)
555 return this._sourceFiles[this._createSourceFileId(sourceURL, sourceID)];
562 return this._createSourceFileId(script.sourceURL, script.sourceID)
[all...]
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebugger.h45 virtual void exception(const DebuggerCallFrame&, intptr_t sourceID, int lineNumber, bool hasHandler) = 0;
46 virtual void atStatement(const DebuggerCallFrame&, intptr_t sourceID, int lineNumber) = 0;
47 virtual void callEvent(const DebuggerCallFrame&, intptr_t sourceID, int lineNumber) = 0;
48 virtual void returnEvent(const DebuggerCallFrame&, intptr_t sourceID, int lineNumber) = 0;
50 virtual void willExecuteProgram(const DebuggerCallFrame&, intptr_t sourceID, int lineNumber) = 0;
51 virtual void didExecuteProgram(const DebuggerCallFrame&, intptr_t sourceID, int lineNumber) = 0;
52 virtual void didReachBreakpoint(const DebuggerCallFrame&, intptr_t sourceID, int lineNumber) = 0;
/external/webkit/Source/WebKit/mac/WebView/
H A DWebScriptDebugger.h57 virtual void callEvent(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber);
58 virtual void atStatement(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber);
59 virtual void returnEvent(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber);
60 virtual void exception(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber, bool hasHandler);
61 virtual void willExecuteProgram(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno);
62 virtual void didExecuteProgram(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno);
63 virtual void didReachBreakpoint(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno);
H A DWebScriptDebugger.mm144 void WebScriptDebugger::callEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
158 CallScriptDebugDelegate(implementations->didEnterCallFrameFunc, webView, @selector(webView:didEnterCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webFrame);
163 void WebScriptDebugger::atStatement(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
177 CallScriptDebugDelegate(implementations->willExecuteStatementFunc, webView, @selector(webView:willExecuteStatement:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webFrame);
182 void WebScriptDebugger::returnEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
196 CallScriptDebugDelegate(implementations->willLeaveCallFrameFunc, webView, @selector(webView:willLeaveCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webFrame);
204 void WebScriptDebugger::exception(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber, bool hasHandler)
218 CallScriptDebugDelegate(cache->exceptionWasRaisedFunc, webView, @selector(webView:exceptionWasRaised:hasHandler:sourceId:line:forWebFrame:), m_topCallFrame.get(), hasHandler, sourceID, lineNumber, webFrame);
220 CallScriptDebugDelegate(cache->exceptionWasRaisedFunc, webView, @selector(webView:exceptionWasRaised:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webFrame);
226 void WebScriptDebugger::willExecuteProgram(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, in
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DScriptDebugServer.h59 String setBreakpoint(const String& sourceID, const ScriptBreakpoint&, int* actualLineNumber, int* actualColumnNumber);
81 bool editScriptSource(const String& sourceID, const String& newContent, String* error);
99 bool hasBreakpoint(intptr_t sourceID, const TextPosition0&) const;
108 void createCallFrameAndPauseIfNeeded(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber);
109 void updateCallFrameAndPauseIfNeeded(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber);
115 virtual void callEvent(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber);
116 virtual void atStatement(const JSC::DebuggerCallFrame&, intptr_t sourceID, int firstLine);
117 virtual void returnEvent(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber);
118 virtual void exception(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber, bool hasHandler);
119 virtual void willExecuteProgram(const JSC::DebuggerCallFrame&, intptr_t sourceID, in
[all...]
H A DJavaScriptCallFrame.h42 static PassRefPtr<JavaScriptCallFrame> create(const JSC::DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0& textPosition) argument
44 return adoptRef(new JavaScriptCallFrame(debuggerCallFrame, caller, sourceID, textPosition));
57 intptr_t sourceID() const { return m_sourceID; } function in class:WebCore::JavaScriptCallFrame
62 void update(const JSC::DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, const TextPosition0& textPosition) argument
66 m_sourceID = sourceID;
79 JavaScriptCallFrame(const JSC::DebuggerCallFrame&, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0&);
H A DScriptDebugServer.cpp68 String ScriptDebugServer::setBreakpoint(const String& sourceID, const ScriptBreakpoint& scriptBreakpoint, int* actualLineNumber, int* actualColumnNumber) argument
70 intptr_t sourceIDValue = sourceID.toIntPtr();
82 return makeString(sourceID, ":", String::number(scriptBreakpoint.lineNumber));
103 bool ScriptDebugServer::hasBreakpoint(intptr_t sourceID, const TextPosition0& position) const argument
108 SourceIdToBreakpointsMap::const_iterator it = m_sourceIdToBreakpoints.find(sourceID);
219 String sourceID = ustringToString(JSC::UString::number(sourceProvider->asID())); local
228 copy[i]->didParseSource(sourceID, url, data, lineOffset, columnOffset, isContentScript);
305 void ScriptDebugServer::createCallFrameAndPauseIfNeeded(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
308 m_currentCallFrame = JavaScriptCallFrame::create(debuggerCallFrame, m_currentCallFrame, sourceID, textPosition);
312 void ScriptDebugServer::updateCallFrameAndPauseIfNeeded(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, in argument
357 callEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
363 atStatement(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
369 returnEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
386 exception(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber, bool hasHandler) argument
397 willExecuteProgram(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
403 didExecuteProgram(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
416 didReachBreakpoint(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
[all...]
H A DJavaScriptCallFrame.cpp45 JavaScriptCallFrame::JavaScriptCallFrame(const DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0& textPosition) argument
48 , m_sourceID(sourceID)
H A DScriptCallStackFactory.cpp63 intptr_t sourceID; local
67 exec->interpreter()->retrieveLastCaller(callFrame, signedLineNumber, sourceID, urlString, function);
/external/webkit/Source/WebCore/inspector/
H A DScriptDebugListener.h44 virtual void didParseSource(const String& sourceID, const String& url, const String& data, int lineOffset, int columnOffset, bool isContentScript) = 0;
H A DJavaScriptCallFrame.idl44 readonly attribute long sourceID;
H A DInspectorDebuggerAgent.h88 void editScriptSource(ErrorString*, const String& sourceID, const String& newContent, RefPtr<InspectorArray>* newCallFrames);
89 void getScriptSource(ErrorString*, const String& sourceID, String* scriptSource);
122 virtual void didParseSource(const String& sourceID, const String& url, const String& data, int lineOffset, int columnOffset, bool isContentScript);
H A DInspectorConsoleInstrumentation.h49 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceID) argument
53 addMessageToConsoleImpl(inspectorAgent, source, type, level, message, lineNumber, sourceID);
H A DInspectorDebuggerAgent.cpp179 if (!location->getString("sourceID", sourceId) || !location->getNumber("lineNumber", lineNumber)) {
274 location->setString("sourceID", sourceId);
280 void InspectorDebuggerAgent::editScriptSource(ErrorString* error, const String& sourceID, const String& newContent, RefPtr<InspectorArray>* newCallFrames) argument
282 if (scriptDebugServer().editScriptSource(sourceID, newContent, error))
286 void InspectorDebuggerAgent::getScriptSource(ErrorString*, const String& sourceID, String* scriptSource) argument
288 *scriptSource = m_scripts.get(sourceID).data;
375 void InspectorDebuggerAgent::didParseSource(const String& sourceID, const String& url, const String& data, int lineOffset, int columnOffset, bool isContentScript) argument
378 m_frontend->scriptParsed(sourceID, url, lineOffset, columnOffset, data.length(), isContentScript);
380 m_scripts.set(sourceID, Script(url, data, lineOffset, columnOffset));
396 RefPtr<InspectorObject> location = resolveBreakpoint(it->first, sourceID, breakpoin
[all...]
H A DInspectorConsoleAgent.h69 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, unsigned lineNumber, const String& sourceID);
/external/libnfc-nxp/Linux_x86/
H A DphOsalNfc_Common.h53 uint32_t sourceID; /* pthread_t = unsigned long int */ member in struct:phOsalNfc_sMsg
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptDebugServer.h53 String setBreakpoint(const String& sourceID, const ScriptBreakpoint&, int* actualLineNumber, int* actualColumnNumber);
75 bool editScriptSource(const String& sourceID, const String& newContent, String* error);
H A DJavaScriptCallFrame.h52 int sourceID() const;
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DChromeClientHaiku.cpp193 const String& sourceID)
195 printf("MESSAGE %s:%i %s\n", BString(sourceID).String(), lineNumber, BString(message).String());
199 unsigned int lineNumber, const String& sourceID)
201 printf("MESSAGE %s:%i %s\n", BString(sourceID).String(), lineNumber, BString(message).String());
205 unsigned int lineNumber, const String& sourceID)
207 printf("MESSAGE %s:%i %s\n", BString(sourceID).String(), lineNumber, BString(message).String());
192 addMessageToConsole(const String& message, unsigned int lineNumber, const String& sourceID) argument
198 addMessageToConsole(MessageSource, MessageLevel, const String& message, unsigned int lineNumber, const String& sourceID) argument
204 addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, unsigned int lineNumber, const String& sourceID) argument
H A DChromeClientHaiku.h86 const String& sourceID);
88 unsigned int lineNumber, const String& sourceID);
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfileGenerator.cpp61 intptr_t sourceID; local
65 exec->interpreter()->retrieveLastCaller(exec, lineNumber, sourceID, sourceURL, function);

Completed in 282 milliseconds

123