| /external/chromium_org/third_party/WebKit/Source/core/inspector/ |
| ScriptCallFrame.h | 43 ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column = 0); 47 const String& scriptId() const { return m_scriptId; }
|
| InjectedScriptHost.cpp | 118 void InjectedScriptHost::debugFunction(const String& scriptId, int lineNumber, int columnNumber) 121 debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommandBreakpointSource); 124 void InjectedScriptHost::undebugFunction(const String& scriptId, int lineNumber, int columnNumber) 127 debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommandBreakpointSource); 130 void InjectedScriptHost::monitorFunction(const String& scriptId, int lineNumber, int columnNumber, const String& functionName) 140 debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::MonitorCommandBreakpointSource, builder.toString()); 143 void InjectedScriptHost::unmonitorFunction(const String& scriptId, int lineNumber, int columnNumber) 146 debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::MonitorCommandBreakpointSource);
|
| ScriptCallFrame.cpp | 45 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column) 47 , m_scriptId(scriptId)
|
| InjectedScriptHost.h | 91 void debugFunction(const String& scriptId, int lineNumber, int columnNumber); 92 void undebugFunction(const String& scriptId, int lineNumber, int columnNumber); 93 void monitorFunction(const String& scriptId, int lineNumber, int columnNumber, const String& functionName); 94 void unmonitorFunction(const String& scriptId, int lineNumber, int columnNumber);
|
| ConsoleMessage.cpp | 50 int ConsoleMessage::scriptId() const 55 void ConsoleMessage::setScriptId(int scriptId) 57 m_scriptId = scriptId;
|
| ScriptDebugListener.h | 79 virtual void didParseSource(const String& scriptId, const Script&, CompileResult) = 0;
|
| InspectorDebuggerAgent.cpp | 62 using blink::TypeBuilder::Debugger::ScriptId; 114 static String generateBreakpointId(const String& scriptId, int lineNumber, int columnNumber, InspectorDebuggerAgent::BreakpointSource source) 116 return scriptId + ':' + String::number(lineNumber) + ':' + String::number(columnNumber) + breakpointIdSuffix(source); 380 static bool parseLocation(ErrorString* errorString, PassRefPtr<JSONObject> location, String* scriptId, int* lineNumber, int* columnNumber) 382 if (!location->getString("scriptId", scriptId) || !location->getNumber("lineNumber", lineNumber)) { 384 *errorString = "scriptId and lineNumber are required."; 394 String scriptId; 398 if (!parseLocation(errorString, location, &scriptId, &lineNumber, &columnNumber)) 403 String breakpointId = generateBreakpointId(scriptId, lineNumber, columnNumber, UserBreakpointSource) [all...] |
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
| Script.js | 31 * @param {string} scriptId 41 WebInspector.Script = function(target, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL) 44 this.scriptId = scriptId; 119 if (this.scriptId) { 121 this.target().debuggerAgent().getScriptSource(this.scriptId, didGetScriptSource.bind(this)); 150 if (this.scriptId) { 152 this.target().debuggerAgent().searchInContent(this.scriptId, query, caseSensitive, isRegex, innerCallback); 198 if (this.scriptId) 199 this.target().debuggerAgent().setScriptSource(this.scriptId, newSource, undefined, didEditScriptSource.bind(this)) [all...] |
| DebuggerModel.js | 358 * @param {!DebuggerAgent.ScriptId} scriptId 361 scriptForId: function(scriptId) 363 return this._scripts[scriptId] || null; 377 * @param {!DebuggerAgent.ScriptId} scriptId 381 setScriptSource: function(scriptId, newSource, callback) 383 this._scripts[scriptId].editSource(newSource, this._didEditScriptSource.bind(this, scriptId, newSource, callback)); 387 * @param {!DebuggerAgent.ScriptId} scriptI [all...] |
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/ |
| DefaultScriptMapping.js | 58 var uiSourceCode = this._uiSourceCodeForScriptId[script.scriptId]; 74 var scriptId = this._scriptIdForUISourceCode.get(uiSourceCode); 75 var script = this._debuggerModel.scriptForId(scriptId); 92 this._uiSourceCodeForScriptId[script.scriptId] = uiSourceCode; 93 this._scriptIdForUISourceCode.set(uiSourceCode, script.scriptId); 96 script.addEventListener(WebInspector.Script.Events.ScriptEdited, this._scriptEdited.bind(this, script.scriptId)); 118 * @param {string} scriptId 121 _scriptEdited: function(scriptId, event) 124 this._uiSourceCodeForScriptId[scriptId].addRevision(content); 180 name = "VM" + script.scriptId + (name ? " " + name : "") [all...] |
| LiveEditSupport.js | 66 if (this._uiSourceCodeForScriptId[script.scriptId]) 67 return this._uiSourceCodeForScriptId[script.scriptId]; 74 this._uiSourceCodeForScriptId[script.scriptId] = liveEditUISourceCode; 75 this._scriptIdForUISourceCode.set(liveEditUISourceCode, script.scriptId); 94 var scriptId = /** @type {string} */ (this._scriptIdForUISourceCode.get(uiSourceCode)); 95 this.target().debuggerModel.setScriptSource(scriptId, uiSourceCode.workingCopy(), innerCallback.bind(this)); 105 var script = this.target().debuggerModel.scriptForId(scriptId);
|
| Linkifier.js | 146 * @param {?string} scriptId 153 linkifyScriptLocation: function(target, scriptId, sourceURL, lineNumber, columnNumber, classes) 155 var rawLocation = target && !target.isDetached() ? target.debuggerModel.createRawLocationByScriptId(scriptId, sourceURL, lineNumber, columnNumber || 0) : null; 175 return this.linkifyScriptLocation(rawLocation.target(), rawLocation.scriptId, fallbackUrl, rawLocation.lineNumber, rawLocation.columnNumber, classes); 189 var anchor = this.linkifyScriptLocation(target, callFrame.scriptId, callFrame.url, lineNumber, columnNumber, classes); 191 var script = target && target.debuggerModel.scriptForId(callFrame.scriptId); 357 * @param {string} scriptId 362 WebInspector.Linkifier.liveLocationText = function(target, scriptId, lineNumber, columnNumber) 364 var script = target.debuggerModel.scriptForId(scriptId);
|
| ScriptSnippetModel.js | 248 * @param {!DebuggerAgent.ScriptId=} scriptId 252 function compileCallback(target, error, scriptId, exceptionDetails) 262 if (!scriptId) { 270 this._runScript(scriptId, executionContext, evaluationUrl); 275 * @param {!DebuggerAgent.ScriptId} scriptId 279 _runScript: function(scriptId, executionContext, sourceURL) 282 target.debuggerAgent().runScript(scriptId, executionContext.id, "console", false, runCallback.bind(this, target)); 428 delete this._uiSourceCodeForScriptId[script.scriptId]; [all...] |
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
| HeapSnapshotCommon.js | 57 * @param {number} scriptId 67 WebInspector.HeapSnapshotCommon.SerializedAllocationNode = function(nodeId, functionName, scriptName, scriptId, line, column, count, size, liveCount, liveSize, hasChildren) 76 this.scriptId = scriptId; 96 * @param {number} scriptId 101 WebInspector.HeapSnapshotCommon.AllocationStackFrame = function(functionName, scriptName, scriptId, line, column) 108 this.scriptId = scriptId;
|
| /external/chromium_org/third_party/WebKit/Source/core/workers/ |
| SharedWorkerGlobalScope.cpp | 81 void SharedWorkerGlobalScope::logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack) 83 WorkerGlobalScope::logExceptionToConsole(errorMessage, scriptId, sourceURL, lineNumber, columnNumber, callStack); 85 consoleMessage->setScriptId(scriptId);
|
| SharedWorkerGlobalScope.h | 66 virtual void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) OVERRIDE;
|
| /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
| ScriptEventListener.h | 51 bool eventListenerHandlerLocation(Document*, EventListener*, String& sourceName, String& scriptId, int& lineNumber, int& columnNumber);
|
| V8WorkerGlobalScopeEventListener.cpp | 85 int scriptId = 0; 88 GetDevToolsFunctionInfo(handlerFunction, isolate(), scriptId, resourceName, lineNumber); 89 cookie = InspectorInstrumentation::willCallFunction(scriptState()->executionContext(), scriptId, resourceName, lineNumber);
|
| PageScriptDebugServer.h | 67 virtual void compileScript(ScriptState*, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace) OVERRIDE; 69 virtual void runScript(ScriptState*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace) OVERRIDE;
|
| V8Initializer.cpp | 106 int scriptId = message->GetScriptOrigin().ScriptID()->Value(); 111 int topScriptId = callStack->at(0).scriptId().toInt(&success); 112 if (success && topScriptId == scriptId) 113 scriptId = 0; 152 enteredWindow->document()->reportException(event.release(), scriptId, callStack, corsStatus); 154 enteredWindow->document()->reportException(event.release(), scriptId, callStack, corsStatus); 246 int scriptId = message->GetScriptOrigin().ScriptID()->Value(); 255 context->reportException(event.release(), scriptId, nullptr, corsStatus) [all...] |
| PageScriptDebugServer.cpp | 171 void PageScriptDebugServer::compileScript(ScriptState* scriptState, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace) 175 ScriptDebugServer::compileScript(scriptState, expression, sourceURL, scriptId, exceptionDetailsText, lineNumber, columnNumber, stackTrace); 176 if (!scriptId->isNull()) 177 m_compiledScriptURLs.set(*scriptId, sourceURL); 186 void PageScriptDebugServer::runScript(ScriptState* scriptState, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace) 188 String sourceURL = m_compiledScriptURLs.take(scriptId); 200 ScriptDebugServer::runScript(scriptState, scriptId, result, wasThrown, exceptionDetailsText, lineNumber, columnNumber, stackTrace);
|
| /external/chromium_org/v8/test/mjsunit/ |
| debug-clearbreakpointgroup.js | 38 var scriptId = null; 72 scriptId = event_data.script().id(); 88 assertNotNull(scriptId); 93 var bp1 = Debug.setScriptBreakPointById(scriptId, 1, null, null, groupId1); 94 var bp2 = Debug.setScriptBreakPointById(scriptId, 1, null, null, groupId2); 95 var bp3 = Debug.setScriptBreakPointById(scriptId, 1, null, null, null); 96 var bp4 = Debug.setScriptBreakPointById(scriptId, 3, null, null, groupId1); 97 var bp5 = Debug.setScriptBreakPointById(scriptId, 4, null, null, groupId2);
|
| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| ExecutionContext.cpp | 48 PendingException(const String& errorMessage, int lineNumber, int columnNumber, int scriptId, const String& sourceURL, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack) 52 , m_scriptId(scriptId) 135 void ExecutionContext::reportException(PassRefPtrWillBeRawPtr<ErrorEvent> event, int scriptId, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, AccessControlStatus corsStatus) 141 m_pendingExceptions->append(adoptPtrWillBeNoop(new PendingException(errorEvent->messageForConsole(), errorEvent->lineno(), errorEvent->colno(), scriptId, errorEvent->filename(), callStack))); 147 logExceptionToConsole(errorEvent->messageForConsole(), scriptId, errorEvent->filename(), errorEvent->lineno(), errorEvent->colno(), callStack);
|
| ExecutionContext.h | 88 void reportException(PassRefPtrWillBeRawPtr<ErrorEvent>, int scriptId, PassRefPtrWillBeRawPtr<ScriptCallStack>, AccessControlStatus); 91 virtual void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) = 0;
|
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
| ScriptUtils.java | 84 public static boolean isLetterPartOfScript(final int codePoint, final int scriptId) { 85 switch (scriptId) { 180 throw new RuntimeException("Impossible value of script: " + scriptId);
|