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

/external/webkit/JavaScriptCore/interpreter/
H A DCallFrame.cpp43 intptr_t sourceID; local
47 interpreter()->retrieveLastCaller(this, signedLineNumber, sourceID, urlString, function);
H A DInterpreter.cpp456 debugger->returnEvent(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine());
458 debugger->didExecuteProgram(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine());
521 exception->putWithAttributes(callFrame, Identifier(callFrame, "sourceId"), jsNumber(callFrame, codeBlock->ownerExecutable()->sourceID()), ReadOnly | DontDelete);
537 debugger->exception(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->lineNumberForBytecodeOffset(callFrame, bytecodeOffset), hasHandler);
870 debugger->callEvent(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), firstLine);
873 debugger->returnEvent(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine);
876 debugger->atStatement(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), firstLine);
879 debugger->willExecuteProgram(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), firstLine);
882 debugger->didExecuteProgram(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine);
885 debugger->didReachBreakpoint(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLin
3947 retrieveLastCaller(CallFrame* callFrame, int& lineNumber, intptr_t& sourceID, UString& sourceURL, JSValue& function) const argument
[all...]
/external/webkit/WebCore/inspector/
H A DJavaScriptCallFrame.cpp44 JavaScriptCallFrame::JavaScriptCallFrame(const DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, int line) argument
47 , m_sourceID(sourceID)
H A DJavaScriptCallFrame.h42 static PassRefPtr<JavaScriptCallFrame> create(const JSC::DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, int line) argument
44 return adoptRef(new JavaScriptCallFrame(debuggerCallFrame, caller, sourceID, line));
57 intptr_t sourceID() const { return m_sourceID; } function in class:WebCore::JavaScriptCallFrame
59 void update(const JSC::DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int line) argument
63 m_sourceID = sourceID;
76 JavaScriptCallFrame(const JSC::DebuggerCallFrame&, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, int line);
H A DJavaScriptDebugServer.cpp168 void JavaScriptDebugServer::addBreakpoint(intptr_t sourceID, unsigned lineNumber, const UString& condition) argument
170 LineToBreakpointInfoMap* sourceBreakpoints = m_breakpoints.get(sourceID);
173 m_breakpoints.set(sourceID, sourceBreakpoints);
182 JavaScriptDebugServer::BreakpointInfo* JavaScriptDebugServer::breakpointInfo(intptr_t sourceID, unsigned lineNumber) const argument
184 LineToBreakpointInfoMap* sourceBreakpoints = m_breakpoints.get(sourceID);
190 void JavaScriptDebugServer::updateBreakpoint(intptr_t sourceID, unsigned lineNumber, const UString& condition) argument
192 BreakpointInfo* info = breakpointInfo(sourceID, lineNumber);
203 void JavaScriptDebugServer::removeBreakpoint(intptr_t sourceID, unsigned lineNumber) argument
205 LineToBreakpointInfoMap* sourceBreakpoints = m_breakpoints.get(sourceID);
217 m_breakpoints.remove(sourceID);
222 hasBreakpoint(intptr_t sourceID, unsigned lineNumber) const argument
503 callEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
512 atStatement(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
525 returnEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
543 exception(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber, bool hasHandler) argument
559 willExecuteProgram(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
568 didExecuteProgram(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
586 didReachBreakpoint(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) argument
[all...]
H A DInspectorBackend.cpp171 void InspectorBackend::addBreakpoint(const String& sourceID, unsigned lineNumber, const String& condition) argument
173 intptr_t sourceIDValue = sourceID.toIntPtr();
177 void InspectorBackend::updateBreakpoint(const String& sourceID, unsigned lineNumber, const String& condition) argument
179 intptr_t sourceIDValue = sourceID.toIntPtr();
183 void InspectorBackend::removeBreakpoint(const String& sourceID, unsigned lineNumber) argument
185 intptr_t sourceIDValue = sourceID.toIntPtr();
H A DInspectorController.cpp339 void InspectorController::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceID) argument
344 addConsoleMessage(0, new ConsoleMessage(source, type, level, message, lineNumber, sourceID, m_groupLevel));
1761 void InspectorController::count(const String& title, unsigned lineNumber, const String& sourceID) argument
1763 String identifier = title + String::format("@%s:%d", sourceID.utf8().data(), lineNumber);
1776 addMessageToConsole(JSMessageSource, LogMessageType, LogMessageLevel, message, lineNumber, sourceID);
/external/webkit/JavaScriptCore/runtime/
H A DError.cpp41 JSObject* Error::create(ExecState* exec, ErrorType type, const UString& message, int lineNumber, intptr_t sourceID, const UString& sourceURL) argument
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) argument
129 JSObject* error = Error::create(exec, type, message, line, sourceID, sourceURL);
H A DExecutable.h134 intptr_t sourceID() const { return m_source.provider()->asID(); } function in class:JSC::ScriptExecutable
/external/webkit/WebCore/bindings/js/
H A DScriptCallStack.cpp51 intptr_t sourceID; local
55 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, urlString, function);
H A DJSXMLHttpRequestCustom.cpp119 intptr_t sourceID; local
122 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, sourceURL, function);
H A DJSWorkerContextCustom.cpp114 intptr_t sourceID; local
117 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, sourceURL, function);
/external/webkit/WebCore/bindings/v8/
H A DV8ConsoleMessage.cpp46 V8ConsoleMessage::V8ConsoleMessage(const String& string, const String& sourceID, unsigned lineNumber) argument
48 , m_sourceID(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/JavaScriptCore/profiler/
H A DProfileGenerator.cpp61 intptr_t sourceID; local
65 exec->interpreter()->retrieveLastCaller(exec, lineNumber, sourceID, sourceURL, function);
/external/webkit/WebKit/haiku/WebCoreSupport/
H A DChromeClientHaiku.cpp183 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());
182 addMessageToConsole(const String& message, unsigned int lineNumber, const String& sourceID) argument
188 addMessageToConsole(MessageSource, MessageLevel, const String& message, unsigned int lineNumber, const String& sourceID) argument
194 addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, unsigned int lineNumber, const String& sourceID) argument
/external/webkit/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.cpp249 unsigned int lineNumber, const String& sourceID)
252 QString y = sourceID;
248 addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, unsigned int lineNumber, const String& sourceID) argument
/external/webkit/WebKit/wx/WebKitSupport/
H A DChromeClientWx.cpp230 const String& sourceID)
236 wkEvent.SetSourceID(sourceID);
225 addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned int lineNumber, const String& sourceID) argument
/external/webkit/WebKit/android/WebCoreSupport/
H A DChromeClientAndroid.cpp211 void ChromeClientAndroid::addMessageToConsole(MessageSource, MessageType, MessageLevel msgLevel, const String& message, unsigned int lineNumber, const String& sourceID) { argument
212 android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->addMessageToConsole(message, lineNumber, sourceID, msgLevel);
/external/webkit/WebKit/chromium/src/
H A DChromeClientImpl.cpp354 const String& sourceID)
359 sourceID,
349 addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceID) argument
/external/webkit/WebKit/qt/Api/
H A Dqwebpage.cpp1864 For example in case of evaluation errors the source URL may be provided in \a sourceID as well as the \a lineNumber.
1868 void QWebPage::javaScriptConsoleMessage(const QString& message, int lineNumber, const QString& sourceID) argument
1872 Q_UNUSED(sourceID)
/external/webkit/WebKit/qt/tests/qwebpage/
H A Dtst_qwebpage.cpp244 virtual void javaScriptConsoleMessage(const QString& message, int lineNumber, const QString& sourceID) argument
248 sourceIDs.append(sourceID);
/external/webkit/WebKit/wx/
H A DWebView.h399 void SetSourceID(const wxString& sourceID) { m_sourceID = sourceID; } argument
/external/webkit/JavaScriptCore/parser/
H A DNodes.h1399 intptr_t sourceID() const { return m_source.provider()->asID(); } function in class:JSC::ScopeNode
/external/webkit/WebKit/android/jni/
H A DWebViewCore.cpp2247 void WebViewCore::addMessageToConsole(const WebCore::String& message, unsigned int lineNumber, const WebCore::String& sourceID, int msgLevel) { argument
2250 jstring jSourceIDStr = env->NewString((unsigned short *)sourceID.characters(), sourceID.length());

Completed in 3159 milliseconds