Searched defs:times (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
H A DPoint.java64 public Point times(float s) { method in class:Point
81 return this.times(length / this.length());
/frameworks/native/opengl/tests/fillrate/
H A Dfillrate.cpp127 nsecs_t times[32]; local
148 times[j++] = t;
152 nsecs_t t = times[j];
/frameworks/base/core/java/android/gesture/
H A DGestureStroke.java52 final long[] times = new long[count];
62 times[index] = p.timestamp;
79 timestamps = times;
88 private GestureStroke(RectF bbx, float len, float[] pts, long[] times) { argument
92 timestamps = times.clone();
203 final long[] times = timestamps;
215 out.writeLong(times[i / 2]);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DFsUtils.java205 public static void writeDrawTime(String fileName, String url, long[] times) { argument
209 for (long time : times) {
215 Log.v(LOGTAG, "logging draw times: " + line);
221 Log.e(LOGTAG, "Failed to log draw times", ioe);
/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp239 struct timeval times[2]; local
240 times[0].tv_sec = st.st_atime;
241 times[1].tv_sec = modTime;
242 times[0].tv_usec = times[1].tv_usec = 0;
243 if (utimes(localTmpFileName, times) < 0) {
/frameworks/base/services/java/com/android/server/am/
H A DUsageStatsService.java127 int[] times = new int[NUM_LAUNCH_TIME_BINS]; field in class:UsageStatsService.TimeStats
140 times[i]++;
144 times[NUM_LAUNCH_TIME_BINS-1]++;
149 final int[] localTimes = times;
157 final int[] localTimes = times;
188 TimeStats times = new TimeStats(in);
189 mLaunchTimes.put(comp, times);
206 TimeStats times = mLaunchTimes.get(comp);
207 if (times == null) {
208 times
[all...]
/frameworks/base/core/java/android/content/
H A DSyncManager.java854 // If this sync aborted because the internal sync loop retried too many times then
870 Log.d(TAG, "not retrying sync operation because it retried too many times: "
1323 authoritySyncStats.times++;
1331 accountSyncStats.times++;
1338 + "%d (# of times) %ds (sync time)\n",
1347 int compare = Integer.compare(rhs.times, lhs.times);
1370 int times;
1375 times = authoritySyncStats.times;
1552 int times; field in class:SyncManager.AuthoritySyncStats
1563 int times; field in class:SyncManager.AccountSyncStats
[all...]

Completed in 203 milliseconds