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

  /external/emma/core/java12/com/vladium/emma/report/
Item.java 73 final int [] aggregates = m_aggregates; local
74 int value = aggregates [type];
86 aggregates [type] = value;
ClassItem.java 86 final int [] aggregates = m_aggregates; local
88 int value = aggregates [type];
97 aggregates [TOTAL_CLASS_COUNT] = 1;
98 aggregates [COVERAGE_CLASS_COUNT] = m_coverage != null ? 1 : 0;
100 return aggregates [type];
167 aggregates [TOTAL_LINE_COUNT] = cldata.size ();
190 aggregates [COVERAGE_LINE_COUNT] = coverageLineCount;
191 aggregates [COVERAGE_LINE_INSTR] = coverageLineInstr;
193 return aggregates [type];
MethodItem.java 58 final int [] aggregates = m_aggregates; local
60 int value = aggregates [type];
73 for (int i = 0; i < aggregates.length; ++ i) aggregates [i] = 0;
82 aggregates [TOTAL_METHOD_COUNT] = 1; // TODO: check that excluded methods are accounted for correctly
83 aggregates [TOTAL_BLOCK_COUNT] = totalBlockCount;
111 aggregates [TOTAL_LINE_COUNT] = totalLineCount;
139 aggregates [COVERAGE_LINE_COUNT] = coverageLineCount;
140 aggregates [COVERAGE_LINE_INSTR] = coverageLineInstr;
143 aggregates [TOTAL_BLOCK_INSTR] = totalBlockInstr
    [all...]
SrcFileItem.java 92 final int [] aggregates = m_aggregates; local
94 int value = aggregates [type];
103 aggregates [TOTAL_CLASS_COUNT] = getChildCount ();
114 aggregates [COVERAGE_CLASS_COUNT] = value;
116 return aggregates [type];
123 return aggregates [TOTAL_SRCFILE_COUNT] = 1;
197 aggregates [TOTAL_LINE_COUNT] = lineCount;
248 aggregates [COVERAGE_LINE_COUNT] = coverageLineCount;
249 aggregates [COVERAGE_LINE_INSTR] = coverageLineInstr;
251 return aggregates [type]
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshotProxy.js 46 aggregates: function(withNodeIndexes, callback)
50 callback(this._snapshot.aggregates(withNodeIndexes));
  /external/emma/lib/
emma.jar 

Completed in 76 milliseconds