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

12

/external/webkit/Source/JavaScriptCore/interpreter/
H A DCallFrame.cpp38 intptr_t sourceID; local
42 interpreter()->retrieveLastCaller(this, signedLineNumber, sourceID, urlString, function);
H A DInterpreter.cpp550 debugger->returnEvent(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine());
552 debugger->didExecuteProgram(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine());
675 debugger->exception(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->lineNumberForBytecodeOffset(bytecodeOffset), hasHandler);
1166 debugger->callEvent(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), firstLine);
1169 debugger->returnEvent(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine);
1172 debugger->atStatement(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), firstLine);
1175 debugger->willExecuteProgram(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), firstLine);
1178 debugger->didExecuteProgram(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine);
1181 debugger->didReachBreakpoint(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine);
4832 void Interpreter::retrieveLastCaller(CallFrame* callFrame, int& lineNumber, intptr_t& sourceID, UStrin argument
[all...]
/external/webkit/Source/WebCore/bindings/js/
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);
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 DJSXMLHttpRequestCustom.cpp132 intptr_t sourceID; local
135 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, sourceURL, function);
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...]
/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/JavaScriptCore/profiler/
H A DProfileGenerator.cpp61 intptr_t sourceID; local
65 exec->interpreter()->retrieveLastCaller(exec, lineNumber, sourceID, sourceURL, function);
/external/webkit/Source/WebCore/bindings/v8/
H A DJavaScriptCallFrame.cpp63 int JavaScriptCallFrame::sourceID() const function in class:WebCore::JavaScriptCallFrame
67 v8::Handle<v8::Value> result = m_callFrame.get()->Get(v8String("sourceID"));
H A DScriptDebugServer.cpp63 String ScriptDebugServer::setBreakpoint(const String& sourceID, const ScriptBreakpoint& scriptBreakpoint, int* actualLineNumber, int* actualColumnNumber) argument
70 args->Set(v8::String::New("sourceID"), v8String(sourceID));
214 bool ScriptDebugServer::editScriptSource(const String& sourceID, const String& newContent, String* error) argument
224 v8::Handle<v8::Value> argv[] = { v8String(sourceID), v8String(newContent) };
H A DV8Proxy.cpp133 static void addMessageToConsole(Page* page, const String& message, const String& sourceID, unsigned lineNumber) argument
137 console->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, message, lineNumber, sourceID);
/external/webkit/Source/WebCore/inspector/
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 DInspectorConsoleAgent.cpp134 void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceID) argument
138 addConsoleMessage(new ConsoleMessage(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 DInspectorInstrumentation.cpp635 void InspectorInstrumentation::addMessageToConsoleImpl(InspectorAgent* inspectorAgent, MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceID) argument
637 inspectorAgent->consoleAgent()->addMessageToConsole(source, type, level, message, lineNumber, sourceID);
/external/webkit/Source/JavaScriptCore/runtime/
H A DError.cpp121 intptr_t sourceID = source.provider()->asID(); local
126 if (sourceID != -1)
127 error->putWithAttributes(globalData, Identifier(globalData, sourceIdPropertyName), jsNumber((double)sourceID), ReadOnly | DontDelete);
H A DExecutable.h180 intptr_t sourceID() const { return m_source.provider()->asID(); } function in class:JSC::ScriptExecutable
/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
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DChromeClientWx.cpp239 const String& sourceID)
245 wkEvent.SetSourceID(sourceID);
234 addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned int lineNumber, const String& sourceID) argument
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DChromeClientAndroid.cpp237 void ChromeClientAndroid::addMessageToConsole(MessageSource, MessageType, MessageLevel msgLevel, const String& message, unsigned int lineNumber, const String& sourceID) { argument
238 android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->addMessageToConsole(message, lineNumber, sourceID, msgLevel);
/external/webkit/Source/WebKit/chromium/src/
H A DChromeClientImpl.cpp406 const String& sourceID)
411 sourceID,
401 addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceID) argument
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DChromeClientEfl.cpp271 unsigned int lineNumber, const String& sourceID)
273 ewk_view_add_console_message(m_view, message.utf8().data(), lineNumber, sourceID.utf8().data());
270 addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, unsigned int lineNumber, const String& sourceID) argument
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.cpp287 unsigned int lineNumber, const String& sourceID)
290 QString y = sourceID;
286 addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, unsigned int lineNumber, const String& sourceID) argument
/external/webkit/Source/WebKit/wx/
H A DWebView.h423 void SetSourceID(const wxString& sourceID) { m_sourceID = sourceID; } argument

Completed in 298 milliseconds

12