HomeSort by relevance Sort by last modified time
    Searched full:period (Results 1 - 25 of 2994) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/074-gc-thrash/
info.txt 1 This thrashes the memory allocator and garbage collector for a brief period.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
PeriodFormatter.java 11 * Formats a Period, such as '2 hours 23 minutes'.
12 * The Period defines the fields to format and their
19 * @see Period
25 * Format a Period.
27 * @param ts the Period to format
30 String format(Period period);
PeriodBuilder.java 13 * Constructs a Period given a base time and a duration in milliseconds.
16 * to customize how that formatter constructs a Period for formatting.
22 * Create a period of the given duration using the current system
27 * @return a Period that represents the duration
29 Period create(long duration);
32 * Create a period of the given duration using the provided reference date.
37 * @param referenceDate the reference date from which to compute the period
38 * @return a Period that represents the duration
40 Period createWithReferenceDate(long duration, long referenceDate);
Period.java 15 * In addition Period can either represent the duration as being into the past
18 * Use a PeriodFormatter to convert a Period to a String.
24 * Period p1 = Period.at(3, WEEK).and(2, DAY).inFuture();
25 * Period p2 = p1.and(12, HOUR);</pre>
27 public final class Period {
33 * Constructs a Period representing a duration of
37 * @return the new Period
39 public static Period at(float count, TimeUnit unit) {
41 return new Period(ETimeLimit.NOLIMIT, false, count, unit)
    [all...]
BasicPeriodBuilderFactory.java 159 Period createLimited(long duration, boolean inPast) {
163 return Period.moreThan(maxLimit/1000f, maxUnit).inPast(inPast);
173 return Period.lessThan(eml/1000f, emu).inPast(inPast);
274 * largest period less than or equal to the duration.
284 * Starting with the largest period less than or equal to the duration.
285 * It formats two periods if the first period has a count &lt; 2
286 * and the next period has a count &gt;= 1.
296 * starting with the largest period less than or equal to the
310 public Period create(long duration) {
318 public Period createWithReferenceDate(long duration, long referenceDate)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
Period.java 16 * In addition Period can either represent the duration as being into the past
19 * Use a PeriodFormatter to convert a Period to a String.
25 * Period p1 = Period.at(3, WEEK).and(2, DAY).inFuture();
26 * Period p2 = p1.and(12, HOUR);</pre>
29 public final class Period {
35 * Constructs a Period representing a duration of
39 * @return the new Period
41 public static Period at(float count, TimeUnit unit) {
43 return new Period(ETimeLimit.NOLIMIT, false, count, unit)
    [all...]
PeriodFormatter.java 12 * Formats a Period, such as '2 hours 23 minutes'.
13 * The Period defines the fields to format and their
20 * @see Period
27 * Format a Period.
29 * @param ts the Period to format
32 String format(Period period);
PeriodBuilder.java 14 * Constructs a Period given a base time and a duration in milliseconds.
17 * to customize how that formatter constructs a Period for formatting.
24 * Create a period of the given duration using the current system
29 * @return a Period that represents the duration
31 Period create(long duration);
34 * Create a period of the given duration using the provided reference date.
39 * @param referenceDate the reference date from which to compute the period
40 * @return a Period that represents the duration
42 Period createWithReferenceDate(long duration, long referenceDate);
BasicPeriodBuilderFactory.java 160 Period createLimited(long duration, boolean inPast) {
164 return Period.moreThan(maxLimit/1000f, maxUnit).inPast(inPast);
174 return Period.lessThan(eml/1000f, emu).inPast(inPast);
275 * largest period less than or equal to the duration.
285 * Starting with the largest period less than or equal to the duration.
286 * It formats two periods if the first period has a count &lt; 2
287 * and the next period has a count &gt;= 1.
297 * starting with the largest period less than or equal to the
311 public Period create(long duration) {
319 public Period createWithReferenceDate(long duration, long referenceDate)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t049treeparsere.g 6 a : ID INT+ PERIOD;
10 PERIOD : '.' ;
t049treeparsereWalker.g 7 a : ID INT+ PERIOD {this.capture("alt 1");}
  /external/webrtc/webrtc/base/
ratelimiter.h 19 // Limits the rate of use to a certain maximum quantity per period of
28 RateLimiter(size_t max, double period)
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.
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
PeriodTest.java 14 import android.icu.impl.duration.Period;
30 Period p = Period.at(0, TimeUnit.YEAR);
40 Period p = Period.moreThan(1, TimeUnit.YEAR);
53 p = Period.lessThan(1, TimeUnit.YEAR);
57 p = Period.at(1, TimeUnit.YEAR);
65 Period p = Period.at(1, TimeUnit.YEAR).inFuture();
76 Period p = Period.at(1, TimeUnit.YEAR).and(3, TimeUnit.MONTH
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
PeriodTest.java 13 import com.ibm.icu.impl.duration.Period;
26 Period p = Period.at(0, TimeUnit.YEAR);
36 Period p = Period.moreThan(1, TimeUnit.YEAR);
49 p = Period.lessThan(1, TimeUnit.YEAR);
53 p = Period.at(1, TimeUnit.YEAR);
61 Period p = Period.at(1, TimeUnit.YEAR).inFuture();
72 Period p = Period.at(1, TimeUnit.YEAR).and(3, TimeUnit.MONTH
    [all...]
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebt_limit.h 11 /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490
16 __u32 burst; /* Period multiplier for upper limit. */
  /external/proguard/src/proguard/gui/splash/
SawToothTiming.java 30 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)
41 this.period = period;
51 return (double)((time + phase) % period) / (double)period;
SineTiming.java 30 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)
41 this.period = period;
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_limit.h 9 /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490
15 u_int32_t burst; /* Period multiplier for upper limit. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_limit.h 11 /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490
16 __u32 burst; /* Period multiplier for upper limit. */
  /system/extras/simpleperf/
callchain.cpp 52 size_t chain_start, uint64_t period,
58 node->period = period;
65 AllocateNode(parent->chain, parent_length, parent->period, parent->children_period);
67 parent->period = 0;
68 parent->children_period = child->period + child->children_period;
74 void CallChainRoot::AddCallChain(const std::vector<SampleEntry*>& callchain, uint64_t period) {
75 children_period += period;
78 std::unique_ptr<CallChainNode> new_node = AllocateNode(callchain, 0, period, 0);
93 p->period += period
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
pwm.hpp 104 * Set the PWM period as seconds represented in a float
106 * @param period Period represented as a float in seconds
110 period(float period) function in class:mraa::Pwm
112 return (Result) mraa_pwm_period(m_pwm, period);
115 * Set period, milliseconds
117 * @param ms milliseconds for period
126 * Set period, microseconds
128 * @param us microseconds as period
    [all...]
  /external/markdown/MarkdownTest/Tests_2004/
Backslash escapes.text 27 Period: \.
63 Period: \.
98 Period: `\.`
  /external/markdown/tests/markdown-test/
backlash-escapes.txt 27 Period: \.
63 Period: \.
98 Period: `\.`
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPeriodicSync.java 17 public void __constructor__(Account account, String authority, Bundle extras, long period) throws Exception {
20 setField("period", period);
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.nonmember/
op_times_rep.pass.cpp 14 // template <class Rep1, class Period, class Rep2>
16 // duration<typename common_type<Rep1, Rep2>::type, Period>
17 // operator*(const duration<Rep1, Period>& d, const Rep2& s);
19 // template <class Rep1, class Period, class Rep2>
21 // duration<typename common_type<Rep1, Rep2>::type, Period>
22 // operator*(const Rep1& s, const duration<Rep2, Period>& d);

Completed in 2284 milliseconds

1 2 3 4 5 6 7 8 91011>>