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

1 2 3

  /external/webkit/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/JavaScriptCore/interpreter/
CallFrame.cpp 43 intptr_t sourceID;
47 interpreter()->retrieveLastCaller(this, signedLineNumber, sourceID, urlString, function);
  /external/webkit/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);
124 CallScriptDebugDelegate(implementations->didParseSourceFunc, webView, @selector(webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:), nsSource, source.firstLine(), nsURL, source.provider()->asID(), webFrame);
126 CallScriptDebugDelegate(implementations->didParseSourceFunc, webView, @selector(webView:didParseSource:fromURL:sourceId:forWebFrame:), nsSource, [nsURL absoluteString], source.provider()->asID(), webFrame);
143 void WebScriptDebugger::callEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
157 CallScriptDebugDelegate(implementations->didEnterCallFrameFunc, webView, @selector(webView:didEnterCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webFrame);
162 void WebScriptDebugger::atStatement(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
176 CallScriptDebugDelegate(implementations->willExecuteStatementFunc, webView, @selector(webView:willExecuteStatement:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webFrame);
181 void WebScriptDebugger::returnEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber
    [all...]
  /external/webkit/WebCore/inspector/front-end/
Script.js 26 WebInspector.Script = function(sourceID, sourceURL, source, startingLine, errorLine, errorMessage)
28 this.sourceID = sourceID;
Breakpoint.js 26 WebInspector.Breakpoint = function(url, line, sourceID, condition)
30 this.sourceID = sourceID;
74 return this.sourceID + ":" + this.line;
92 InspectorBackend.updateBreakpoint(this.sourceID, this.line, c);
BreakpointsSidebarPane.js 61 if (!InspectorBackend.debuggerEnabled() || !breakpoint.sourceID)
65 InspectorBackend.addBreakpoint(breakpoint.sourceID, breakpoint.line, breakpoint.condition);
80 var script = WebInspector.panels.scripts.scriptOrResourceForID(breakpoint.sourceID);
138 if (!InspectorBackend.debuggerEnabled() || !breakpoint.sourceID)
141 InspectorBackend.removeBreakpoint(breakpoint.sourceID, breakpoint.line);
151 if (!InspectorBackend.debuggerEnabled() || !breakpoint.sourceID)
155 InspectorBackend.addBreakpoint(breakpoint.sourceID, breakpoint.line, breakpoint.condition);
157 InspectorBackend.removeBreakpoint(breakpoint.sourceID, breakpoint.line);
InspectorBackendStub.js 161 addBreakpoint: function(sourceID, line, condition)
165 removeBreakpoint: function(sourceID, line)
169 updateBreakpoint: function(sourceID, line, condition)
SourceView.js 94 var sourceID = null;
101 sourceID = script.sourceID;
106 var breakpoint = new WebInspector.Breakpoint(this.resource.url, line, sourceID);
  /external/webkit/WebCore/inspector/
JavaScriptCallFrame.h 42 static PassRefPtr<JavaScriptCallFrame> create(const JSC::DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, int line)
44 return adoptRef(new JavaScriptCallFrame(debuggerCallFrame, caller, sourceID, line));
57 intptr_t sourceID() const { return m_sourceID; }
59 void update(const JSC::DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int line)
63 m_sourceID = sourceID;
76 JavaScriptCallFrame(const JSC::DebuggerCallFrame&, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, int line);
JavaScriptDebugServer.h 65 void addBreakpoint(intptr_t sourceID, unsigned lineNumber, const JSC::UString& condition);
66 void updateBreakpoint(intptr_t sourceID, unsigned lineNumber, const JSC::UString& condition);
67 void removeBreakpoint(intptr_t sourceID, unsigned lineNumber);
68 bool hasBreakpoint(intptr_t sourceID, unsigned lineNumber) const;
119 BreakpointInfo* breakpointInfo(intptr_t sourceID, unsigned lineNumber) const;
125 virtual void callEvent(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber);
126 virtual void atStatement(const JSC::DebuggerCallFrame&, intptr_t sourceID, int firstLine);
127 virtual void returnEvent(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber);
128 virtual void exception(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNumber, bool hasHandler);
129 virtual void willExecuteProgram(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno)
    [all...]
JavaScriptCallFrame.idl 32 readonly attribute long sourceID;
JavaScriptDebugServer.cpp 168 void JavaScriptDebugServer::addBreakpoint(intptr_t sourceID, unsigned lineNumber, const UString& condition)
170 LineToBreakpointInfoMap* sourceBreakpoints = m_breakpoints.get(sourceID);
173 m_breakpoints.set(sourceID, sourceBreakpoints);
182 JavaScriptDebugServer::BreakpointInfo* JavaScriptDebugServer::breakpointInfo(intptr_t sourceID, unsigned lineNumber) const
184 LineToBreakpointInfoMap* sourceBreakpoints = m_breakpoints.get(sourceID);
190 void JavaScriptDebugServer::updateBreakpoint(intptr_t sourceID, unsigned lineNumber, const UString& condition)
192 BreakpointInfo* info = breakpointInfo(sourceID, lineNumber);
203 void JavaScriptDebugServer::removeBreakpoint(intptr_t sourceID, unsigned lineNumber)
205 LineToBreakpointInfoMap* sourceBreakpoints = m_breakpoints.get(sourceID);
217 m_breakpoints.remove(sourceID);
    [all...]
JavaScriptCallFrame.cpp 44 JavaScriptCallFrame::JavaScriptCallFrame(const DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, int line)
47 , m_sourceID(sourceID)
InspectorBackend.h 81 void addBreakpoint(const String& sourceID, unsigned lineNumber, const String& condition);
82 void updateBreakpoint(const String& sourceID, unsigned lineNumber, const String& condition);
83 void removeBreakpoint(const String& sourceID, unsigned lineNumber);
InspectorBackend.idl 55 void addBreakpoint(in DOMString sourceID, in unsigned long lineNumber, in DOMString condition);
56 void updateBreakpoint(in DOMString sourceID, in unsigned long lineNumber, in DOMString condition);
57 void removeBreakpoint(in DOMString sourceID, in unsigned long lineNumber);
  /external/webkit/JavaScriptCore/runtime/
Error.h 54 static JSObject* create(ExecState*, ErrorType, const UString& message, int lineNumber, intptr_t sourceID, const UString& sourceURL);
58 JSObject* throwError(ExecState*, ErrorType, const UString& message, int lineNumber, intptr_t sourceID, const UString& sourceURL);
Error.cpp 41 JSObject* Error::create(ExecState* exec, ErrorType type, const UString& message, int lineNumber, intptr_t sourceID, const UString& sourceURL)
87 if (sourceID != -1)
88 error->putWithAttributes(exec, Identifier(exec, "sourceId"), jsNumber(exec, sourceID), ReadOnly | DontDelete);
127 JSObject* throwError(ExecState* exec, ErrorType type, const UString& message, int line, intptr_t sourceID, const UString& sourceURL)
129 JSObject* error = Error::create(exec, type, message, line, sourceID, sourceURL);
  /external/webkit/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.cpp 183 const String& sourceID)
185 printf("MESSAGE %s:%i %s\n", BString(sourceID).String(), lineNumber, BString(message).String());
189 unsigned int lineNumber, const String& sourceID)
191 printf("MESSAGE %s:%i %s\n", BString(sourceID).String(), lineNumber, BString(message).String());
195 unsigned int lineNumber, const String& sourceID)
197 printf("MESSAGE %s:%i %s\n", BString(sourceID).String(), lineNumber, BString(message).String());
ChromeClientHaiku.h 84 const String& sourceID);
86 unsigned int lineNumber, const String& sourceID);
  /external/webkit/WebCore/bindings/v8/
V8ConsoleMessage.h 46 V8ConsoleMessage(const String& string, const String& sourceID, unsigned lineNumber);
V8ConsoleMessage.cpp 46 V8ConsoleMessage::V8ConsoleMessage(const String& string, const String& sourceID, unsigned lineNumber)
48 , m_sourceID(sourceID)
  /external/webkit/WebCore/bindings/js/
ScriptCallStack.cpp 51 intptr_t sourceID;
55 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, urlString, function);
  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Common.h 53 uint32_t sourceID; /* pthread_t = unsigned long int */
  /external/webkit/WebKit/chromium/src/js/
InspectorControllerImpl.js 105 devtools.InspectorBackendImpl.prototype.addBreakpoint = function(sourceID, line, condition)
107 devtools.tools.getDebuggerAgent().addBreakpoint(sourceID, line, condition);
111 devtools.InspectorBackendImpl.prototype.removeBreakpoint = function(sourceID, line)
113 devtools.tools.getDebuggerAgent().removeBreakpoint(sourceID, line);
116 devtools.InspectorBackendImpl.prototype.updateBreakpoint = function(sourceID, line, condition)
118 devtools.tools.getDebuggerAgent().updateBreakpoint(sourceID, line, condition);

Completed in 294 milliseconds

1 2 3