HomeSort by relevance Sort by last modified time
    Searched defs:times (Results 1 - 25 of 38) sorted by null

1 2

  /bionic/libc/arch-arm/syscalls/
times.S 5 .type times, #function
6 .globl times
10 times: label
  /bionic/libc/arch-x86/syscalls/
times.S 5 .type times, @function
6 .globl times
9 times: label
  /bionic/libc/arch-sh/syscalls/
times.S 5 .type times, @function
6 .globl times
9 times: label
  /external/stlport/test/unit/
times_test.cpp 17 CPPUNIT_TEST(times);
21 void times();
29 void TimesTest::times() function in class:TimesTest
  /external/webkit/SunSpider/resources/
sunspider-standalone-driver.js 29 var times = []; variable
30 times.length = tests.length;
39 times[j] = new Date() - startTime;
43 function recordResults(tests, times)
48 output += ' "' + tests[j] + '": ' + times[j] + ',\n';
56 recordResults(tests, times);
  /ndk/sources/android/stlport/test/unit/
times_test.cpp 17 CPPUNIT_TEST(times);
21 void times();
29 void TimesTest::times() function in class:TimesTest
  /external/easymock/src/org/easymock/
IExpectationSetters.java 111 * Expect the last invocation <code>count</code> times.
117 IExpectationSetters<T> times(int count); method in interface:IExpectationSetters
121 * <code>max</code> times.
129 IExpectationSetters<T> times(int min, int max); method in interface:IExpectationSetters
146 * Expect the last invocation any times.
MockControl.java 191 * number of times, and will react by returning silently.
193 * @param times
194 * the number of times that the call is expected.
200 public void setVoidCallable(int times) {
203 .times(times);
208 * number of times, and will react by throwing the provided Throwable.
212 * @param times
213 * the number of times that the call is expected.
223 public void setThrowable(Throwable throwable, int times) {
348 .times(minCount, maxCount); method
    [all...]
  /external/easymock/src/org/easymock/internal/
IMocksControlState.java 44 void times(Range range); method in interface:IMocksControlState
MocksControl.java 218 public IExpectationSetters<Object> times(int times) { method in class:MocksControl
220 state.times(new Range(times));
227 public IExpectationSetters<Object> times(int min, int max) { method in class:MocksControl
229 state.times(new Range(min, max));
238 state.times(ONCE);
247 state.times(AT_LEAST_ONCE);
256 state.times(ZERO_OR_MORE);
ReplayState.java 131 public void times(Range range) { method in class:ReplayState
RecordState.java 98 times(MocksControl.ONCE);
107 times(MocksControl.ONCE);
116 times(MocksControl.ONCE);
125 times(MocksControl.ONCE);
135 times(MocksControl.ONCE);
147 times(MocksControl.ONCE);
176 times(MocksControl.ONCE);
187 times(MocksControl.ONCE);
199 times(MocksControl.ONCE);
209 times(MocksControl.ONCE);
216 public void times(Range range) { method in class:RecordState
    [all...]
  /frameworks/base/opengl/tests/fillrate/
fillrate.cpp 127 nsecs_t times[32]; local
148 times[j++] = t;
152 nsecs_t t = times[j];
  /frameworks/base/tools/preload/
LoadedClass.java 90 int[] times = new int[size]; local
92 times[i] = operations.get(i).exclusiveTimeMicros();
95 Arrays.sort(times);
99 return times[middle];
102 return (times[middle - 1] + times[middle]) / 2;
  /external/apache-http/src/org/apache/http/impl/conn/
IdleConnectionHandler.java 93 TimeValues times = connectionToTimes.remove(connection); local
94 if(times == null) {
98 return System.currentTimeMillis() <= times.timeExpires;
129 TimeValues times = connectionToTimes.get(conn); local
130 Long connectionTime = times.timeAdded;
157 TimeValues times = connectionToTimes.get(conn); local
158 if(times.timeExpires <= now) {
160 log.debug("Closing connection, expired @: " + times.timeExpires);
  /external/chromium/third_party/icu/source/test/intltest/
tzfmttst.cpp 280 UDate times[NUM_PATTERNS]; local
282 times[i] = 0;
451 times[patidx] += (Calendar::getNow() - timer);
458 logln(UnicodeString("") + times[i] + "ms (" + PATTERNS[i] + ")");
459 total += times[i];
  /frameworks/base/core/java/android/gesture/
GestureStroke.java 52 final long[] times = new long[count]; local
62 times[index] = p.timestamp;
79 timestamps = times;
88 private GestureStroke(RectF bbx, float len, float[] pts, long[] times) {
92 timestamps = times.clone();
203 final long[] times = timestamps; local
215 out.writeLong(times[i / 2]);
  /libcore/luni/src/main/native/
java_io_File.cpp 161 utimbuf times; local
162 times.actime = sb.st_atime;
163 times.modtime = static_cast<time_t>(ms / 1000);
164 return (utime(path.c_str(), &times) == 0);
  /external/icu4c/test/intltest/
tzfmttst.cpp 245 UDate *times; member in struct:LocaleData
284 UDate times[NUM_PATTERNS]; local
286 times[i] = 0;
295 data.times[i] += times[i];
315 times[patidx] = 0;
427 times[patidx] += (Calendar::getNow() - timer);
475 UDate times[NUM_PATTERNS]; local
477 times[i] = 0;
507 data.times = times
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
BerInputStream.java 337 public int[] times; field in class:BerInputStream
374 if (times == null) {
375 times = new int[7];
377 times[0] = strToInt(contentOffset, 4); // year
378 times[1] = strToInt(contentOffset + 4, 2); // month
379 times[2] = strToInt(contentOffset + 6, 2); // day
380 times[3] = strToInt(contentOffset + 8, 2); // hour
381 times[4] = strToInt(contentOffset + 10, 2); // minute
382 times[5] = strToInt(contentOffset + 12, 2); // second
386 times[6] = strToInt(contentOffset + 15, length - 16)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
Inet6AddressTest.java 1027 int times = bytes.length \/ 4; local
    [all...]
  /external/chromium/third_party/icu/source/i18n/
olsontz.cpp 475 // Check invariants for GMT times; if these pass for GMT times
669 UDate* times = (UDate*)uprv_malloc(sizeof(UDate)*transitionCount); /* large enough to store all transition times */ local
670 if (times == NULL) {
676 // Gather all start times for each pair of offsets
683 times[nTimes++] = tt;
697 uprv_free(times);
706 raw, dst, times, nTimes, DateTimeRule::UTC_TIME);
715 uprv_free(times);
    [all...]
  /external/icu4c/i18n/
olsontz.cpp 718 UDate* times = (UDate*)uprv_malloc(sizeof(UDate)*transCount); /* large enough to store all transition times */ local
719 if (times == NULL) {
725 // Gather all start times for each pair of offsets
732 times[nTimes++] = tt;
746 uprv_free(times);
755 raw, dst, times, nTimes, DateTimeRule::UTC_TIME);
764 uprv_free(times);
    [all...]
  /frameworks/base/services/java/com/android/server/am/
UsageStatsService.java 107 int[] times = new int[NUM_LAUNCH_TIME_BINS]; field in class:UsageStatsService.TimeStats
120 times[i]++;
124 times[NUM_LAUNCH_TIME_BINS-1]++;
129 final int[] localTimes = times;
137 final int[] localTimes = times;
168 TimeStats times = new TimeStats(in); local
169 mLaunchTimes.put(comp, times);
186 TimeStats times = mLaunchTimes.get(comp); local
187 if (times == null) {
188 times = new TimeStats()
195 TimeStats times = mLaunchTimes.get(comp); local
211 TimeStats times = ent.getValue(); local
756 TimeStats times = ent.getValue(); local
781 TimeStats times = ent.getValue(); local
    [all...]
  /external/bluetooth/glib/gio/
glocalfileinfo.c 1988 struct timeval times[2] = { {0, 0}, {0, 0} }; local
    [all...]

Completed in 741 milliseconds

1 2