Home | History | Annotate | Download | only in dalvik

Lines Matching defs:absolute

145          * absolute fashion (<code>true</code>) or nanoseconds to wait
147 private final boolean absolute;
164 * @param absolute whether to use an absolute time or not; in
168 public Parker(CyclicBarrier barrier, boolean absolute, long parkMillis) {
170 this.absolute = absolute;
173 this.amount = absolute ? parkMillis : parkMillis * 1000000;
182 boolean absolute = this.absolute;
187 if (absolute) {