Lines Matching refs:total
1605 public long total; field in DataUsageSummary.AppItem
1618 total = parcel.readLong(); in AppItem()
1629 dest.writeLong(total); in writeToParcel()
1641 comparison = Long.compare(another.total, total); in compareTo()
1742 item.total = -1; in bindStats()
1780 item.total += entry.rxBytes + entry.txBytes; in accumulate()
1781 if (mLargest < item.total) { in accumulate()
1782 mLargest = item.total; in accumulate()
1866 if (item.restricted && item.total <= 0) { in getView()
1870 text1.setText(Formatter.formatFileSize(context, item.total)); in getView()
1874 final int percentTotal = mLargest != 0 ? (int) (item.total * 100 / mLargest) : 0; in getView()