Searched defs:total (Results 1 - 13 of 13) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DScrollBarView.java61 // The content position is between 0 to "total". The current position is
63 public void setContentPosition(int position, int total) { argument
64 if (position == mContentPosition && total == mContentTotal) {
71 mContentTotal = total;
H A DSlotView.java45 public void onScrollPositionChanged(int position, int total); argument
53 @Override public void onScrollPositionChanged(int position, int total) {} argument
/packages/apps/Exchange/src/com/android/exchange/provider/
H A DGalResult.java28 public int total; field in class:GalResult
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DLocalPhotoSource.java107 private int[] getExponentialIndice(int total, int count) { argument
109 if (count > total) count = total;
112 int row = (int)(-Math.log(random.nextDouble()) * total / 2);
113 if (row < total) selected.add(row);
/packages/apps/VoiceDialer/src/com/android/voicedialer/
H A DVoiceDialerTester.java225 int total = 0;
235 total++;
246 countString(count11, total),
247 countString(count1N, total),
248 countString(countMN, total),
249 countString(count0N, total),
250 countString(countFail, total),
251 countString(countErrors, total),
252 "" + total,
257 private static String countString(int count, int total) { argument
[all...]
/packages/apps/Gallery2/jni/filters/
H A Dgeometry.c25 int total = length * width; local
28 int temp = total - width;
29 for (i = 0; i < total; i += width) {
39 int total = length * width; local
43 for (i = 0; i < total; i+= width) {
77 int total = length * width; local
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
H A DMockUiProvider.java277 String name, int unread, int total) {
278 return createFolderDetailsMap(folderId, accountId, name, false, unread, total);
282 String name, boolean hasChildren, int unread, int total) {
294 folderMap.put(FolderColumns.TOTAL_COUNT, total);
276 createFolderDetailsMap(int folderId, int accountId, String name, int unread, int total) argument
281 createFolderDetailsMap(int folderId, int accountId, String name, boolean hasChildren, int unread, int total) argument
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DPhotoSource.java275 protected int pickRandomStart(int total, int max) { argument
276 if (max >= total) {
279 return (mRNG.nextInt() % (total - max)) - 1;
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
H A DStopwatchFragment.java66 Lap (long time, long total) { argument
68 mTotalTime = total;
181 * A lap is printed into two columns: the total time and the lap time. To make this print
183 * print. As the total or lap time exceed the limit of that format, this code updates
184 * the format used for the total and/or lap times.
574 // The total elapsed time
583 // Update the interval on the clock and check the lap and total time formatting
613 // If this lap has caused a change in the format for total and/or lap time, all of
/packages/apps/Settings/src/com/android/settings/
H A DUtils.java325 /** Formats the ratio of amount/total as a percentage. */
326 public static String formatPercentage(long amount, long total) { argument
327 return formatPercentage(((double) amount) / total);
H A DDataUsageSummary.java1605 public long total; field in class:DataUsageSummary.AppItem
1618 total = parcel.readLong();
1629 dest.writeLong(total);
1641 comparison = Long.compare(another.total, total);
1660 * Adapter of applications, sorted by total usage descending.
1742 item.total = -1;
1780 item.total += entry.rxBytes + entry.txBytes;
1781 if (mLargest < item.total) {
1782 mLargest = item.total;
[all...]
/packages/apps/FMRadio/jni/fmr/
H A Dfm.h289 unsigned long total; member in struct:rds_group_cnt
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 454 milliseconds