/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/ |
runPatchCommand.pl | 31 # Unit tests of VCSUtils::runPatchCommand(). 66 +If it did, some unit tests don't seem to be working quite right:
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_tex.h | 50 extern void radeonTexUpdateParameters(struct gl_context *ctx, GLuint unit);
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texstate.h | 40 * Return pointer to current texture unit. 41 * This the texture unit set by glActiveTexture(), not glClientActiveTexture(). 46 ASSERT(ctx->Texture.CurrentUnit < Elements(ctx->Texture.Unit)); 47 return &(ctx->Texture.Unit[ctx->Texture.CurrentUnit]); 55 _mesa_print_texunit_state( struct gl_context *ctx, GLuint unit );
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
CheckedFuture.java | 75 V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X;
|
AbstractScheduledService.java | 114 * @param unit the time unit of the initialDelay and delay parameters 117 final TimeUnit unit) { 122 return executor.scheduleWithFixedDelay(task, initialDelay, delay, unit); 133 * @param unit the time unit of the initialDelay and period parameters 136 final TimeUnit unit) { 141 return executor.scheduleAtFixedRate(task, initialDelay, period, unit); 359 currentFuture = executor.schedule(this, schedule.delay, schedule.unit); 410 private final TimeUnit unit; [all...] |
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/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_tex.h | 50 extern void radeonTexUpdateParameters(struct gl_context *ctx, GLuint unit);
|
/external/mesa3d/src/mesa/main/ |
texstate.h | 40 * Return pointer to current texture unit. 41 * This the texture unit set by glActiveTexture(), not glClientActiveTexture(). 46 ASSERT(ctx->Texture.CurrentUnit < Elements(ctx->Texture.Unit)); 47 return &(ctx->Texture.Unit[ctx->Texture.CurrentUnit]); 55 _mesa_print_texunit_state( struct gl_context *ctx, GLuint unit );
|
/build/tools/droiddoc/templates-ds/assets/ |
android-developer-docs.css | 1357 .g-tpl-240 .g-unit, 1358 .g-unit .g-tpl-240 .g-unit, 1359 .g-unit .g-unit .g-tpl-240 .g-unit { 1365 .g-unit .g-unit .g-tpl-240 .g-first, 1366 .g-unit .g-tpl-240 .g-first, 1374 .g-tpl-240-alt .g-unit, [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-docs.css | 1357 .g-tpl-240 .g-unit, 1358 .g-unit .g-tpl-240 .g-unit, 1359 .g-unit .g-unit .g-tpl-240 .g-unit { 1365 .g-unit .g-unit .g-tpl-240 .g-first, 1366 .g-unit .g-tpl-240 .g-first, 1374 .g-tpl-240-alt .g-unit, [all...] |
/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 | 54 PerfTestRunner.computeStatistics = function (times, unit) { 80 result.unit = unit || "ms"; 85 PerfTestRunner.logStatistics = function (values, unit, title) { 86 var statistics = this.computeStatistics(values, unit); 90 this.log("values " + statistics.values.join(", ") + " " + statistics.unit); 91 this.log("avg " + statistics.mean + " " + statistics.unit); 92 this.log("median " + statistics.median + " " + statistics.unit); 93 this.log("stdev " + statistics.stdev + " " + statistics.unit); 94 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...] |
/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:blink::MediaQueryExpValue 56 , 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-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,
|