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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptCallFrame.h 42 ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column = 0);
46 const String& scriptId() const { return m_scriptId; }
InjectedScriptHost.cpp 114 void InjectedScriptHost::debugFunction(const String& scriptId, int lineNumber, int columnNumber)
117 debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommandBreakpointSource);
120 void InjectedScriptHost::undebugFunction(const String& scriptId, int lineNumber, int columnNumber)
123 debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommandBreakpointSource);
126 void InjectedScriptHost::monitorFunction(const String& scriptId, int lineNumber, int columnNumber, const String& functionName)
136 debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::MonitorCommandBreakpointSource, builder.toString());
139 void InjectedScriptHost::unmonitorFunction(const String& scriptId, int lineNumber, int columnNumber)
142 debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::MonitorCommandBreakpointSource);
ScriptCallFrame.cpp 36 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column)
38 , m_scriptId(scriptId)
InjectedScriptHost.h 89 void debugFunction(const String& scriptId, int lineNumber, int columnNumber);
90 void undebugFunction(const String& scriptId, int lineNumber, int columnNumber);
91 void monitorFunction(const String& scriptId, int lineNumber, int columnNumber, const String& functionName);
92 void unmonitorFunction(const String& scriptId, int lineNumber, int columnNumber);
ScriptDebugListener.h 74 virtual void didParseSource(const String& scriptId, const Script&) = 0;
InspectorDebuggerAgent.cpp 55 using WebCore::TypeBuilder::Debugger::ScriptId;
97 static String generateBreakpointId(const String& scriptId, int lineNumber, int columnNumber, InspectorDebuggerAgent::BreakpointSource source)
99 return scriptId + ':' + String::number(lineNumber) + ':' + String::number(columnNumber) + breakpointIdSuffix(source);
357 static bool parseLocation(ErrorString* errorString, PassRefPtr<JSONObject> location, String* scriptId, int* lineNumber, int* columnNumber)
359 if (!location->getString("scriptId", scriptId) || !location->getNumber("lineNumber", lineNumber)) {
361 *errorString = "scriptId and lineNumber are required.";
371 String scriptId;
375 if (!parseLocation(errorString, location, &scriptId, &lineNumber, &columnNumber))
380 String breakpointId = generateBreakpointId(scriptId, lineNumber, columnNumber, UserBreakpointSource)
    [all...]
InspectorDebuggerAgent.h 115 virtual void searchInContent(ErrorString*, const String& scriptId, const String& query, const bool* optionalCaseSensitive, const bool* optionalIsRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> >&) OVERRIDE FINAL;
116 virtual void setScriptSource(ErrorString*, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, const String& scriptId, const String& newContent, const bool* preview, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<TypeBuilder::Debugger::StackTrace>& asyncStackTrace) OVERRIDE FINAL;
118 virtual void getScriptSource(ErrorString*, const String& scriptId, String* scriptSource) OVERRIDE FINAL;
136 virtual void compileScript(ErrorString*, const String& expression, const String& sourceURL, const int* executionContextId, TypeBuilder::OptOutput<TypeBuilder::Debugger::ScriptId>*, RefPtr<TypeBuilder::Debugger::ExceptionDetails>&) OVERRIDE;
137 virtual void runScript(ErrorString*, const TypeBuilder::Debugger::ScriptId&, const int* executionContextId, const String* objectGroup, const bool* doNotPauseOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, RefPtr<TypeBuilder::Debugger::ExceptionDetails>&) OVERRIDE;
179 void setBreakpoint(const String& scriptId, int lineNumber, int columnNumber, BreakpointSource, const String& condition = String());
180 void removeBreakpoint(const String& scriptId, int lineNumber, int columnNumber, BreakpointSource);
209 virtual void didParseSource(const String& scriptId, const Script&) OVERRIDE FINAL;
214 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String& breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DefaultScriptMapping.js 56 var uiSourceCode = this._uiSourceCodeForScriptId[script.scriptId];
70 var scriptId = this._scriptIdForUISourceCode.get(uiSourceCode);
71 var script = this._debuggerModel.scriptForId(scriptId);
86 this._uiSourceCodeForScriptId[script.scriptId] = uiSourceCode;
87 this._scriptIdForUISourceCode.put(uiSourceCode, script.scriptId);
90 script.addEventListener(WebInspector.Script.Events.ScriptEdited, this._scriptEdited.bind(this, script.scriptId));
102 * @param {string} scriptId
105 _scriptEdited: function(scriptId, event)
108 this._uiSourceCodeForScriptId[scriptId].addRevision(content);
150 name = "VM" + script.scriptId + (name ? " " + name : "")
    [all...]
LiveEditSupport.js 59 if (this._uiSourceCodeForScriptId[script.scriptId])
60 return this._uiSourceCodeForScriptId[script.scriptId];
67 this._uiSourceCodeForScriptId[script.scriptId] = liveEditUISourceCode;
68 this._scriptIdForUISourceCode.put(liveEditUISourceCode, script.scriptId);
87 var scriptId = /** @type {string} */ (this._scriptIdForUISourceCode.get(uiSourceCode));
88 WebInspector.debuggerModel.setScriptSource(scriptId, uiSourceCode.workingCopy(), innerCallback);
97 var script = WebInspector.debuggerModel.scriptForId(scriptId);
Script.js 31 * @param {string} scriptId
41 WebInspector.Script = function(target, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
44 this.scriptId = scriptId;
122 if (this.scriptId) {
124 this.target().debuggerAgent().getScriptSource(this.scriptId, didGetScriptSource.bind(this));
153 if (this.scriptId) {
155 this.target().debuggerAgent().searchInContent(this.scriptId, query, caseSensitive, isRegex, innerCallback);
200 if (this.scriptId)
201 this.target().debuggerAgent().setScriptSource(this.scriptId, newSource, undefined, didEditScriptSource.bind(this))
    [all...]
DebuggerModel.js 380 * @param {!DebuggerAgent.ScriptId} scriptId
383 scriptForId: function(scriptId)
385 return this._scripts[scriptId] || null;
399 * @param {!DebuggerAgent.ScriptId} scriptId
403 setScriptSource: function(scriptId, newSource, callback)
405 this._scripts[scriptId].editSource(newSource, this._didEditScriptSource.bind(this, scriptId, newSource, callback));
409 * @param {!DebuggerAgent.ScriptId} scriptI
    [all...]
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...]
PresentationConsoleMessageHelper.js 139 if (script.scriptId === rawLocation.scriptId)
CompilerScriptMapping.js 66 var sourceMap = this._sourceMapForScriptId[debuggerModelLocation.scriptId];
118 this._sourceMapForScriptId[script.scriptId] = sourceMap;
123 this._sourceMapForScriptId[script.scriptId] = sourceMap;
  /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/bindings/v8/
ScriptEventListener.h 51 bool eventListenerHandlerLocation(Document*, EventListener*, String& sourceName, String& scriptId, int& lineNumber);
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;
PageScriptDebugServer.cpp 172 void PageScriptDebugServer::compileScript(ScriptState* scriptState, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace)
176 ScriptDebugServer::compileScript(scriptState, expression, sourceURL, scriptId, exceptionDetailsText, lineNumber, columnNumber, stackTrace);
177 if (!scriptId->isNull())
178 m_compiledScriptURLs.set(*scriptId, sourceURL);
187 void PageScriptDebugServer::runScript(ScriptState* scriptState, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace)
189 String sourceURL = m_compiledScriptURLs.take(scriptId);
201 ScriptDebugServer::runScript(scriptState, scriptId, result, wasThrown, exceptionDetailsText, lineNumber, columnNumber, stackTrace);
ScriptCallStackFactory.cpp 53 String scriptId = stringBuilder.toString();
66 return ScriptCallFrame(functionName, scriptId, sourceName, sourceLineNumber, sourceColumn);
ScriptDebugServer.h 103 virtual void compileScript(ScriptState*, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace);
105 virtual void runScript(ScriptState*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace);
  /external/chromium_org/v8/test/mjsunit/
debug-clearbreakpointgroup.js 37 var scriptId = null;
71 scriptId = event_data.script().id();
87 assertNotNull(scriptId);
92 var bp1 = Debug.setScriptBreakPointById(scriptId, 1, null, null, groupId1);
93 var bp2 = Debug.setScriptBreakPointById(scriptId, 1, null, null, groupId2);
94 var bp3 = Debug.setScriptBreakPointById(scriptId, 1, null, null, null);
95 var bp4 = Debug.setScriptBreakPointById(scriptId, 3, null, null, groupId1);
96 var bp5 = Debug.setScriptBreakPointById(scriptId, 4, null, null, groupId2);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 211 location->Set(v8AtomicString(isolate, "scriptId"), v8::Integer::New(isolate, function->ScriptId())->ToString());
354 static bool getFunctionLocation(const v8::FunctionCallbackInfo<v8::Value>& info, String* scriptId, int* lineNumber, int* columnNumber)
366 *scriptId = String::number(function->ScriptId());
372 String scriptId;
375 if (!getFunctionLocation(info, &scriptId, &lineNumber, &columnNumber))
379 host->debugFunction(scriptId, lineNumber, columnNumber);
384 String scriptId;
387 if (!getFunctionLocation(info, &scriptId, &lineNumber, &columnNumber)
    [all...]
  /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);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/heap_snapshot_worker/
AllocationProfile.js 186 functionInfo.scriptId,
254 functionInfo.scriptId,
351 * @param {number} scriptId
355 WebInspector.FunctionAllocationInfo = function(functionName, scriptName, scriptId, line, column)
359 this.scriptId = scriptId;

Completed in 395 milliseconds

1 2 3