HomeSort by relevance Sort by last modified time
    Searched refs:getAggregate (Results 1 - 17 of 17) sorted by null

  /external/emma/core/java12/com/vladium/emma/report/
IItem.java 39 int getAggregate (int type);
IItemAttribute.java 140 final int n = item.getAggregate (m_numeratorAggregateID);
142 final int d = item.getAggregate (m_denominatorAggregateID);
166 final int n = item.getAggregate (m_numeratorAggregateID);
167 final int d = item.getAggregate (m_denominatorAggregateID);
180 final double nil = il.getAggregate (m_numeratorAggregateID);
181 final double dil = il.getAggregate (m_denominatorAggregateID);
183 final double nig = ig.getAggregate (m_numeratorAggregateID);
184 final double dig = ig.getAggregate (m_denominatorAggregateID);
Item.java 71 public int getAggregate (final int type)
84 value += ((IItem) children.next ()).getAggregate (type);
SrcFileItem.java 70 getAggregate (TOTAL_LINE_COUNT); // fault line coverage calculation
83 getAggregate (TOTAL_LINE_COUNT); // fault line coverage calculation
90 public int getAggregate (final int type)
112 value += ((IItem) children.next ()).getAggregate (COVERAGE_CLASS_COUNT);
256 default: return super.getAggregate (type);
ClassItem.java 84 public int getAggregate (final int type)
198 default: return super.getAggregate (type);
MethodItem.java 56 public int getAggregate (final int type)
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 158 row ("total classes:" + m_separator + item.getAggregate (IItem.TOTAL_CLASS_COUNT));
159 row ("total methods:" + m_separator + item.getAggregate (IItem.TOTAL_METHOD_COUNT));
163 row ("total executable files:" + m_separator + item.getAggregate (IItem.TOTAL_SRCFILE_COUNT));
166 row ("total executable lines:" + m_separator + item.getAggregate (IItem.TOTAL_LINE_COUNT));
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 148 emitStatsCount ("classes", item.getAggregate (IItem.TOTAL_CLASS_COUNT));
149 emitStatsCount ("methods", item.getAggregate (IItem.TOTAL_METHOD_COUNT));
153 emitStatsCount ("srcfiles", item.getAggregate (IItem.TOTAL_SRCFILE_COUNT));
156 emitStatsCount ("srclines", item.getAggregate (IItem.TOTAL_LINE_COUNT));
  /external/clang/lib/CodeGen/
CGValue.h 91 static RValue getAggregate(llvm::Value *V, bool Volatile = false) {
326 return RValue::getAggregate(getAddress(), isVolatileQualified());
485 return RValue::getAggregate(getAddr(), isVolatile());
CGCleanup.cpp 80 return RValue::getAggregate(Value);
82 return RValue::getAggregate(CGF.Builder.CreateLoad(Value));
    [all...]
CGAtomic.cpp 723 return RValue::getAggregate(0, false);
    [all...]
CGCall.cpp     [all...]
CGExprAgg.cpp 712 RValue rvalue = RValue::getAggregate(valueAddr, atomicSlot.isVolatile());
    [all...]
CGExpr.cpp 778 return RValue::getAggregate(DestPtr);
    [all...]
CGObjCGNU.cpp     [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 224 row.newCell ().setText ("" + item.getAggregate (IItem.TOTAL_SRCFILE_COUNT), false);
229 row.newCell ().setText ("" + item.getAggregate (IItem.TOTAL_CLASS_COUNT), true);
232 row.newCell ().setText ("" + item.getAggregate (IItem.TOTAL_METHOD_COUNT), true);
238 row.newCell ().setText ("" + item.getAggregate (IItem.TOTAL_LINE_COUNT), true);
246 first.newCell ().setText ("total classes: " + item.getAggregate (IItem.TOTAL_CLASS_COUNT), true);
247 first.newCell ().setText ("total methods: " + item.getAggregate (IItem.TOTAL_METHOD_COUNT), true);
254 cell1.setText ("total source files: " + item.getAggregate (IItem.TOTAL_SRCFILE_COUNT), true);
260 cell2.setText ("total executable source lines: " + item.getAggregate (IItem.TOTAL_LINE_COUNT), true);
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 178 milliseconds