HomeSort by relevance Sort by last modified time
    Searched defs:step (Results 1 - 25 of 323) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/es6/debug-promises/
throw-in-constructor.js 13 var step = 0; variable
19 assertEquals(0, step);
25 step++;
39 assertEquals(1, step);
try-reject-in-constructor.js 13 var step = 0; variable
19 assertEquals(0, step);
25 step++;
41 assertEquals(1, step);
try-throw-reject-in-constructor.js 14 var step = 0; variable
20 assertEquals(0, step);
26 step++;
43 assertEquals(1, step);
  /external/javasqlite/src/main/java/SQLite/
Function.java 43 * Callback for one step in aggregate function.
49 public void step(FunctionContext fc, String args[]); method in interface:Function
52 * Callback for final step in aggregate function.
Vm.java 16 * Internal last error code for compile()/step() methods.
22 * Perform one step on compiled SQLite VM.
30 * while (vm.step(cb)) {
34 * while (vm.step(cb)) {
47 public native boolean step(Callback cb) throws SQLite.Exception; method in class:Vm
Backup.java 41 * Perform a backup step.
47 public boolean step(int n) throws SQLite.Exception { method in class:Backup
56 * Perform the backup in one step.
  /development/ndk/platforms/android-18/samples/gles3jni/src/com/android/gles3jni/
GLES3JNILib.java 29 public static native void step(); method in class:GLES3JNILib
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNILib.java 32 public static native void step(); method in class:GL2JNILib
  /external/chromium_org/ash/shelf/
shelf_navigator.cc 53 int step = (direction == CYCLE_FORWARD) ? 1 : -1; local
56 for (int i = (current_index + step + item_count) % item_count;
57 i != current_index; i = (i + step + item_count) % item_count) {
  /build/core/
cleanbuild.mk 22 # id for each step by taking makefile path, INTERNAL_CLEAN_BUILD_VERSION
26 # $(2): indicate to not use makefile path as part of step id if not empty.
28 define _add-clean-step
45 define add-clean-step
46 $(eval # for build/core/cleanspec.mk, dont use makefile path as part of step id) \
48 $(eval $(call _add-clean-step,$(1),true)),\
49 $(eval $(call _add-clean-step,$(1))))
80 $(foreach step,$(steps), \
81 $(info Clean step: $(INTERNAL_CLEAN_STEP.$(step))) \
    [all...]
  /cts/tests/tests/opengl/src/android/opengl/cts/
GL2JniLibOne.java 25 public static native void step(); method in class:GL2JniLibOne
  /external/apache-http/src/org/apache/http/conn/routing/
BasicRouteDirector.java 59 * Provides the next step.
66 * either the next step to perform, or success, or failure.
75 int step = UNREACHABLE; local
78 step = firstStep(plan);
80 step = proxiedStep(plan, fact);
82 step = directStep(plan, fact);
84 return step;
90 * Determines the first step to establish a route.
94 * @return the first step
104 * Determines the next step to establish a direct connection
    [all...]
  /external/bison/examples/calc++/
location.hh 90 void step () function in class:yy::location
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXSpinButton.cpp 73 void AXSpinButton::step(int amount) function in class:blink::AXSpinButton
79 m_spinButtonElement->step(amount);
117 spinButton->step(1);
119 spinButton->step(-1);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
StepRange.cpp 53 StepRange::StepRange(const Decimal& stepBase, const Decimal& minimum, const Decimal& maximum, const Decimal& step, const StepDescription& stepDescription)
56 , m_step(step.isFinite() ? step : 1)
59 , m_hasStep(step.isFinite())
88 // Rounds inRangeValue to stepBase + N * step.
112 Decimal step = parseToDecimalForNumberType(stepString); local
113 if (!step.isFinite() || step <= 0)
118 step *= stepDescription.stepScaleFactor;
122 step = std::max(step.round(), Decimal(1))
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebDateTimeChooserParams.h 60 // Step value represented in milliseconds for non-month types, and
62 double step; member in struct:blink::WebDateTimeChooserParams
63 // Step-base value represeted in milliseconds, or months.
73 , step(0)
  /external/chromium_org/third_party/angle/tests/perf_tests/
SimpleBenchmark.cpp 39 void SimpleBenchmark::step(float dt, double totalTime) function in class:SimpleBenchmark
92 step(static_cast<float>(deltaTime), elapsedTime);
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
armSP_FFT_CToC_FC32_Radix2_fs_unsafe_s.S 65 #define step r8 define
95 RSB step,pointStep,#8
103 VLD1 dX1,[pSrc],step @// step = -pointStep + 8
110 @// dstStep = step = -pointStep + 8
armSP_FFT_CToC_SC32_Radix2_fs_unsafe_s.S 73 #define step r8 define
103 RSB step,pointStep,#8
111 VLD1 dX1,[pSrc],step @// step = -pointStep + 8
128 VST1 dY1,[pDst],dstStep @// dstStep = step = -pointStep + 8
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/
omxSP_FFTInit_C_FC32.c 57 OMX_INT step; local
105 /* step into the twiddle table for the current order */
106 step = 1 << diff;
122 j = i * step;
omxSP_FFTInit_C_SC32.c 68 OMX_INT Nby2,N,M,diff, step; local
121 step = 1<<diff; /* step into the twiddle table for the current order */
140 j = i*step;
  /external/chromium_org/third_party/skia/gm/
stringart.cpp 43 SkScalar step = angle; local
50 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
51 length*SkScalarSin(step) + center.fY);
54 step += angle;
  /external/chromium_org/third_party/skia/samplecode/
SampleSpiral.cpp 45 SkScalar step = SK_ScalarPI / (55 - i); local
46 SkScalar angle = t * step;
SampleStringArt.cpp 35 SkScalar step = angle; variable
42 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
43 length*SkScalarSin(step) + center.fY);
46 step += angle;
  /external/chromium_org/ui/compositor/
transform_animation_curve_adapter_unittest.cc 42 double step = 1.0 / kSteps; local
45 message << "Step " << i << " of " << kSteps;
48 parent_curve.GetValue(i*step);
50 child_curve.GetValue(i*step);

Completed in 1507 milliseconds

1 2 3 4 5 6 7 8 91011>>