HomeSort by relevance Sort by last modified time
    Searched refs:unit (Results 276 - 300 of 1472) sorted by null

<<11121314151617181920>>

  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ProcessorBase.java 72 public final Object get(long timeout, TimeUnit unit) {
  /system/core/libion/tests/
Android.mk 20 LOCAL_MODULE := ion-unit-tests
  /system/core/libnativebridge/tests/
Android.mk 1 # Build the unit tests.
5 # Build the unit tests.
  /system/core/libsync/tests/
Android.mk 22 LOCAL_MODULE := sync-unit-tests
  /system/core/logd/tests/
Android.mk 27 # Unit tests.
45 # adb shell /data/nativetest/logd-unit-tests/logd-unit-tests
47 LOCAL_MODULE := $(test_module_prefix)unit-tests
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 281 external register_exns : exn -> unit = "llvm_register_core_exns"
284 external install_fatal_error_handler : (string -> unit) -> unit
286 external reset_fatal_error_handler : unit -> unit
288 external enable_pretty_stacktrace : unit -> unit
300 external create_context : unit -> llcontext = "llvm_create_context"
301 external dispose_context : llcontext -> unit = "llvm_dispose_context"
302 external global_context : unit -> llcontext = "llvm_global_context
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/resources/
runner.js 55 PerfTestRunner.computeStatistics = function (times, unit) {
81 result.unit = unit || "ms";
86 PerfTestRunner.logStatistics = function (values, unit, title) {
87 var statistics = this.computeStatistics(values, unit);
91 this.log("values " + statistics.values.join(", ") + " " + statistics.unit);
92 this.log("avg " + statistics.mean + " " + statistics.unit);
93 this.log("median " + statistics.median + " " + statistics.unit);
94 this.log("stdev " + statistics.stdev + " " + statistics.unit);
95 this.log("min " + statistics.min + " " + statistics.unit);
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractScheduledServiceTest.java 37 * Unit test for {@link AbstractScheduledService}.
54 long delay, TimeUnit unit) {
55 return future = super.scheduleWithFixedDelay(command, initialDelay, delay, unit);
236 private static final TimeUnit unit = TimeUnit.MILLISECONDS; field in class:AbstractScheduledServiceTest.SchedulerTest
243 long delay, TimeUnit unit) {
248 assertEquals(SchedulerTest.unit, unit);
253 Scheduler schedule = Scheduler.newFixedRateSchedule(initialDelay, delay, unit);
257 long period, TimeUnit unit) {
258 assertSingleCallWithCorrectParameters(command, initialDelay, delay, unit);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 207 public long getDelay(TimeUnit unit) {
208 return unit.convert(time - now(), NANOSECONDS);
462 private long triggerTime(long delay, TimeUnit unit) {
463 return triggerTime(unit.toNanos((delay < 0) ? 0 : delay));
497 TimeUnit unit) {
498 if (command == null || unit == null)
502 triggerTime(delay, unit)));
513 TimeUnit unit) {
514 if (callable == null || unit == null)
518 triggerTime(delay, unit)));
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorPickerDialog.java 116 private int interpColor(int colors[], float unit) {
117 if (unit <= 0) {
120 if (unit >= 1) {
124 float p = unit * (colors.length - 1);
188 // need to turn angle [-PI ... PI] into unit [0....1]
189 float unit = angle/(2*PI); local
190 if (unit < 0) {
191 unit += 1;
193 mCenterPaint.setColor(interpColor(mColors, unit));
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorWheel.java 133 private int interpColor(int colors[], float unit) {
134 if (unit <= 0) {
137 if (unit >= 1) {
141 float p = unit * (colors.length - 1);
205 // need to turn angle [-PI ... PI] into unit [0....1]
206 float unit = angle/(2*PI); local
207 if (unit < 0) {
208 unit += 1;
210 mCenterPaint.setColor(interpColor(mColors, unit));
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
AndroidProfileOAuth2TokenServiceHelper.java 48 long timeout, TimeUnit unit) {
50 context, activity, account, scope, timeout, unit);
  /external/chromium_org/ppapi/cpp/dev/
scrollbar_dev.cc 80 void Scrollbar_Dev::ScrollBy(PP_ScrollBy_Dev unit, int32_t multiplier) {
83 unit, local
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryExp.h 45 CSSPrimitiveValue::UnitType unit; member in struct:WebCore::MediaQueryExpValue
57 , unit(CSSPrimitiveValue::CSS_UNKNOWN)
  /external/chromium_org/third_party/fips181/
fips181.h 44 #define RULE_SIZE (sizeof(rules)/sizeof(struct unit))
45 #define ALLOWED(flag) (digram[units_in_syllable[current_unit -1]][unit] & (flag))
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_execute.h 33 GLfloat lambda, GLuint unit, GLfloat color[4]);
39 GLuint unit, GLfloat color[4]);
70 const GLubyte *Samplers; /** Array mapping sampler var to tex unit */
  /external/deqp/framework/opengl/
gluStrUtil.hpp 70 inline detail::TextureUnitStr getTextureUnitStr (deUint32 unit) { return detail::TextureUnitStr(unit); }
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractCheckedFuture.java 105 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X {
107 return get(timeout, unit);
ForwardingCheckedFuture.java 50 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X {
51 return delegate().checkedGet(timeout, unit);
ForwardingFuture.java 67 public V get(long timeout, TimeUnit unit)
69 return delegate().get(timeout, unit);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
GenericMapMaker.java 74 abstract GenericMapMaker<K0, V0> expiration(long duration, TimeUnit unit);
79 abstract GenericMapMaker<K0, V0> expireAfterWrite(long duration, TimeUnit unit);
  /external/icu/icu4c/source/i18n/unicode/
reldatefmt.h 29 * Represents the unit for formatting a relative date. e.g "in 5 days"
85 * Represents an absolute unit.
172 * Represents a direction for an absolute unit e.g "Next Tuesday"
243 * involving one single unit. This API does not support relative dates
354 * @param unit the unit e.g day? month? year?
364 UDateRelativeUnit unit,
371 * @param unit e.g SATURDAY, DAY, MONTH
382 UDateAbsoluteUnit unit,
  /external/llvm/bindings/ocaml/analysis/
llvm_analysis.mli 28 external assert_valid_module : Llvm.llmodule -> unit
34 external assert_valid_function : Llvm.llvalue -> unit
40 external view_function_cfg : Llvm.llvalue -> unit = "llvm_view_function_cfg"
45 external view_function_cfg_only : Llvm.llvalue -> unit
  /external/llvm/bindings/ocaml/bitreader/
llvm_bitreader.ml 13 external register_exns : exn -> unit = "llvm_register_bitreader_exns"
  /external/llvm/bindings/ocaml/irreader/
llvm_irreader.ml 13 external register_exns : exn -> unit = "llvm_register_irreader_exns"

Completed in 501 milliseconds

<<11121314151617181920>>