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

<<11121314151617181920>>

  /art/runtime/interpreter/mterp/mips64/
op_packed_switch.S 19 jal $func # v0 <- code-unit branch offset
  /cts/tests/tests/provider/src/android/provider/cts/
GetResultActivity.java 77 public Result getResult(long timeout, TimeUnit unit) {
79 return sResult.poll(timeout, unit);
  /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/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);
Service.java 106 * @param unit the time unit of the timeout argument
115 void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException;
132 * @param unit the time unit of the timeout argument
137 void awaitTerminated(long timeout, TimeUnit unit) throws TimeoutException;
  /external/icu/icu4c/source/i18n/unicode/
ureldatefmt.h 23 * \brief C API: URelativeDateTimeFormatter, relative date formatting of unit + numeric offset.
34 * for determining which unit to use, such as deciding between "in 7 days"
73 * Represents the unit for formatting a relative date. e.g "in 5 days"
79 * Specifies that relative unit is year, e.g. "last year",
85 * Specifies that relative unit is quarter, e.g. "last quarter",
91 * Specifies that relative unit is month, e.g. "last month",
97 * Specifies that relative unit is week, e.g. "last week",
103 * Specifies that relative unit is day, e.g. "yesterday",
109 * Specifies that relative unit is hour, e.g. "1 hour ago",
115 * Specifies that relative unit is minute, e.g. "1 minute ago"
    [all...]
  /external/llvm/bindings/ocaml/linker/
llvm_linker.ml 14 external link_modules' : Llvm.llmodule -> Llvm.llmodule -> unit
  /external/mesa3d/src/mesa/main/
texstate.c 78 /* per-unit state */
80 dst->Texture.Unit[u].Enabled = src->Texture.Unit[u].Enabled;
81 dst->Texture.Unit[u].EnvMode = src->Texture.Unit[u].EnvMode;
82 COPY_4V(dst->Texture.Unit[u].EnvColor, src->Texture.Unit[u].EnvColor);
83 dst->Texture.Unit[u].TexGenEnabled = src->Texture.Unit[u].TexGenEnabled;
84 dst->Texture.Unit[u].GenS = src->Texture.Unit[u].GenS
475 GLuint unit; local
518 int unit; local
590 int unit = prog[i]->SamplerUnits[s]; local
611 int unit; local
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockResponse.java 202 public MockResponse throttleBody(long bytesPerPeriod, long period, TimeUnit unit) {
205 this.throttlePeriodUnit = unit;
213 public long getThrottlePeriod(TimeUnit unit) {
214 return unit.convert(throttlePeriodAmount, throttlePeriodUnit);
221 public MockResponse setBodyDelay(long delay, TimeUnit unit) {
223 bodyDelayUnit = unit;
227 public long getBodyDelay(TimeUnit unit) {
228 return unit.convert(bodyDelayAmount, bodyDelayUnit);
  /external/ppp/pppd/
chap-new.h 124 extern void chap_auth_peer(int unit, char *our_name, int digest_code);
127 extern void chap_auth_with_peer(int unit, char *our_name, int digest_code);
eap.h 126 int es_unit; /* Interface unit number */
148 void eap_authwithpeer __P((int unit, char *localname));
149 void eap_authpeer __P((int unit, char *localname));
  /external/sl4a/Common/src/com/googlecode/android_scripting/future/
FutureActivityTask.java 83 public T getResult(long timeout, TimeUnit unit) throws InterruptedException {
84 return mResult.get(timeout, unit);
  /external/swiftshader/third_party/LLVM/bindings/ocaml/bitreader/
llvm_bitreader.ml 13 external register_exns : exn -> unit = "llvm_register_bitreader_exns"
  /external/turbine/javatests/com/google/turbine/parse/
VariableDeclarationTest.java 198 Tree.CompUnit unit = Parser.parse("class Test {" + input + "}"); local
199 assertThat(Joiner.on(" ").join(getOnlyElement(unit.decls()).members())).isEqualTo(expected);
  /frameworks/base/cmds/statsd/src/
stats_log_util.h 44 int64_t TimeUnitToBucketSizeInMillisGuardrailed(int uid, TimeUnit unit);
47 int64_t TimeUnitToBucketSizeInMillis(TimeUnit unit);
  /frameworks/base/core/proto/android/util/
event_log_tags.proto 63 optional DataUnit unit = 3;
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
EffectParameter.java 35 public EffectParameter (int min, int max, SeekBar seekBar, TextView textView, String unit) {
40 mUnit = unit;
  /frameworks/base/tools/aapt2/
Android.mk 5 # Target for running host unit tests on post/pre-submit.
  /hardware/intel/img/hwcomposer/merrifield/test/
Android.mk 1 # Build the unit tests,
  /libcore/ojluni/src/main/java/java/time/chrono/
ChronoLocalDateTime.java 232 * Checks if the specified unit is supported.
234 * This checks if the specified unit can be added to or subtracted from this date-time.
241 * If the unit is not a {@code ChronoUnit}, then the result of this method
244 * Whether the unit is supported is determined by the unit.
246 * @param unit the unit to check, null returns false
247 * @return true if the unit can be added/subtracted, false if not
250 default boolean isSupported(TemporalUnit unit) {
251 if (unit instanceof ChronoUnit)
    [all...]
ChronoZonedDateTime.java 379 * Checks if the specified unit is supported.
381 * This checks if the specified unit can be added to or subtracted from this date-time.
388 * If the unit is not a {@code ChronoUnit}, then the result of this method
391 * Whether the unit is supported is determined by the unit.
393 * @param unit the unit to check, null returns false
394 * @return true if the unit can be added/subtracted, false if not
397 default boolean isSupported(TemporalUnit unit) {
398 if (unit instanceof ChronoUnit)
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
CompletedFuture.java 74 public V get(long timeout, TimeUnit unit) throws ExecutionException {
75 if (unit == null)

Completed in 854 milliseconds

<<11121314151617181920>>