Searched refs:curEnd (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java316 final long curEnd = curStart + bucketDuration;
319 if (curEnd < start) break;
323 final long overlap = Math.min(curEnd, end) - Math.max(curStart, start);
445 final long curEnd = curStart + bucketDuration;
449 if (curEnd > cutoff) break;
493 final long curEnd = curStart + bucketDuration;
496 if (curEnd <= start) break;
501 final boolean activeBucket = curStart < now && curEnd > now;
506 final long overlapEnd = curEnd < end ? curEnd
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java1315 private void setInternalSelection(int curStart, int curEnd) { argument
1317 mCurEnd = curEnd;

Completed in 69 milliseconds