Searched defs:unit (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/i18n/unicode/
H A Dmeasure.h30 * An amount of a specified unit, consisting of a number and a Unit.
32 * unit, such as feet or meters.
45 * unit. After this call, the caller must not delete the given
46 * unit object.
48 * @param adoptedUnit the unit object, which must not be NULL
49 * @param ec input-output error code. If the amount or the unit
97 * Return a reference to the unit of this object.
142 * The unit of this object, e.g., "millimeter" or "JPY". This is
145 MeasureUnit* unit; member in class:Measure
153 return *unit;
[all...]
/external/libunwind/
H A DAndroid.mk303 libunwind-unit-tests_cflags := \
308 libunwind-unit-tests_c_includes := \
311 libunwind-unit-tests_src_files := \
314 libunwind-unit-tests_shared_libraries := \
317 libunwind-unit-tests_multilib := both
318 libunwind_module := libunwind-unit-tests
326 # Run the unit tests built for x86 or x86_64.
336 libunwind-unit-tests-run-on-host: libunwind-unit-tests $(TARGET_OUT_EXECUTABLES)/$(LINKER) $(TARGET_OUT_EXECUTABLES)/sh
347 $(TARGET_OUT_DATA_NATIVE_TESTS)/libunwind-unit
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DCheckedFuture.java75 V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X; argument
H A DAbstractCheckedFuture.java105 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X { argument
107 return get(timeout, unit);
H A DAbstractListeningExecutorService.java79 public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
81 return invokeAnyImpl(this, tasks, true, unit.toNanos(timeout));
118 TimeUnit unit) throws InterruptedException {
119 if (tasks == null || unit == null) {
122 long nanos = unit.toNanos(timeout);
117 invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
H A DForwardingCheckedFuture.java50 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X { argument
51 return delegate().checkedGet(timeout, unit);
H A DForwardingFuture.java67 public V get(long timeout, TimeUnit unit) argument
69 return delegate().get(timeout, unit);
H A DListeningExecutorService.java84 * {@code List<ListenableFuture<T>> futures = (List) executor.invokeAll(tasks, timeout, unit);}
96 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
95 invokeAll( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
H A DListeningScheduledExecutorService.java41 Runnable command, long delay, TimeUnit unit);
46 Callable<V> callable, long delay, TimeUnit unit);
51 Runnable command, long initialDelay, long period, TimeUnit unit);
56 Runnable command, long initialDelay, long delay, TimeUnit unit);
40 schedule( Runnable command, long delay, TimeUnit unit) argument
45 schedule( Callable<V> callable, long delay, TimeUnit unit) argument
50 scheduleAtFixedRate( Runnable command, long initialDelay, long period, TimeUnit unit) argument
55 scheduleWithFixedDelay( Runnable command, long initialDelay, long delay, TimeUnit unit) argument
H A DWrappingScheduledExecutorService.java41 public final ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { argument
42 return delegate.schedule(wrapTask(command), delay, unit);
46 public final <V> ScheduledFuture<V> schedule(Callable<V> task, long delay, TimeUnit unit) { argument
47 return delegate.schedule(wrapTask(task), delay, unit);
52 Runnable command, long initialDelay, long period, TimeUnit unit) {
53 return delegate.scheduleAtFixedRate(wrapTask(command), initialDelay, period, unit);
58 Runnable command, long initialDelay, long delay, TimeUnit unit) {
59 return delegate.scheduleWithFixedDelay(wrapTask(command), initialDelay, delay, unit);
51 scheduleAtFixedRate( Runnable command, long initialDelay, long period, TimeUnit unit) argument
57 scheduleWithFixedDelay( Runnable command, long initialDelay, long delay, TimeUnit unit) argument
H A DForwardingBlockingQueue.java53 @Override public boolean offer(E e, long timeout, TimeUnit unit) argument
55 return delegate().offer(e, timeout, unit);
58 @Override public E poll(long timeout, TimeUnit unit) argument
60 return delegate().poll(timeout, unit);
H A DUninterruptibles.java71 * await(timeout, unit)} uninterruptibly.
74 long timeout, TimeUnit unit) {
77 long remainingNanos = unit.toNanos(timeout);
149 * {@code future.}{@link Future#get(long, TimeUnit) get(timeout, unit)}
161 Future<V> future, long timeout, TimeUnit unit)
165 long remainingNanos = unit.toNanos(timeout);
186 * {@code unit.}{@link TimeUnit#timedJoin(Thread, long)
190 long timeout, TimeUnit unit) {
194 long remainingNanos = unit.toNanos(timeout);
262 * Invokes {@code unit
73 awaitUninterruptibly(CountDownLatch latch, long timeout, TimeUnit unit) argument
160 getUninterruptibly( Future<V> future, long timeout, TimeUnit unit) argument
189 joinUninterruptibly(Thread toJoin, long timeout, TimeUnit unit) argument
265 sleepUninterruptibly(long sleepFor, TimeUnit unit) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DTimeUnitAmount.java10 * Express a duration as a time unit and number. Patterned after Currency.
20 * Create from a number and unit.
23 public TimeUnitAmount(Number number, TimeUnit unit) { argument
24 super(number, unit);
28 * Create from a number and unit.
31 public TimeUnitAmount(double number, TimeUnit unit) { argument
32 super(new Double(number), unit);
36 * Get the unit (convenience to avoid cast).
H A DMeasure.java15 * An amount of a specified unit, consisting of a Number and a Unit.
17 * unit, such as feet or meters.
34 private final MeasureUnit unit; field in class:Measure
37 * Constructs a new object given a number and a unit.
39 * @param unit the unit
42 public Measure(Number number, MeasureUnit unit) { argument
43 if (number == null || unit == null) {
47 this.unit = unit;
[all...]
/external/mesa3d/src/mesa/main/
H A Dsamplerobj.h32 _mesa_get_samplerobj(struct gl_context *ctx, GLuint unit) argument
34 if (ctx->Texture.Unit[unit].Sampler)
35 return ctx->Texture.Unit[unit].Sampler;
36 else if (ctx->Texture.Unit[unit]._Current)
37 return &ctx->Texture.Unit[unit]._Current->Sampler;
83 _mesa_BindSampler(GLuint unit, GLuint sampler);
/external/guava/guava-bootstrap/src/java/util/concurrent/
H A DAbstractExecutorService.java115 long timeout, TimeUnit unit)
117 return doInvokeAny(tasks, true, unit.toNanos(timeout));
151 long timeout, TimeUnit unit)
153 if (tasks == null || unit == null)
155 long nanos = unit.toNanos(timeout);
114 invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
150 invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
H A DExecutorService.java25 boolean awaitTermination(long timeout, TimeUnit unit) argument
38 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
45 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
37 invokeAll( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
44 invokeAny( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DGenericMapMaker.java70 abstract GenericMapMaker<K0, V0> expireAfterWrite(long duration, TimeUnit unit); argument
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv40_verttex.c36 unsigned unit = ffs(dirty) - 1; local
37 struct nv30_sampler_view *sv = (void *)nv30->fragprog.textures[unit];
38 struct nv30_sampler_state *ss = nv30->fragprog.samplers[unit];
42 BEGIN_NV04(push, NV40_3D(VTXTEX_ENABLE(unit)), 1);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DPing.java64 public long roundTripTime(long timeout, TimeUnit unit) throws InterruptedException { argument
65 if (latch.await(timeout, unit)) {
/external/okhttp/okio/okio/src/main/java/okio/
H A DForwardingTimeout.java41 @Override public Timeout timeout(long timeout, TimeUnit unit) { argument
42 return delegate.timeout(timeout, unit);
H A DTimeout.java49 @Override public Timeout timeout(long timeout, TimeUnit unit) {
80 public Timeout timeout(long timeout, TimeUnit unit) { argument
82 if (unit == null) throw new IllegalArgumentException("unit == null");
83 this.timeoutNanos = unit.toNanos(timeout);
120 public final Timeout deadline(long duration, TimeUnit unit) { argument
122 if (unit == null) throw new IllegalArgumentException("unit == null");
123 return deadlineNanoTime(System.nanoTime() + unit.toNanos(duration));
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DStopwatch.java200 * in the desired time unit, with any fraction rounded down.
234 private static String abbreviate(TimeUnit unit) { argument
235 switch (unit) {
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DMatParamTexture.java15 private int unit; field in class:MatParamTexture
17 public MatParamTexture(VarType type, String name, Texture texture, int unit) { argument
20 this.unit = unit;
35 public void setUnit(int unit) { argument
36 this.unit = unit;
40 return unit;
56 oc.write(unit, "texture_unit", -1);
64 unit
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_derived.c39 static uint find_mapping(const struct i915_fragment_shader* fs, int unit) argument
44 if (fs->generic_mapping[i] == unit)
77 uint unit = I915_SEMANTIC_POS; local
78 texCoords[find_mapping(fs, unit)] = TRUE;
88 uint unit = fs->info.input_semantic_index[i]; local
90 texCoords[find_mapping(fs, unit)] = TRUE;

Completed in 629 milliseconds

1234567891011>>