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

  /external/v8/tools/
csvparser.js 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_;
logreader.js 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) {
141 * Processes a portion of V8 profiler event log.
145 devtools.profiler.LogReader.prototype.processLogChunk = function(chunk)
    [all...]
codemap.js 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.
86 devtools.profiler.CodeMap.prototype.addCode = function(start, codeEntry) {
98 devtools.profiler.CodeMap.prototype.moveCode = function(from, to)
    [all...]
profile.js 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();
47 * Version of profiler log.
49 devtools.profiler.Profile.VERSION = 2;
58 devtools.profiler.Profile.prototype.skipThisFunction = function(name) {
64 * Enum for profiler operations that involve looking up existin
    [all...]
profile_view.js 31 devtools.profiler = devtools.profiler || {};
37 * @param {number} samplingRate Number of ms between profiler ticks.
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) {
87 return new devtools.profiler.ProfileView(head)
    [all...]
  /external/webkit/JavaScriptCore/API/
JSProfilerPrivate.cpp 31 #include "Profiler.h"
37 Profiler::profiler()->startProfiling(toJS(ctx), title->ustring());
43 Profiler* profiler = Profiler::profiler(); local
44 profiler->stopProfiling(exec, title->ustring());
  /external/webkit/WebKit/chromium/src/js/
ProfilerProcessor.js 32 * @fileoverview Profiler processor is used to process log file produced
39 * Creates a Profile View builder object compatible with WebKit Profiler UI.
41 * @param {number} samplingRate Number of ms between profiler ticks.
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);
61 * Constructs a Profile View node object for displaying in WebKit Profiler UI
    [all...]
  /libcore/dalvik/src/test/java/dalvik/system/
SamplingProfilerTest.java 30 SamplingProfiler profiler = new SamplingProfiler(12, threadSet); local
31 profiler.start(10);
33 profiler.stop();
34 profiler.shutdown();
35 profiler.writeHprofData(System.out);
  /external/clearsilver/python/examples/trans/
db_trans.py 4 import profiler namespace
62 self._cursor = profiler.ProfilerCursor(self.db.cursor())
77 if debug: p = profiler.Profiler("SQL", "Connect -- %s:trans" % (host))
  /external/webkit/JavaScriptCore/profiler/
Profiler.cpp 30 #include "Profiler.h"
51 Profiler* Profiler::s_sharedProfiler = 0;
52 Profiler* Profiler::s_sharedEnabledProfilerReference = 0;
54 Profiler* Profiler::profiler() function in class:JSC::Profiler
57 s_sharedProfiler = new Profiler();
61 void Profiler::startProfiling(ExecState* exec, const UString& title
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSGlobalObject.cpp 62 #include "Profiler.h"
102 Profiler** profiler = Profiler::enabledProfilerReference(); local
103 if (UNLIKELY(*profiler != 0)) {
104 (*profiler)->stopProfiling(globalExec(), UString());
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 56 #include "Profiler.h"
461 if (Profiler* profiler = *Profiler::enabledProfilerReference()) {
463 profiler->didExecute(callFrame, callFrame->callee());
465 profiler->didExecute(callFrame, codeBlock->ownerExecutable()->sourceURL(), codeBlock->ownerExecutable()->lineNo());
541 // the profiler manually that the call instruction has returned, since
543 if (Profiler* profiler = *Profiler::enabledProfilerReference())
610 Profiler** profiler = Profiler::enabledProfilerReference(); local
676 Profiler** profiler = Profiler::enabledProfilerReference(); local
744 Profiler** profiler = Profiler::enabledProfilerReference(); local
838 Profiler** profiler = Profiler::enabledProfilerReference(); local
    [all...]

Completed in 227 milliseconds