HomeSort by relevance Sort by last modified time
    Searched refs:sourceID (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/webkit/Source/JavaScriptCore/debugger/
Debugger.h 45 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/JavaScriptCore/interpreter/
CallFrame.cpp 38 intptr_t sourceID;
42 interpreter()->retrieveLastCaller(this, signedLineNumber, sourceID, urlString, function);
  /external/webkit/Source/WebCore/inspector/front-end/
Script.js 26 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));
DebuggerModel.js 127 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, sourceURL, lineOffset, columnOffset, length, undefined, undefined, isContentScript)
    [all...]
SourceFile.js 91 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 };
DebuggerPresentationModel.js 99 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) === sourceFileId
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebScriptDebugger.h 57 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);
WebScriptDebugger.mm 101 CallScriptDebugDelegate(implementations->didEnterCallFrameFunc, webView, @selector(webView:didEnterCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), static_cast<NSInteger>(0), -1, webFrame);
125 CallScriptDebugDelegate(implementations->didParseSourceFunc, webView, @selector(webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:), nsSource, firstLine, nsURL, sourceProvider->asID(), webFrame);
127 CallScriptDebugDelegate(implementations->didParseSourceFunc, webView, @selector(webView:didParseSource:fromURL:sourceId:forWebFrame:), nsSource, [nsURL absoluteString], sourceProvider->asID(), webFrame);
144 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
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JavaScriptCallFrame.h 42 static PassRefPtr<JavaScriptCallFrame> create(const JSC::DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0& textPosition)
44 return adoptRef(new JavaScriptCallFrame(debuggerCallFrame, caller, sourceID, textPosition));
57 intptr_t sourceID() const { return m_sourceID; }
62 void update(const JSC::DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, const TextPosition0& textPosition)
66 m_sourceID = sourceID;
79 JavaScriptCallFrame(const JSC::DebuggerCallFrame&, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0&);
ScriptDebugServer.h 59 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, int lineno)
    [all...]
ScriptDebugServer.cpp 68 String ScriptDebugServer::setBreakpoint(const String& sourceID, const ScriptBreakpoint& scriptBreakpoint, int* actualLineNumber, int* actualColumnNumber)
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
108 SourceIdToBreakpointsMap::const_iterator it = m_sourceIdToBreakpoints.find(sourceID);
219 String sourceID = ustringToString(JSC::UString::number(sourceProvider->asID()));
228 copy[i]->didParseSource(sourceID, url, data, lineOffset, columnOffset, isContentScript);
305 void ScriptDebugServer::createCallFrameAndPauseIfNeeded(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
308 m_currentCallFrame = JavaScriptCallFrame::create(debuggerCallFrame, m_currentCallFrame, sourceID, textPosition);
312 void ScriptDebugServer::updateCallFrameAndPauseIfNeeded(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber
    [all...]
JavaScriptCallFrame.cpp 45 JavaScriptCallFrame::JavaScriptCallFrame(const DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0& textPosition)
48 , m_sourceID(sourceID)
ScriptCallStackFactory.cpp 63 intptr_t sourceID;
67 exec->interpreter()->retrieveLastCaller(callFrame, signedLineNumber, sourceID, urlString, function);
  /external/webkit/Source/WebCore/inspector/
ScriptDebugListener.h 44 virtual void didParseSource(const String& sourceID, const String& url, const String& data, int lineOffset, int columnOffset, bool isContentScript) = 0;
JavaScriptCallFrame.idl 44 readonly attribute long sourceID;
InspectorDebuggerAgent.h 88 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);
127 PassRefPtr<InspectorObject> resolveBreakpoint(const String& breakpointId, const String& sourceId, const ScriptBreakpoint&);
InspectorConsoleInstrumentation.h 49 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceID)
53 addMessageToConsoleImpl(inspectorAgent, source, type, level, message, lineNumber, sourceID);
InspectorDebuggerAgent.cpp 177 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* sourceId, int* lineNumber, int* columnNumber)
179 if (!location->getString("sourceID", sourceId) || !location->getNumber("lineNumber", lineNumber)) {
181 *errorString = "sourceId and lineNumber are required.";
191 String sourceId;
195 if (!parseLocation(errorString, location, &sourceId, &lineNumber, &columnNumber))
200 String breakpointId = makeString(sourceId, ":", String::number(lineNumber), ":", String::number(columnNumber));
204 *actualLocation = resolveBreakpoint(breakpointId, sourceId, breakpoint);
232 String sourceId;
236 if (!parseLocation(errorString, location, &sourceId, &lineNumber, &columnNumber)
    [all...]
  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Common.h 53 uint32_t sourceID; /* pthread_t = unsigned long int */
  /external/webkit/Source/WebCore/bindings/v8/
JavaScriptCallFrame.h 52 int sourceID() const;
ScriptDebugServer.h 53 String setBreakpoint(const String& sourceID, const ScriptBreakpoint&, int* actualLineNumber, int* actualColumnNumber);
75 bool editScriptSource(const String& sourceID, const String& newContent, String* error);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.cpp 193 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());
ChromeClientHaiku.h 86 const String& sourceID);
88 unsigned int lineNumber, const String& sourceID);
  /external/webkit/Source/JavaScriptCore/profiler/
ProfileGenerator.cpp 61 intptr_t sourceID;
65 exec->interpreter()->retrieveLastCaller(exec, lineNumber, sourceID, sourceURL, function);
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebChromeClient.java 170 public void onConsoleMessage(String message, int lineNumber, String sourceID) {
171 mWrappedClient.onConsoleMessage(message, lineNumber, sourceID);

Completed in 336 milliseconds

1 2 3 4