/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/autotest/client/tests/kvm/ |
D | guest-os.cfg.sample | 102 steps = steps/Fedora-8-i386.steps 121 steps = steps/Fedora-8-64.steps 139 steps = steps/Fedora-9-i386.steps 157 steps = steps/Fedora-9-64.steps 202 steps = steps/Fedora-11-32.steps 352 steps = steps/RHEL-3.9-i386.steps 374 steps = steps/RHEL-3.9-x86_64.steps 395 steps = steps/RHEL-4.7-i386.steps 418 steps = steps/RHEL-4.7-x86_64.steps 483 steps = steps/RHEL-5.3-i386.steps [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 …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/emr/ |
D | connection.py | 328 def add_jobflow_steps(self, jobflow_id, steps): argument 337 if not isinstance(steps, list): 338 steps = [steps] 343 step_args = [self._build_step_args(step) for step in steps] 406 steps=[], argument 544 steps.insert(0, debugging_step) 547 if steps: 548 step_args = [self._build_step_args(step) for step in steps] 662 def _build_step_list(self, steps): argument 663 if not isinstance(steps, list): [all …]
|
D | emrobject.py | 183 self.steps = None 189 self.steps = ResultSet([('member', Step)]) 190 return self.steps 487 self.steps = None 491 self.steps = ResultSet([('member', StepSummary)]) 492 return self.steps
|
/external/autotest/client/virt/ |
D | virt_step_editor.py | 900 self.steps = [] 1051 if not self.steps: 1059 if not self.steps: 1064 self.set_step(len(self.steps) - 1) 1067 if not self.steps: 1073 if self.steps: 1074 index = index % len(self.steps) 1078 if not self.steps: 1084 if self.steps: 1085 index = index % len(self.steps) [all …]
|
/external/opencv3/modules/photo/src/ |
D | arrays.hpp | 136 int steps[4]; member 140 steps[0] = n2*n3*n4; in init_steps() 141 steps[1] = n3*n4; in init_steps() 142 steps[2] = n4; in init_steps() 143 steps[3] = 1; in init_steps() 178 return steps[dimension]; in step_size()
|
/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/chromium-trace/catapult/experimental/buildbot/ |
D | query.py | 24 steps = build.steps 25 if not BENCHMARK_NAME in steps: 28 step = steps[BENCHMARK_NAME]
|
/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(nullptr), steps(-1), transition((Transition) -1), fActive(nullptr), /*fCurre… 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 …]
|
/external/selinux/sepolgen/src/sepolgen/ |
D | util.py | 34 def __init__(self, out, steps=100, indicator='#'): argument 37 self.steps = steps 52 self.blocks = int(round(self.current / float(self.steps) * 100) / 2) 177 p = ConsoleProgressBar(sys.stdout, steps=999)
|
/external/chromium-trace/catapult/catapult_build/ |
D | build_steps.py | 177 steps = [] 194 steps.append(step) 196 json.dump(steps, outfile)
|
/external/opencv3/modules/imgproc/src/ |
D | emd.cpp | 730 int steps; in icvNewSolution() local 746 steps = icvFindLoop( state ); in icvNewSolution() 748 if( steps == 0 ) in icvNewSolution() 752 for( i = 1; i < steps; i += 2 ) in icvNewSolution() 764 for( i = 0; i < steps; i += 2 ) in icvNewSolution() 812 int i, steps = 1; in icvFindLoop() local 822 steps = 1; in icvFindLoop() 826 if( (steps & 1) == 1 ) in icvFindLoop() 846 loop[steps++] = new_x; in icvFindLoop() 854 i = steps & 1; in icvFindLoop() [all …]
|
/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/chromium-trace/catapult/catapult_build/perfbot_stats/ |
D | chrome_perf_step_timings.py | 135 steps = results['steps'] 136 steps.sort() # to group tests and their references together. 137 for step in steps:
|
/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 | 103 int steps = 20; in onOnceBeforeDraw() local 109 for (int i = 0; i < steps; i++) { in onOnceBeforeDraw() 110 x += dist/steps; in onOnceBeforeDraw() 112 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/v8/test/mjsunit/harmony/ |
D | destructuring-assignment.js | 159 var steps = []; 162 steps.push("compute name: " + name); 166 steps.push("load: " + descr + " > " + value); 170 steps.push("store: " + descr + " = " + value); 204 ], steps); 206 steps = []; 231 ], steps);
|
/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()
|