Searched refs:unit (Results 201 - 225 of 870) sorted by relevance

1234567891011>>

/external/chromium_org/extensions/browser/api/system_display/
H A Ddisplay_info_provider.h62 // Update the content of the |unit| obtained for |display| using
66 core_api::system_display::DisplayUnitInfo* unit) = 0;
/external/chromium_org/extensions/browser/api/system_storage/
H A Dstorage_info_provider.h25 // Build StorageUnitInfo struct from StorageInfo instance. The |unit|
28 core_api::system_storage::StorageUnitInfo* unit);
/external/chromium_org/ppapi/c/dev/
H A Dppb_scrollbar_dev.h92 * forward and negative are backward. If "unit" is document then any positive
96 PP_ScrollBy_Dev unit,
/external/chromium_org/third_party/WebKit/PerformanceTests/Canvas/resources/
H A Dcanvas_runner.js11 PerfTestRunner.prepareToMeasureValuesAsync({unit: 'runs/s',
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_state.h51 int unit, GLboolean swapcols );
/external/guava/guava/src/com/google/common/base/
H A DSuppliers.java136 * @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);
140 memoizeWithExpiration( Supplier<T> delegate, long duration, TimeUnit unit) argument
153 ExpiringMemoizingSupplier( Supplier<T> delegate, long duration, TimeUnit unit) argument
/external/guava/guava/src/com/google/common/collect/
H A DQueues.java198 * @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);
203 drain(BlockingQueue<E> q, Collection<? super E> buffer, int numElements, long timeout, TimeUnit unit) argument
242 drainUninterruptibly(BlockingQueue<E> q, Collection<? super E> buffer, int numElements, long timeout, TimeUnit unit) argument
/external/guava/guava/src/com/google/common/util/concurrent/
H A DListeningExecutorService.java86 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
85 invokeAll( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
/external/kernel-headers/original/uapi/linux/
H A Duvcvideo.h59 __u8 unit; member in struct:uvc_xu_control_query
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_state.h51 int unit, GLboolean swapcols );
/external/stlport/
H A DMakefile18 +$(call doinsubdirs,build/test/unit)
/external/chromium_org/chromeos/network/
H A Dcertificate_pattern.h42 void set_organizational_unit(const std::string& unit) { argument
43 organizational_unit_ = unit;
/external/chromium_org/ppapi/api/dev/
H A Dppb_scrollbar_dev.idl76 * forward and negative are backward. If "unit" is document then any positive
80 [in] PP_ScrollBy_Dev unit,
/external/chromium_org/ppapi/thunk/
H A Dppb_scrollbar_thunk.cc70 void ScrollBy(PP_Resource scrollbar, PP_ScrollBy_Dev unit, int32_t multiplier) { argument
73 enter.object()->ScrollBy(unit, multiplier);
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_atom_texture.c268 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);
/external/deqp/modules/glshared/
H A DglsRandomShaderCase.hpp67 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/
H A DShortArrayCodeOutput.java128 for (short unit : data) {
129 write(unit);
/external/glide/library/src/main/java/com/bumptech/glide/volley/
H A DVolleyRequestFuture.java102 public T get(long timeout, TimeUnit unit) argument
104 return doGet(TimeUnit.MILLISECONDS.convert(timeout, unit));
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DStopwatch.java149 * in the desired time unit, with any fraction rounded down.
181 private static String abbreviate(TimeUnit unit) { argument
182 switch (unit) {
/external/llvm/bindings/ocaml/linker/
H A Dllvm_linker.mli26 val link_modules : Llvm.llmodule -> Llvm.llmodule -> Mode.t -> unit
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_texture.c268 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);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi.c147 switch (emit->unit) {
261 unsigned unit )
275 emit.unit = unit;
282 if (unit == PIPE_SHADER_FRAGMENT)
285 if (unit == PIPE_SHADER_VERTEX) {
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_texture.c299 GLuint unit = ffs(enabledUnits) - 1; local
300 struct gl_texture_object *texObj = ctx->Texture.Unit[unit]._Current;
304 enabledUnits &= ~(1 << unit);
319 GLuint unit = ffs(enabledUnits) - 1; local
320 struct gl_texture_object *texObj = ctx->Texture.Unit[unit]._Current;
324 enabledUnits &= ~(1 << unit);
/external/cmockery/cmockery_0_1_2/packages/rpm/
H A Drpm.spec11 Summary: Lightweight C unit testing framework.
26 process of writing unit tests for C applications.
29 Summary: Lightweight C unit testing framework.
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi.c147 switch (emit->unit) {
261 unsigned unit )
275 emit.unit = unit;
282 if (unit == PIPE_SHADER_FRAGMENT)
285 if (unit == PIPE_SHADER_VERTEX) {

Completed in 678 milliseconds

1234567891011>>