Searched refs:ms (Results 326 - 350 of 526) sorted by path

<<11121314151617181920>>

/external/icu/icu4c/source/test/intltest/
H A Dcaltest.cpp1072 int32_t y = 1997, m = UCAL_FEBRUARY, d = 1, hr = 1, min = 1, sec = 0, ms = 0; local
1080 temp->set(UCAL_MILLISECOND, ms);
1099 check520(temp, y, m, d, hr, min, sec, ms, e);
1125 check520(temp, y, m, d, hr, min, sec, ms, e);
1138 int32_t ms, UCalendarDateFields field)
1148 c->get(UCAL_MILLISECOND, status) != ms) {
1150 ": Expected y/m/d h:m:s:ms of " +
1152 hr + ":" + min + ":" + sec + ":" + ms +
1167 hr + ":" + min + ":" + sec + ":" + ms); local
2432 CalFields(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, int32_t sec, int32_t ms
1135 check520(Calendar* c, int32_t y, int32_t m, int32_t d, int32_t hr, int32_t min, int32_t sec, int32_t ms, UCalendarDateFields field) argument
2447 int32_t ms; member in class:CalFields
2450 CalFields(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, int32_t sec, int32_t ms) argument
[all...]
H A Dcaltest.h99 int32_t ms, UCalendarDateFields field);
H A Ddtfmrgts.cpp1367 UDate ms = cal->getTime(status); local
1376 if (ms2 != ms) {
1377 errln((UnicodeString)"\nError: GregorianUCAL_DOM gave " + ms +
1389 if (ms2!=ms) {
1390 errln((UnicodeString)"\nError: GregorianCalendar gave " + ms +
1398 sdf->format(ms, result);
1414 if (ms3!=ms) {
1418 "\n not " + ms);
/external/icu/icu4c/source/test/perf/perldriver/
H A DPerfFramework.pm165 # [2..] ms reported for each pass, in order
170 my @ms = ();
175 # $a->[2]: 'end' data, of the form <ms> <eventsPerIter>
178 #push(@ms, $b[0]);
179 push(@ms, shift(@b));
195 my @ms_str = @ms;
197 # out("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n");
198 debug("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n");
200 ($iterCount, $operationsPerIter, \@ms, $eventsPerIter);
202 ($iterCount, $operationsPerIter, \@ms);
[all...]
/external/iproute2/doc/
H A Dip-cref.tex1905 64 bytes from 193.233.7.98: icmp_seq=0 ttl=255 time=3.5 ms
1907 64 bytes from 193.233.7.98: icmp_seq=1 ttl=255 time=2.2 ms
1908 64 bytes from 193.233.7.98: icmp_seq=2 ttl=255 time=0.4 ms
1909 64 bytes from 193.233.7.98: icmp_seq=3 ttl=255 time=0.4 ms
1910 64 bytes from 193.233.7.98: icmp_seq=4 ttl=255 time=0.4 ms
1914 round-trip min/avg/max = 0.4/1.3/3.5 ms
/external/javasqlite/src/main/java/SQLite/
H A DDatabase.java273 * @param ms number of millisecond to wait
276 public void busy_timeout(int ms) { argument
278 _busy_timeout(ms);
282 private native void _busy_timeout(int ms); argument
928 * @param ms millisecond value of java.lang.Date
932 public static double julian_from_long(long ms) { argument
933 double adj = (ms < 0) ? 0 : 0.5;
934 double d = (ms + adj) / 86400000.0 + 2440587.5;
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCConnection.java529 void wait(int ms) { argument
532 lock.wait(ms);
H A DJDBCStatement.java130 int ms = 20 + busy * 10;
131 if (ms > 1000) {
132 ms = 1000;
135 this.wait(ms);
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c892 Java_SQLite_Database__1busy_1timeout(JNIEnv *env, jobject obj, jint ms) argument
899 sqlite3_busy_timeout((sqlite3 * ) h->sqlite, ms);
901 sqlite_busy_timeout((sqlite *) h->sqlite, ms);
905 sqlite_busy_timeout((sqlite *) h->sqlite, ms);
908 sqlite3_busy_timeout((sqlite3 * ) h->sqlite, ms);
4843 jlong ms = est / (3600i64 * 24i64 * 1000i64); local
4845 jlong ms = est / (3600LL * 24LL * 1000LL); local
4855 (*env)->CallVoidMethod(env, h->pr, mid, tr.jstr, ms);
/external/javassist/sample/evolve/
H A DEvolution.java143 CtMethod[] ms = clazz.getDeclaredMethods();
144 for (i = 0; i < ms.length; ++i) {
145 CtMethod m = ms[i];
185 CtMethod[] ms = clazz.getDeclaredMethods();
186 for (i = 0; i < ms.length; ++i)
187 ms[i].instrument(converter);
/external/javassist/src/main/javassist/tools/reflect/
H A DReflection.java278 CtMethod[] ms = clazz.getMethods();
279 for (int i = 0; i < ms.length; ++i) {
280 CtMethod m = ms[i];
342 CtMethod[] ms = m.getDeclaringClass().getDeclaredMethods();
343 for (int i = 0; i < ms.length; ++i) {
344 String orgName = ms[i].getName();
347 && ms[i].getSignature().equals(m.getSignature()))
348 return ms[i];
/external/javassist/src/main/javassist/tools/rmi/
H A DStubGenerator.java194 /* ms must not be an array of CtMethod. To invoke a method ms[i]
197 private void addMethods(CtClass proxy, Method[] ms) argument
201 for (int i = 0; i < ms.length; ++i) {
202 Method m = ms[i];
/external/jmdns/src/javax/jmdns/impl/
H A DJmDNSImpl.java1543 final MulticastSocket ms = _socket;
1544 if (ms != null && !ms.isClosed()) {
1545 ms.send(packet);
/external/kernel-headers/original/uapi/drm/
H A Dvia_drm.h153 __u32 ms; member in struct:_drm_via_futex
/external/kernel-headers/original/uapi/linux/
H A Dnvme.h83 __le16 ms; member in struct:nvme_lbaf
/external/ksoap2/kobjects/org/ksoap2/kobjects/isodate/
H A DIsoDate.java66 int ms = c.get(Calendar.MILLISECOND);
67 buf.append((char) (((int) '0') + (ms / 100)));
68 dd(buf, ms % 100);
117 int ms = 0;
123 ms += (d - '0') * f;
126 c.set(Calendar.MILLISECOND, ms);
/external/libcxx/test/thread/futures/futures.async/
H A Dasync.pass.cpp25 typedef std::chrono::milliseconds ms; typedef
29 std::this_thread::sleep_for(ms(200));
37 std::this_thread::sleep_for(ms(200));
43 std::this_thread::sleep_for(ms(200));
48 std::this_thread::sleep_for(ms(200));
54 std::this_thread::sleep_for(ms(200));
60 std::this_thread::sleep_for(ms(200));
68 std::this_thread::sleep_for(ms(300));
72 assert(t1-t0 < ms(100));
76 std::this_thread::sleep_for(ms(30
[all...]
/external/libcxx/test/thread/futures/futures.shared_future/
H A Dwait.pass.cpp43 typedef std::chrono::duration<double, std::milli> ms; typedef
56 assert(t1-t0 < ms(5));
70 assert(t1-t0 < ms(5));
84 assert(t1-t0 < ms(5));
H A Dwait_for.pass.cpp21 typedef std::chrono::milliseconds ms; typedef
25 std::this_thread::sleep_for(ms(500));
33 std::this_thread::sleep_for(ms(500));
40 std::this_thread::sleep_for(ms(500));
53 assert(f.wait_for(ms(300)) == std::future_status::timeout);
55 assert(f.wait_for(ms(300)) == std::future_status::ready);
61 assert(t1-t0 < ms(5));
69 assert(f.wait_for(ms(300)) == std::future_status::timeout);
71 assert(f.wait_for(ms(300)) == std::future_status::ready);
77 assert(t1-t0 < ms(
[all...]
H A Dwait_until.pass.cpp21 typedef std::chrono::milliseconds ms; typedef
25 std::this_thread::sleep_for(ms(500));
33 std::this_thread::sleep_for(ms(500));
40 std::this_thread::sleep_for(ms(500));
53 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::timeout);
55 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
61 assert(t1-t0 < ms(5));
69 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::timeout);
71 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
77 assert(t1-t0 < ms(
[all...]
/external/libcxx/test/thread/futures/futures.unique_future/
H A Dwait.pass.cpp43 typedef std::chrono::duration<double, std::milli> ms; typedef
56 assert(t1-t0 < ms(5));
70 assert(t1-t0 < ms(5));
84 assert(t1-t0 < ms(5));
H A Dwait_for.pass.cpp21 typedef std::chrono::milliseconds ms; typedef
25 std::this_thread::sleep_for(ms(500));
33 std::this_thread::sleep_for(ms(500));
40 std::this_thread::sleep_for(ms(500));
53 assert(f.wait_for(ms(300)) == std::future_status::timeout);
55 assert(f.wait_for(ms(300)) == std::future_status::ready);
61 assert(t1-t0 < ms(50));
69 assert(f.wait_for(ms(300)) == std::future_status::timeout);
71 assert(f.wait_for(ms(300)) == std::future_status::ready);
77 assert(t1-t0 < ms(5
[all...]
H A Dwait_until.pass.cpp21 typedef std::chrono::milliseconds ms; typedef
25 std::this_thread::sleep_for(ms(500));
33 std::this_thread::sleep_for(ms(500));
40 std::this_thread::sleep_for(ms(500));
53 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::timeout);
55 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
61 assert(t1-t0 < ms(5));
69 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::timeout);
71 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
77 assert(t1-t0 < ms(
[all...]
/external/libcxx/test/thread/thread.condition/
H A Dnotify_all_at_thread_exit.pass.cpp24 typedef std::chrono::milliseconds ms; typedef
31 std::this_thread::sleep_for(ms(300));
41 assert(t1-t0 > ms(250));
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/
H A Dadopt_lock.pass.cpp26 typedef std::chrono::milliseconds ms; typedef
38 ns d = t1 - t0 - ms(250);
39 assert(d < ms(50)); // within 50ms
46 std::this_thread::sleep_for(ms(250));

Completed in 372 milliseconds

<<11121314151617181920>>