/external/webkit/Source/WebCore/bindings/js/ |
D | ScriptDebugServer.cpp | 68 String ScriptDebugServer::setBreakpoint(const String& sourceID, const ScriptBreakpoint& scriptBreak… in setBreakpoint() argument 70 intptr_t sourceIDValue = sourceID.toIntPtr(); in setBreakpoint() 82 return makeString(sourceID, ":", String::number(scriptBreakpoint.lineNumber)); in setBreakpoint() 103 bool ScriptDebugServer::hasBreakpoint(intptr_t sourceID, const TextPosition0& position) const in hasBreakpoint() argument 108 SourceIdToBreakpointsMap::const_iterator it = m_sourceIdToBreakpoints.find(sourceID); in hasBreakpoint() 219 String sourceID = ustringToString(JSC::UString::number(sourceProvider->asID())); in dispatchDidParseSource() local 228 copy[i]->didParseSource(sourceID, url, data, lineOffset, columnOffset, isContentScript); in dispatchDidParseSource() 305 …rameAndPauseIfNeeded(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) in createCallFrameAndPauseIfNeeded() argument 308 …Frame = JavaScriptCallFrame::create(debuggerCallFrame, m_currentCallFrame, sourceID, textPosition); in createCallFrameAndPauseIfNeeded() 312 …rameAndPauseIfNeeded(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber) in updateCallFrameAndPauseIfNeeded() argument [all …]
|
D | ScriptDebugServer.h | 59 …String setBreakpoint(const String& sourceID, const ScriptBreakpoint&, int* actualLineNumber, int* … 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 lineNum… 109 …void updateCallFrameAndPauseIfNeeded(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineNum… 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 hasH… 119 virtual void willExecuteProgram(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno); [all …]
|
D | JavaScriptCallFrame.h | 42 …me& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPositi… in create() argument 44 return adoptRef(new JavaScriptCallFrame(debuggerCallFrame, caller, sourceID, textPosition)); in create() 57 intptr_t sourceID() const { return m_sourceID; } in sourceID() function 62 …void update(const JSC::DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, const TextPosition… in update() argument 66 m_sourceID = sourceID; in update() 79 …C::DebuggerCallFrame&, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPositi…
|
D | JavaScriptCallFrame.cpp | 45 …me& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPositi… in JavaScriptCallFrame() argument 48 , m_sourceID(sourceID) in JavaScriptCallFrame()
|
D | ScriptCallStackFactory.cpp | 63 intptr_t sourceID; in createScriptCallStack() local 67 …exec->interpreter()->retrieveLastCaller(callFrame, signedLineNumber, sourceID, urlString, function… in createScriptCallStack()
|
D | JSXMLHttpRequestCustom.cpp | 132 intptr_t sourceID; in send() local 135 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, sourceURL, function); in send()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | DebuggerModel.js | 127 scriptForSourceID: function(sourceID) argument 129 return this._scripts[sourceID]; 140 for (var sourceID in this._scripts) { 141 var script = this._scripts[sourceID]; 148 editScriptSource: function(sourceID, newSource, callback) argument 150 …this._scripts[sourceID].editSource(newSource, this._didEditScriptSource.bind(this, sourceID, newSo… 153 _didEditScriptSource: function(sourceID, newSource, callback, error, callFrames) argument 182 …_parsedScriptSource: function(sourceID, sourceURL, lineOffset, columnOffset, length, isContentScri… argument 184 …var script = new WebInspector.Script(sourceID, sourceURL, lineOffset, columnOffset, length, undefi… 185 this._scripts[sourceID] = script; [all …]
|
D | Script.js | 26 WebInspector.Script = function(sourceID, sourceURL, lineOffset, columnOffset, length, errorLine, er… argument 28 this.sourceID = sourceID; 51 DebuggerAgent.getScriptSource(this.sourceID, didGetScriptSource.bind(this)); 62 DebuggerAgent.editScriptSource(this.sourceID, newSource, didEditScriptSource.bind(this));
|
D | DebuggerPresentationModel.js | 99 var sourceFileId = this._createSourceFileId(script.sourceURL, script.sourceID); 168 …WebInspector.debuggerModel.editScriptSource(script.sourceID, newSource, didEditScriptSource.bind(t… 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) argument 555 return this._sourceFiles[this._createSourceFileId(sourceURL, sourceID)]; 562 return this._createSourceFileId(script.sourceURL, script.sourceID) === sourceFileId; 567 _createSourceFileId: function(sourceURL, sourceID) argument [all …]
|
D | 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 }); property 292 … return { sourceID: closestScript.sourceID, lineNumber: lineNumber, columnNumber: columnNumber };
|
/external/webkit/Source/JavaScriptCore/debugger/ |
D | Debugger.h | 45 …virtual void exception(const DebuggerCallFrame&, intptr_t sourceID, int lineNumber, bool hasHandle… 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/ |
D | 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 hasH… 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);
|
D | WebScriptDebugger.mm | 144 void WebScriptDebugger::callEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, in… 158 …ew:didEnterCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webF… 163 void WebScriptDebugger::atStatement(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, … 177 …willExecuteStatement:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webF… 182 void WebScriptDebugger::returnEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, … 196 …w:willLeaveCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webF… 204 void WebScriptDebugger::exception(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, in… 218 …sHandler:sourceId:line:forWebFrame:), m_topCallFrame.get(), hasHandler, sourceID, lineNumber, webF… 220 …w:exceptionWasRaised:sourceId:line:forWebFrame:), m_topCallFrame.get(), sourceID, lineNumber, webF… 226 …gger::willExecuteProgram(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineno) [all …]
|
/external/webkit/Source/WebKit/haiku/WebCoreSupport/ |
D | ChromeClientHaiku.cpp | 193 const String& sourceID) in addMessageToConsole() argument 195 printf("MESSAGE %s:%i %s\n", BString(sourceID).String(), lineNumber, BString(message).String()); in addMessageToConsole() 199 unsigned int lineNumber, const String& sourceID) in addMessageToConsole() argument 201 printf("MESSAGE %s:%i %s\n", BString(sourceID).String(), lineNumber, BString(message).String()); in addMessageToConsole() 205 unsigned int lineNumber, const String& sourceID) in addMessageToConsole() argument 207 printf("MESSAGE %s:%i %s\n", BString(sourceID).String(), lineNumber, BString(message).String()); in addMessageToConsole()
|
D | ChromeClientHaiku.h | 86 const String& sourceID); 88 unsigned int lineNumber, const String& sourceID);
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | CallFrame.cpp | 38 intptr_t sourceID; in dumpCaller() local 42 interpreter()->retrieveLastCaller(this, signedLineNumber, sourceID, urlString, function); in dumpCaller()
|
/external/webkit/Source/WebCore/inspector/ |
D | InspectorDebuggerAgent.cpp | 280 void InspectorDebuggerAgent::editScriptSource(ErrorString* error, const String& sourceID, const Str… in editScriptSource() argument 282 if (scriptDebugServer().editScriptSource(sourceID, newContent, error)) in editScriptSource() 286 void InspectorDebuggerAgent::getScriptSource(ErrorString*, const String& sourceID, String* scriptSo… in getScriptSource() argument 288 *scriptSource = m_scripts.get(sourceID).data; in getScriptSource() 375 void InspectorDebuggerAgent::didParseSource(const String& sourceID, const String& url, const String… in didParseSource() argument 378 … m_frontend->scriptParsed(sourceID, url, lineOffset, columnOffset, data.length(), isContentScript); in didParseSource() 380 m_scripts.set(sourceID, Script(url, data, lineOffset, columnOffset)); in didParseSource() 396 RefPtr<InspectorObject> location = resolveBreakpoint(it->first, sourceID, breakpoint); in didParseSource()
|
D | InspectorDebuggerAgent.h | 88 …void editScriptSource(ErrorString*, const String& sourceID, const String& newContent, RefPtr<Inspe… 89 void getScriptSource(ErrorString*, const String& sourceID, String* scriptSource); 122 …virtual void didParseSource(const String& sourceID, const String& url, const String& data, int lin…
|
D | InspectorConsoleInstrumentation.h | 49 …eType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceID) in addMessageToConsole() argument 53 addMessageToConsoleImpl(inspectorAgent, source, type, level, message, lineNumber, sourceID); in addMessageToConsole()
|
D | ScriptDebugListener.h | 44 …virtual void didParseSource(const String& sourceID, const String& url, const String& data, int li…
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | ScriptDebugServer.h | 53 …String setBreakpoint(const String& sourceID, const ScriptBreakpoint&, int* actualLineNumber, int* … 75 bool editScriptSource(const String& sourceID, const String& newContent, String* error);
|
D | DebuggerScript.js | 101 …var breakId = Debug.setScriptBreakPointById(args.sourceID, args.lineNumber, args.columnNumber, arg… 207 var sourceID = script && script.id(); 256 "sourceID": sourceID,
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | Error.cpp | 121 intptr_t sourceID = source.provider()->asID(); in addErrorInfo() local 126 if (sourceID != -1) in addErrorInfo() 127 …balData, Identifier(globalData, sourceIdPropertyName), jsNumber((double)sourceID), ReadOnly | Dont… in addErrorInfo()
|
/external/webkit/Source/JavaScriptCore/profiler/ |
D | ProfileGenerator.cpp | 61 intptr_t sourceID; in addParentForConsoleStart() local 65 exec->interpreter()->retrieveLastCaller(exec, lineNumber, sourceID, sourceURL, function); in addParentForConsoleStart()
|
/external/libnfc-nxp/Linux_x86/ |
D | phOsalNfc_Common.h | 53 uint32_t sourceID; /* pthread_t = unsigned long int */ member
|