HomeSort by relevance Sort by last modified time
    Searched defs:devtools (Results 1 - 10 of 10) sorted by null

  /external/webkit/WebKit/chromium/src/js/
InspectorControllerImpl.js 32 * @fileoverview DevTools' implementation of the InspectorController API.
35 if (!this.devtools)
36 devtools = {};
38 devtools.InspectorBackendImpl = function()
70 devtools.InspectorBackendImpl.prototype.__proto__ = WebInspector.InspectorBackendStub.prototype;
76 devtools.InspectorBackendImpl.prototype.toggleNodeSearch = function()
90 devtools.InspectorBackendImpl.prototype.debuggerEnabled = function()
99 devtools.InspectorBackendImpl.prototype.profilerEnabled = function()
105 devtools.InspectorBackendImpl.prototype.addBreakpoint = function(sourceID, line, condition)
107 devtools.tools.getDebuggerAgent().addBreakpoint(sourceID, line, condition)
    [all...]
ProfilerAgent.js 38 devtools.ProfilerAgent = function()
47 this._activeProfilerModules = devtools.ProfilerAgent.ProfilerModules.PROFILER_MODULE_NONE;
75 * @type {devtools.profiler.Processor}
77 this._profilerProcessor = new devtools.profiler.Processor();
85 devtools.ProfilerAgent.ProfilerModules = {
97 devtools.ProfilerAgent.prototype.setupProfilerProcessorCallbacks = function()
134 devtools.ProfilerAgent.prototype.initializeProfiling = function()
147 devtools.ProfilerAgent.prototype._getNextLogLines = function(immediately)
163 devtools.ProfilerAgent.prototype.startProfiling = function(modules)
165 var cmd = new devtools.DebugCommand("profile",
    [all...]
DebuggerAgent.js 40 devtools.DebuggerAgent = function()
58 * Mapping from the request id to the devtools.BreakpointInfo for the
68 * @type {Array.<devtools.CallFrame>}
133 devtools.DebuggerAgent.ScopeType = {
145 devtools.DebuggerAgent.prototype.reset = function()
164 devtools.DebuggerAgent.prototype.initUI = function()
197 devtools.DebuggerAgent.prototype.resolveScriptSource = function(scriptId, callback)
205 var cmd = new devtools.DebugCommand("scripts", {
209 devtools.DebuggerAgent.sendCommand_(cmd);
229 devtools.DebuggerAgent.prototype.pauseExecution = function(
    [all...]
ProfilerProcessor.js 44 devtools.profiler.WebKitViewBuilder = function(samplingRate)
46 devtools.profiler.ViewBuilder.call(this, samplingRate);
48 devtools.profiler.WebKitViewBuilder.prototype.__proto__ = devtools.profiler.ViewBuilder.prototype;
54 devtools.profiler.WebKitViewBuilder.prototype.createViewNode = function(funcName, totalTime, selfTime, head)
56 return new devtools.profiler.WebKitViewNode(funcName, totalTime, selfTime, head);
69 * @param {devtools.profiler.ProfileView.Node} head Profile view head.
72 devtools.profiler.WebKitViewNode = function(internalFuncName, totalTime, selfTime, head)
74 devtools.profiler.ProfileView.Node.call(this, internalFuncName, totalTime, selfTime, head);
78 devtools.profiler.WebKitViewNode.prototype.__proto__ = devtools.profiler.ProfileView.Node.prototype
    [all...]
DevTools.js 34 * DevTools frontend together. It is also responsible for overriding existing
44 devtools$$dispatch = function(remoteName, methodName, param1, param2, param3)
61 devtools.ToolsAgent = function()
66 this.debuggerAgent_ = new devtools.DebuggerAgent();
67 this.profilerAgent_ = new devtools.ProfilerAgent();
74 devtools.ToolsAgent.prototype.reset = function()
86 devtools.ToolsAgent.prototype.evaluateJavaScript = function(script, opt_callback)
93 * @return {devtools.DebuggerAgent} Debugger agent instance.
95 devtools.ToolsAgent.prototype.getDebuggerAgent = function()
102 * @return {devtools.ProfilerAgent} Profiler agent instance
    [all...]
  /external/v8/tools/
csvparser.js 30 var devtools = devtools || {};
31 devtools.profiler = devtools.profiler || {};
37 devtools.profiler.CsvParser = function() {
45 devtools.profiler.CsvParser.CSV_FIELD_RE_ = /^"((?:[^"]|"")*)"|([^,]*)/;
52 devtools.profiler.CsvParser.DOUBLE_QUOTE_RE_ = /""/g;
60 devtools.profiler.CsvParser.prototype.parseLine = function(line) {
61 var fieldRe = devtools.profiler.CsvParser.CSV_FIELD_RE_;
62 var doubleQuoteRe = devtools.profiler.CsvParser.DOUBLE_QUOTE_RE_
    [all...]
logreader.js 33 var devtools = devtools || {};
34 devtools.profiler = devtools.profiler || {};
44 devtools.profiler.LogReader = function(dispatchTable) {
88 * @type {devtools.profiler.CsvParser}
90 this.csvParser_ = new devtools.profiler.CsvParser();
100 devtools.profiler.LogReader.prototype.createAddressParser = function(
125 devtools.profiler.LogReader.prototype.expandAlias = function(symbol) {
135 devtools.profiler.LogReader.prototype.printError = function(str)
    [all...]
codemap.js 30 var devtools = devtools || {};
31 devtools.profiler = devtools.profiler || {};
39 devtools.profiler.CodeMap = function() {
48 this.dynamicsNameGen_ = new devtools.profiler.CodeMap.NameGenerator();
70 devtools.profiler.CodeMap.PAGE_ALIGNMENT = 12;
76 devtools.profiler.CodeMap.PAGE_SIZE =
77 1 << devtools.profiler.CodeMap.PAGE_ALIGNMENT;
84 * @param {devtools.profiler.CodeMap.CodeEntry} codeEntry Code entry object
    [all...]
profile.js 30 var devtools = devtools || {};
31 devtools.profiler = devtools.profiler || {};
40 devtools.profiler.Profile = function() {
41 this.codeMap_ = new devtools.profiler.CodeMap();
42 this.topDownTree_ = new devtools.profiler.CallTree();
43 this.bottomUpTree_ = new devtools.profiler.CallTree();
49 devtools.profiler.Profile.VERSION = 2;
58 devtools.profiler.Profile.prototype.skipThisFunction = function(name)
    [all...]
profile_view.js 30 var devtools = devtools || {};
31 devtools.profiler = devtools.profiler || {};
40 devtools.profiler.ViewBuilder = function(samplingRate) {
48 * @param {devtools.profiler.CallTree} callTree A call tree.
52 devtools.profiler.ViewBuilder.prototype.buildView = function(
83 * @param {devtools.profiler.ProfileView.Node} head View head node.
84 * @return {devtools.profiler.ProfileView} Profile view.
86 devtools.profiler.ViewBuilder.prototype.createView = function(head)
    [all...]

Completed in 1600 milliseconds