HomeSort by relevance Sort by last modified time
    Searched defs:steps (Results 26 - 50 of 313) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/sdk/28/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
ContinuousOutputModel.java 38 * stores a copy of all steps information in a sorted collection for
64 * output model handles the steps of all integration phases, the user
78 * is large, if the integration interval is long or if the steps are
107 /** Steps table. */
108 private List<StepInterpolator> steps; field in class:ContinuousOutputModel
114 steps = new ArrayList<StepInterpolator>();
129 if (model.steps.size() == 0) {
133 if (steps.size() == 0) {
149 final StepInterpolator lastInterpolator = steps.get(index);
161 for (StepInterpolator interpolator : model.steps) {
    [all...]
  /developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
Recipe.java 78 JSONArray steps = json.getJSONArray(Constants.RECIPE_FIELD_STEPS); local
79 for (int i = 0; i < steps.length(); i++) {
80 JSONObject step = steps.getJSONObject(i);
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
Recipe.java 78 JSONArray steps = json.getJSONArray(Constants.RECIPE_FIELD_STEPS); local
79 for (int i = 0; i < steps.length(); i++) {
80 JSONObject step = steps.getJSONObject(i);
  /development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
Recipe.java 78 JSONArray steps = json.getJSONArray(Constants.RECIPE_FIELD_STEPS); local
79 for (int i = 0; i < steps.length(); i++) {
80 JSONObject step = steps.getJSONObject(i);
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/
PositionRangeSteps.java 22 package com.github.javaparser.bdd.steps;
51 * Given steps
65 * When steps
79 * Then steps
SharedSteps.java 22 package com.github.javaparser.bdd.steps;
56 * Given steps
70 * When steps
VisitorSteps.java 22 package com.github.javaparser.bdd.steps;
  /external/libdrm/tests/modetest/
cursor.c 68 * Timer driven program loops through these steps to move/enable/disable
129 static const struct cursor_step steps[] = { variable in typeref:struct:cursor_step
148 const struct cursor_step *step = &steps[indx % ARRAY_SIZE(steps)];
  /prebuilts/sdk/16/
uiautomator.jar 
  /prebuilts/sdk/17/
uiautomator.jar 
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 140 int steps = 100; local
149 for (int i = 0; i < steps; i++) {
  /external/droiddriver/src/io/appium/droiddriver/actions/
SwipeAction.java 70 * not behave as expected, you can change steps with {@link #setScrollSteps}.
86 * expected, you can change steps with {@link #setFlingSteps}.
99 private final int steps; field in class:SwipeAction
108 public SwipeAction(PhysicalDirection direction, int steps) {
109 this(direction, steps, false, 1000L);
115 public SwipeAction(PhysicalDirection direction, int steps, boolean drag, long timeoutMillis) {
116 this(direction, steps, drag, timeoutMillis, 0.1F, 0.1F, 0.1F, 0.1F);
122 * @param steps minimum 2; (steps-1) is the number of {@code ACTION_MOVE} that
131 public SwipeAction(PhysicalDirection direction, int steps, boolean drag, long timeoutMillis
    [all...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
Utils.java 148 int steps = 1500; local
150 double[] stddevs = new double[steps];
151 double bestShift = shiftSteps[0]*steps/2;
153 for (int i = 0; i < steps; i++) {
154 stddevs[i] = getShiftError(laserT, touchT, touchY, bestShift + shiftStep * i - shiftStep * steps / 2);
156 bestShift = argmin(stddevs) * shiftStep + bestShift - shiftStep * steps / 2;
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
DragAction.java 308 float[][] steps = interpolate(startCoordinates, endCoordinates); local
309 final int delayBetweenMovements = DRAG_DURATION / steps.length;
317 for (int i = 0; i < steps.length; i++) {
318 if (!MotionEvents.sendMovement(uiController, downEvent, steps[i])) {
  /frameworks/support/wear/src/androidTest/java/androidx/wear/widget/util/
ArcSwipe.java 93 private float[][] interpolate(float[] start, float[] end, int steps, boolean isClockwise) {
104 float[][] res = new float[steps][2];
107 for (int i = 1; i < steps + 1; i++) {
108 pathMeasure.getPosTan((pathLength * i) / (steps + 2f), res[i - 1], mPathTangent);
122 float[][] steps = interpolate(startCoordinates, endCoordinates, SWIPE_EVENT_COUNT, local
124 final int delayBetweenMovements = duration / steps.length;
129 for (int i = 0; i < steps.length; i++) {
130 if (!MotionEvents.sendMovement(uiController, downEvent, steps[i])) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
CacheProcessing.java 71 Vector<CacheStep> steps = new Vector<CacheStep>(); local
78 steps.add(step);
83 steps.add(step);
84 return steps;
144 Vector<CacheStep> steps = CacheStep.buildSteps(filters); local
146 if (steps.size() != mSteps.size()) {
147 mSteps = steps;
158 for (int i = 0; i < steps.size(); i++) {
159 CacheStep newStep = steps.elementAt(i);
  /prebuilts/misc/windows/sdl2/test/
controllermap.c 115 MappingStep steps[] = { local
186 for(s=0; s<SDL_arraysize(steps) && !done;) {
188 step = &steps[s];
238 if (steps[_s].axis == event.jaxis.axis) {
255 if (steps[_s].hat == event.jhat.hat && steps[_s].hat_value == event.jhat.value) {
273 if (steps[_s].button == event.jbutton.button) {
324 if (s == SDL_arraysize(steps) ) {
  /external/libdrm/tests/exynos/
exynos_fimg2d_test.c 330 } steps[] = { local
341 sizeof(steps) / sizeof(struct g2d_step);
408 s = &steps[random() % num_steps];
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.c 351 static int get_down2_length(int length, int steps) {
353 for (s = 0; s < steps; ++s) length = (length + 1) >> 1;
358 int steps = 0; local
361 ++steps;
364 return steps;
369 int steps; local
374 steps = get_down2_steps(length, olength);
376 if (steps > 0) {
384 for (s = 0; s < steps; ++s) {
387 if (s == steps - 1 && proj_filteredlength == olength
656 int steps; local
    [all...]
  /external/python/cpython2/Demo/tkinter/guido/
sortvisu.py 242 nsteps = steps(self.index, index)
256 nsteps = steps(self.index, other.index)
335 def steps(here, there): function
  /external/python/cpython3/Tools/demo/
sortvisu.py 242 nsteps = steps(self.index, index)
256 nsteps = steps(self.index, other.index)
337 def steps(here, there): function
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
dnn_linear_combined_test.py 96 """Counts the number of training steps."""
106 def steps(self): member in class:_StepCounterHook
221 estimator.fit(input_fn=test_data.iris_input_multiclass_fn, steps=10)
224 estimator.evaluate(input_fn=test_data.iris_input_multiclass_fn, steps=10)
277 classifier.fit(input_fn=_input_fn, steps=2)
297 input_fn=test_data.iris_input_multiclass_fn, steps=100,
348 classifier.fit(input_fn=_input_fn_float_label, steps=50)
370 classifier.fit(input_fn=test_data.iris_input_logistic_fn, steps=100)
372 input_fn=test_data.iris_input_logistic_fn, steps=100)
420 classifier.fit(input_fn=_input_fn, steps=100
    [all...]
  /external/v8/src/heap/
gc-tracer.h 110 IncrementalMarkingInfos() : duration(0), longest_step(0), steps(0) {}
113 steps++;
123 steps = 0;
128 int steps; member in struct:v8::internal::GCTracer::IncrementalMarkingInfos
219 // Duration of incremental marking steps for INCREMENTAL_MARK_COMPACTOR.
282 // Compute the overall mark compact speed including incremental steps
394 // Size of incremental marking steps (in bytes) accumulated since the end of
398 // Duration of incremental marking steps since the end of the last mark-

Completed in 1573 milliseconds

12 3 4 5 6 7 8 91011>>