/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/ |
D | ContinuousOutputModel.java | 108 private List<StepInterpolator> steps; field in ContinuousOutputModel 114 steps = new ArrayList<StepInterpolator>(); in ContinuousOutputModel() 129 if (model.steps.size() == 0) { in append() 133 if (steps.size() == 0) { in append() 149 final StepInterpolator lastInterpolator = steps.get(index); in append() 161 for (StepInterpolator interpolator : model.steps) { in append() 162 steps.add(interpolator.copy()); in append() 165 index = steps.size() - 1; in append() 166 finalTime = (steps.get(index)).getCurrentTime(); in append() 189 steps.clear(); in reset() [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
D | Optimizer.java | 93 TranslationAdvice inAdvice, EnumSet<OptionalStep> steps) { in optimize() argument 100 runSsaFormSteps(ssaMeth, steps); in optimize() 108 steps); in optimize() 130 EnumSet<OptionalStep> steps) { in optimizeMinimizeRegisters() argument 137 EnumSet<OptionalStep> newSteps = steps.clone(); in optimizeMinimizeRegisters() 152 EnumSet<OptionalStep> steps) { in runSsaFormSteps() argument 155 if (steps.contains(OptionalStep.MOVE_PARAM_COMBINER)) { in runSsaFormSteps() 159 if (steps.contains(OptionalStep.SCCP)) { in runSsaFormSteps() 165 if (steps.contains(OptionalStep.LITERAL_UPGRADE)) { in runSsaFormSteps() 174 steps.remove(OptionalStep.ESCAPE_ANALYSIS); in runSsaFormSteps() [all …]
|
/external/v8/test/mjsunit/regress/ |
D | regress-crbug-260345.js | 28 var steps = 100000; variable 33 return undefined_values[(i / steps) | 0]; 38 for (var i = 0; i < 2 * steps; i++) { 44 assertEquals(steps, test_undefined()); 48 return null_values[(i / steps) | 0]; 53 for (var i = 0; i < 2 * steps; i++) { 59 assertEquals(steps, test_null());
|
/external/droiddriver/src/io/appium/droiddriver/actions/ |
D | SwipeAction.java | 99 private final int steps; field in SwipeAction 108 public SwipeAction(PhysicalDirection direction, int steps) { in SwipeAction() argument 109 this(direction, steps, false, 1000L); in SwipeAction() 115 public SwipeAction(PhysicalDirection direction, int steps, boolean drag, long timeoutMillis) { in SwipeAction() argument 116 this(direction, steps, drag, timeoutMillis, 0.1F, 0.1F, 0.1F, 0.1F); in SwipeAction() 131 public SwipeAction(PhysicalDirection direction, int steps, boolean drag, long timeoutMillis, in SwipeAction() argument 135 this.steps = Math.max(2, steps); in SwipeAction() 189 double xStep = ((double) (endX - startX)) / steps; in perform() 190 double yStep = ((double) (endY - startY)) / steps; in perform() 198 for (int i = 1; i < steps; i++) { in perform() [all …]
|
/external/libxml2/ |
D | pattern.c | 104 xmlStreamStepPtr steps; /* the array of steps */ member 172 xmlStepOpPtr steps; /* ops for computation */ member 214 cur->steps = (xmlStepOpPtr) xmlMalloc(cur->maxStep * sizeof(xmlStepOp)); in xmlNewPattern() 215 if (cur->steps == NULL) { in xmlNewPattern() 243 if (comp->steps != NULL) { in xmlFreePattern() 246 op = &comp->steps[i]; in xmlFreePattern() 253 xmlFree(comp->steps); in xmlFreePattern() 353 temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 * in xmlPatternAdd() 360 comp->steps = temp; in xmlPatternAdd() 363 comp->steps[comp->nbStep].op = op; in xmlPatternAdd() [all …]
|
D | xpath.c | 945 xmlXPathStepOp *steps; /* ops for computation of this expression */ member 1000 cur->steps = (xmlXPathStepOp *) xmlMalloc(cur->maxStep * in xmlXPathNewCompExpr() 1002 if (cur->steps == NULL) { in xmlXPathNewCompExpr() 1007 memset(cur->steps, 0, cur->maxStep * sizeof(xmlXPathStepOp)); in xmlXPathNewCompExpr() 1031 op = &comp->steps[i]; in xmlXPathFreeCompExpr() 1043 op = &comp->steps[i]; in xmlXPathFreeCompExpr() 1051 if (comp->steps != NULL) { in xmlXPathFreeCompExpr() 1052 xmlFree(comp->steps); in xmlXPathFreeCompExpr() 1099 real = (xmlXPathStepOp *) xmlRealloc(comp->steps, in xmlXPathCompExprAdd() 1106 comp->steps = real; in xmlXPathCompExprAdd() [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
D | PQTorus.java | 61 private int steps, radialSamples; field in PQTorus 79 int steps, int radialSamples) { in PQTorus() argument 81 updateGeometry(p, q, radius, width, steps, radialSamples); in PQTorus() 101 return steps; in getSteps() 115 steps = capsule.readInt("steps", 0); in read() 129 …public void updateGeometry(float p, float q, float radius, float width, int steps, int radialSampl… in updateGeometry() argument 134 this.steps = steps; in updateGeometry() 137 final float thetaStep = (FastMath.TWO_PI / steps); in updateGeometry() 139 Vector3f[] torusPoints = new Vector3f[steps]; in updateGeometry() 142 int vertCount = radialSamples * steps; in updateGeometry() [all …]
|
/external/lldb/source/DataFormatters/ |
D | LibCxxMap.cpp | 131 size_t steps = 0; in advance() local 140 steps++; in advance() 141 if (steps > m_max_depth) in advance() 161 size_t steps = 0; in tree_min() local 171 steps++; in tree_min() 172 if (steps > m_max_depth) in tree_min() 185 size_t steps = 0; in tree_max() local 192 steps++; in tree_max() 193 if (steps > m_max_depth) in tree_max() 219 size_t steps = 0; in increment() local [all …]
|
/external/selinux/sepolgen/src/sepolgen/ |
D | util.py | 21 def __init__(self, out, steps=100, indicator='#'): argument 24 self.steps = steps 39 self.blocks = int(round(self.current / float(self.steps) * 100) / 2) 82 p = ConsoleProgressBar(sys.stdout, steps=999)
|
/external/clang/test/SemaCXX/ |
D | constexpr-steps.cpp | 11 constexpr bool steps(int n) { in steps() function 16 static_assert(steps((MAX - 4)), ""); // ok 17 static_assert(steps((MAX - 3)), ""); // expected-error {{constant}} expected-note{{call}}
|
/external/v8/test/mjsunit/es6/debug-promises/ |
D | reject-in-constructor.js | 13 var steps = 0; variable 19 steps++; 38 assertEquals(1, steps);
|
/external/skia/src/animator/ |
D | SkDisplayApply.cpp | 28 SK_PROPERTY(steps), 49 SK_MEMBER_PROPERTY(steps, Int), 59 …restore(false), scope(NULL), steps(-1), transition((Transition) -1), fActive(NULL), /*fCurrentScop… in SkApply() 221 if (steps != -1) in dump() 222 SkDebugf("steps=\"%d\" ", steps); in dump() 395 for (int step = 0; step <= steps; step++) { in enableCreate() 408 step = steps; // quit in enableCreate() 414 step = steps; // quit in enableCreate() 491 case SK_PROPERTY(steps): in getProperty() 493 value->fOperand.fS32 = steps; in getProperty() [all …]
|
D | SkADrawable.cpp | 23 void SkADrawable::setSteps(int steps) { in setSteps() argument
|
/external/opencv/cv/src/ |
D | cvemd.cpp | 753 int steps; in icvNewSolution() local 769 steps = icvFindLoop( state ); in icvNewSolution() 771 if( steps == 0 ) in icvNewSolution() 775 for( i = 1; i < steps; i += 2 ) in icvNewSolution() 787 for( i = 0; i < steps; i += 2 ) in icvNewSolution() 835 int i, steps = 1; in icvFindLoop() local 845 steps = 1; in icvFindLoop() 849 if( (steps & 1) == 1 ) in icvFindLoop() 869 loop[steps++] = new_x; in icvFindLoop() 877 i = steps & 1; in icvFindLoop() [all …]
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
D | debug.rb | 346 def look( steps = 1 ) argument 348 token = super( steps ) 349 @debug_listener.look( steps, token ) 353 def peek( steps = 1 ) argument 354 look( steps ).type
|
/external/v8/test/webkit/ |
D | date-set-to-nan.js | 73 function testDateFunctionWithValueNoRecoverNaN(functionNameRoot, steps) argument 84 var setResult = (1 == steps) ? date["set" + functionNameRoot](setValue) 85 : ((2 == steps) ? date["set" + functionNameRoot](setValue, 0) 86 : ((3 == steps) ? date["set" + functionNameRoot](setValue, 0, 0) 89 testFailed("date(NaN).set" + functionNameRoot + "(" + setValue + params[steps - 1] 99 + "(arg0" + params[steps - 1] + ")");
|
/external/skia/samplecode/ |
D | SamplePathEffects.cpp | 104 int steps = 20; in onOnceBeforeDraw() local 110 for (int i = 0; i < steps; i++) { in onOnceBeforeDraw() 111 x += dist/steps; in onOnceBeforeDraw() 113 if (i == steps/2) { in onOnceBeforeDraw()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_resize.c | 427 static int get_down2_length(int length, int steps) { in get_down2_length() argument 429 for (s = 0; s < steps; ++s) in get_down2_length() 435 int steps = 0; in get_down2_steps() local 438 ++steps; in get_down2_steps() 441 return steps; in get_down2_steps() 449 int steps; in resize_multistep() local 454 steps = get_down2_steps(length, olength); in resize_multistep() 456 if (steps > 0) { in resize_multistep() 469 for (s = 0; s < steps; ++s) { in resize_multistep() 472 if (s == steps - 1 && proj_filteredlength == olength) in resize_multistep() [all …]
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | IteratorTester.java | 72 protected IteratorTester(int steps, in IteratorTester() argument 75 super(steps, Collections.<E>singleton(null), features, expectedElements, in IteratorTester()
|
D | ListIteratorTester.java | 43 protected ListIteratorTester(int steps, Iterable<E> elementsToInsert, in ListIteratorTester() argument 46 super(steps, elementsToInsert, features, expectedElements, in ListIteratorTester()
|
/external/libdrm/tests/modetest/ |
D | cursor.c | 129 static struct cursor_step steps[] = { variable 148 struct cursor_step *step = &steps[indx % ARRAY_SIZE(steps)]; in cursor_thread_func()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/ |
D | DirectSearchOptimizer.java | 139 public void setStartConfiguration(final double[] steps) in setStartConfiguration() argument 143 final int n = steps.length; in setStartConfiguration() 148 if (steps[j] == 0.0) { in setStartConfiguration() 152 System.arraycopy(steps, 0, vertexI, 0, j + 1); in setStartConfiguration()
|
/external/skia/bench/ |
D | SKPAnimationBench.cpp | 14 const SkIRect& clip, SkMatrix animationMatrix, int steps) in SKPAnimationBench() argument 16 , fSteps(steps) in SKPAnimationBench()
|
/external/selinux/libsepol/cil/src/ |
D | cil_verify.c | 616 int steps = 0; in __cil_verify_user() local 627 if (steps == limit) { in __cil_verify_user() 628 steps = 0; in __cil_verify_user() 634 steps++; in __cil_verify_user() 656 int steps = 0; in __cil_verify_role() local 667 if (steps == limit) { in __cil_verify_role() 668 steps = 0; in __cil_verify_role() 674 steps++; in __cil_verify_role() 687 int steps = 0; in __cil_verify_type() local 698 if (steps == limit) { in __cil_verify_type() [all …]
|
/external/skia/site/user/quick/ |
D | ios.md | 7 _These steps should closely follow building on Mac OS X. Those steps seem slightly out of date._ 15 To build SampleApp on XCode 4.5 using the IDE these steps should work:
|