Searched defs:period (Results 1 - 25 of 120) sorted by relevance

12345

/external/libcxx/test/std/utilities/time/
H A Dclock.h19 typedef duration::period period; typedef in class:Clock
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
H A DPeriodFormatter.java34 String format(Period period); argument
H A DBasicPeriodFormatter.java41 public String format(Period period) { argument
42 if (!period.isSet()) {
43 throw new IllegalArgumentException("period is not set");
45 return format(period.timeLimit, period.inFuture, period.counts);
H A DBasicDurationFormatter.java120 protected String doFormat(Period period) { argument
121 if (!period.isSet()) {
122 throw new IllegalArgumentException("period is not set");
124 return formatter.format(period);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DPeriodFormatter.java32 String format(Period period); argument
H A DBasicPeriodFormatter.java40 public String format(Period period) { argument
41 if (!period.isSet()) {
42 throw new IllegalArgumentException("period is not set");
44 return format(period.timeLimit, period.inFuture, period.counts);
H A DBasicDurationFormatter.java119 protected String doFormat(Period period) { argument
120 if (!period.isSet()) {
121 throw new IllegalArgumentException("period is not set");
123 return formatter.format(period);
/external/proguard/src/proguard/gui/splash/
H A DSawToothTiming.java30 private final long period; field in class:SawToothTiming
36 * @param period the time period for a full cycle.
39 public SawToothTiming(long period, long phase) argument
41 this.period = period;
51 return (double)((time + phase) % period) / (double)period;
H A DSineTiming.java30 private final long period; field in class:SineTiming
36 * @param period the time period for a full cycle.
39 public SineTiming(long period, long phase) argument
41 this.period = period;
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
/external/strace/tests/
H A Dfill_memory.c5 unsigned char period)
11 p[i] = start + i % period;
4 fill_memory_ex(void *ptr, size_t size, unsigned char start, unsigned char period) argument
/external/strace/tests-m32/
H A Dfill_memory.c5 unsigned char period)
11 p[i] = start + i % period;
4 fill_memory_ex(void *ptr, size_t size, unsigned char start, unsigned char period) argument
/external/strace/tests-mx32/
H A Dfill_memory.c5 unsigned char period)
11 p[i] = start + i % period;
4 fill_memory_ex(void *ptr, size_t size, unsigned char start, unsigned char period) argument
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Denhancer.c34 size_t *period, /* (i) pitch period array (pitch bward-in time) */
35 const size_t *plocs, /* (i) locations where period array values valid */
36 size_t periodl /* (i) dimension of period and plocs */
45 WebRtcIlbcfix_GetSyncSeq(idata, idatal, centerStartPos, period, plocs,
29 WebRtcIlbcfix_Enhancer( int16_t *odata, int16_t *idata, size_t idatal, size_t centerStartPos, size_t *period, const size_t *plocs, size_t periodl ) argument
H A Dget_sync_seq.c32 size_t *period, /* (i) rough-pitch-period array (Q-2) */
33 const size_t *plocs, /* (i) where periods of period array are taken (Q-2) */
34 size_t periodl, /* (i) dimension period array */
61 size_t period_q = period[lagBlock[q]];
83 plocs2[i] = plocs[i] - period[i];
94 blockStartPos[q]=blockStartPos[q-1]+period[lagBlock[q]];
28 WebRtcIlbcfix_GetSyncSeq( int16_t *idata, size_t idatal, size_t centerStartPos, size_t *period, const size_t *plocs, size_t periodl, size_t hl, int16_t *surround ) argument
/external/guava/guava/src/com/google/common/util/concurrent/
H A DListeningScheduledExecutorService.java51 Runnable command, long initialDelay, long period, TimeUnit unit);
50 scheduleAtFixedRate( Runnable command, long initialDelay, long period, TimeUnit unit) argument
H A DWrappingScheduledExecutorService.java52 Runnable command, long initialDelay, long period, TimeUnit unit) {
53 return delegate.scheduleAtFixedRate(wrapTask(command), initialDelay, period, unit);
51 scheduleAtFixedRate( Runnable command, long initialDelay, long period, TimeUnit unit) argument
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPeriodicSync.java17 public void __constructor__(Account account, String authority, Bundle extras, long period) throws Exception { argument
20 setField("period", period);
/external/webrtc/webrtc/base/
H A Dratelimiter.h19 // Limits the rate of use to a certain maximum quantity per period of
28 RateLimiter(size_t max, double period) argument
30 period_length_(period),
33 period_end_(period) {
38 // current period (< (max - used)). Once the given time passes the
39 // end of the period, used is set to zero and more use is available.
41 // Increment the quantity used this period. If past the end of a
42 // period, a new period is started.
H A Dtiming.cc71 double Timing::BusyWait(double period) { argument
73 while (TimerNow() - start_time < period) {
78 double Timing::IdleWait(double period) { argument
82 double sec_int, sec_frac = modf(period, &sec_int);
99 due_time.QuadPart = -LONGLONG(period * 1.0e7);
106 Sleep(DWORD(period * 1.0e3));
/external/devlib/src/netstats/src/com/arm/devlib/trafficcatcher/
H A DTrafficMetricsService.java24 private int period; field in class:TrafficPoller
30 public TrafficPoller(String tag, PackageManager pm, int period, List<String> packages) { argument
33 this.period = period;
41 Thread.sleep(this.period);
112 int pollingPeriod = intent.getIntExtra("period", this.defaultPollingPeriod);
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
H A Dwait_until.pass.cpp31 typedef duration::period period; typedef in struct:Clock
H A Dwait_until_pred.pass.cpp32 typedef duration::period period; typedef in struct:Clock
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
H A Dwait_until.pass.cpp30 typedef duration::period period; typedef in struct:Clock
H A Dwait_until_pred.pass.cpp32 typedef duration::period period; typedef in struct:Clock
/external/libcxx/test/libcxx/experimental/filesystem/
H A Dconvert_file_time.sh.cpp178 typedef typename duration::period period; typedef in struct:TestClock

Completed in 641 milliseconds

12345