/external/chromium_org/tools/perf/metrics/ |
media.py | 58 def AddOneResult(metric, unit): 66 results.current_page, trace_name, unit, 71 results.current_page, trace_name, unit, value=float(metrics[m]),
|
/external/guava/guava/src/com/google/common/collect/ |
GenericMapMaker.java | 125 abstract GenericMapMaker<K0, V0> expiration(long duration, TimeUnit unit); 130 abstract GenericMapMaker<K0, V0> expireAfterWrite(long duration, TimeUnit unit); 136 abstract GenericMapMaker<K0, V0> expireAfterAccess(long duration, TimeUnit unit);
|
Queues.java | 198 * @param timeout how long to wait before giving up, in units of {@code unit} 199 * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter 204 long timeout, TimeUnit unit) throws InterruptedException { 211 long deadline = System.nanoTime() + unit.toNanos(timeout); 238 * @param timeout how long to wait before giving up, in units of {@code unit} 239 * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter 243 int numElements, long timeout, TimeUnit unit) { 245 long deadline = System.nanoTime() + unit.toNanos(timeout);
|
/external/libnl/lib/route/sch/ |
fifo.c | 94 char *unit; local 97 r = nl_cancel_down_bytes(fifo->qf_limit, &unit); 98 nl_dump(p, " limit %.1f%s", r, unit);
|
/bionic/libc/kernel/uapi/linux/ |
uvcvideo.h | 65 __u8 unit; member in struct:uvc_xu_control_query
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
SensorCtsHelper.java | 120 public static <TValue extends Number> double getFrequency(TValue period, TimeUnit unit) { 121 return 1000000000 / (TimeUnit.NANOSECONDS.convert(1, unit) * period.doubleValue()); 127 public static <TValue extends Number> double getPeriod(TValue frequency, TimeUnit unit) { 128 return 1000000000 / (TimeUnit.NANOSECONDS.convert(1, unit) * frequency.doubleValue());
|
/development/ndk/platforms/android-L/include/linux/ |
uvcvideo.h | 65 __u8 unit; member in struct:uvc_xu_control_query
|
/external/chromium_org/extensions/browser/api/system_storage/ |
storage_info_provider.h | 25 // Build StorageUnitInfo struct from StorageInfo instance. The |unit| 28 core_api::system_storage::StorageUnitInfo* unit);
|
/external/chromium_org/ppapi/c/dev/ |
ppb_scrollbar_dev.h | 92 * forward and negative are backward. If "unit" is document then any positive 96 PP_ScrollBy_Dev unit,
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_state.h | 51 int unit, GLboolean swapcols );
|
/external/guava/guava/src/com/google/common/base/ |
Suppliers.java | 136 * @param unit the unit that {@code duration} is expressed in 141 Supplier<T> delegate, long duration, TimeUnit unit) { 142 return new ExpiringMemoizingSupplier<T>(delegate, duration, unit); 154 Supplier<T> delegate, long duration, TimeUnit unit) { 156 this.durationNanos = unit.toNanos(duration);
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
ListeningExecutorService.java | 86 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
|
/external/kernel-headers/original/uapi/linux/ |
uvcvideo.h | 59 __u8 unit; member in struct:uvc_xu_control_query
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_state.h | 51 int unit, GLboolean swapcols );
|
/cts/tests/tests/nativemedia/xa/ |
Android.mk | 1 # Build the unit tests.
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
ShortArrayCodeOutput.java | 128 for (short unit : data) { 129 write(unit);
|
/external/chromium_org/chromeos/network/ |
certificate_pattern.h | 42 void set_organizational_unit(const std::string& unit) { 43 organizational_unit_ = unit;
|
/external/chromium_org/ppapi/api/dev/ |
ppb_scrollbar_dev.idl | 76 * forward and negative are backward. If "unit" is document then any positive 80 [in] PP_ScrollBy_Dev unit,
|
/external/chromium_org/ppapi/thunk/ |
ppb_scrollbar_thunk.cc | 70 void ScrollBy(PP_Resource scrollbar, PP_ScrollBy_Dev unit, int32_t multiplier) { 73 enter.object()->ScrollBy(unit, multiplier);
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_atom_texture.c | 202 texObj = ctx->Texture.Unit[texUnit]._Current; 268 GLuint unit, new_count; local 276 for (unit = 0; unit < max_units; unit++, samplers_used >>= 1) { 280 const GLuint texUnit = prog->SamplerUnits[unit]; 287 *num_textures = unit + 1; 289 else if (samplers_used == 0 && unit >= old_max) { 294 pipe_sampler_view_reference(&(sampler_views[unit]), sampler_view); 403 = ctx->Texture.Unit[texUnit]._Current [all...] |
/external/deqp/modules/glshared/ |
glsRandomShaderCase.hpp | 67 void bindTexture (int unit, const glu::Texture2D* tex2D); 68 void bindTexture (int unit, const glu::TextureCube* texCube);
|
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
ShortArrayCodeOutput.java | 128 for (short unit : data) { 129 write(unit);
|
/external/glide/library/src/main/java/com/bumptech/glide/volley/ |
VolleyRequestFuture.java | 102 public T get(long timeout, TimeUnit unit) 104 return doGet(TimeUnit.MILLISECONDS.convert(timeout, unit));
|
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
Stopwatch.java | 149 * in the desired time unit, with any fraction rounded down. 181 private static String abbreviate(TimeUnit unit) { 182 switch (unit) {
|
/external/llvm/bindings/ocaml/linker/ |
llvm_linker.mli | 26 val link_modules : Llvm.llmodule -> Llvm.llmodule -> Mode.t -> unit
|