/external/chromium_org/third_party/libxslt/libxslt/ |
D | pattern.c | 113 xsltStepOpPtr steps; /* ops for computation */ member 155 cur-> steps = (xsltStepOpPtr) xmlMalloc(sizeof(xsltStepOp) * in xsltNewCompMatch() 157 if (cur->steps == NULL) { in xsltNewCompMatch() 187 op = &comp->steps[i]; in xsltFreeCompMatch() 197 xmlFree(comp->steps); in xsltFreeCompMatch() 235 comp->steps[ix].previousExtra += style->extrasNr; in xsltNormalizeCompSteps() 236 comp->steps[ix].indexExtra += style->extrasNr; in xsltNormalizeCompSteps() 237 comp->steps[ix].lenExtra += style->extrasNr; in xsltNormalizeCompSteps() 299 tmp = (xsltStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 * in xsltCompMatchAdd() 309 comp->steps = tmp; in xsltCompMatchAdd() [all …]
|
/external/chromium_org/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/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/droiddriver/src/com/google/android/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/chromium_org/third_party/libxml/src/ |
D | pattern.c | 101 xmlStreamStepPtr steps; /* the array of steps */ member 169 xmlStepOpPtr steps; /* ops for computation */ member 211 cur->steps = (xmlStepOpPtr) xmlMalloc(cur->maxStep * sizeof(xmlStepOp)); in xmlNewPattern() 212 if (cur->steps == NULL) { in xmlNewPattern() 240 if (comp->steps != NULL) { in xmlFreePattern() 243 op = &comp->steps[i]; in xmlFreePattern() 250 xmlFree(comp->steps); in xmlFreePattern() 349 temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 * in xmlPatternAdd() 356 comp->steps = temp; in xmlPatternAdd() 359 comp->steps[comp->nbStep].op = op; in xmlPatternAdd() [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_org/ui/events/test/ |
D | event_generator.cc | 286 int steps) { in GestureScrollSequence() argument 287 GestureScrollSequenceWithCallback(start, end, step_delay, steps, in GestureScrollSequence() 295 int steps, in GestureScrollSequenceWithCallback() argument 304 int dx = (end.x() - start.x()) / steps; in GestureScrollSequenceWithCallback() 305 int dy = (end.y() - start.y()) / steps; in GestureScrollSequenceWithCallback() 307 for (int i = 0; i < steps; ++i) { in GestureScrollSequenceWithCallback() 324 int steps, in GestureMultiFingerScroll() argument 330 count, start, delays, event_separation_time_ms, steps, move_x, move_y); in GestureMultiFingerScroll() 338 int steps, in GestureMultiFingerScrollWithDelays() argument 344 CHECK_GT(steps, 0); in GestureMultiFingerScrollWithDelays() [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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
D | stepsequence.py | 32 from webkitpy.tool import steps 50 def __init__(self, steps): argument 51 self._steps = steps or [] 55 steps.Options.parent_command, 56 steps.Options.quiet,
|
D | prettydiff.py | 30 from webkitpy.tool import steps 37 steps = [ variable in PrettyDiff 38 steps.ConfirmDiff,
|
/external/chromium_org/build/android/pylib/perf/ |
D | setup.py | 49 if test_options.steps: 50 with file(test_options.steps, 'r') as f: 51 steps = json.load(f) 54 assert steps['version'] == 1 55 return steps
|
/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_org/third_party/WebKit/Source/core/css/ |
D | CSSTimingFunctionValue.h | 73 …static PassRefPtrWillBeRawPtr<CSSStepsTimingFunctionValue> create(int steps, StepsTimingFunction::… in create() argument 75 return adoptRefWillBeNoop(new CSSStepsTimingFunctionValue(steps, stepAtPosition)); in create() 88 CSSStepsTimingFunctionValue(int steps, StepsTimingFunction::StepAtPosition stepAtPosition) in CSSStepsTimingFunctionValue() argument 90 , m_steps(steps) in CSSStepsTimingFunctionValue()
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/ |
D | manual.js | 33 for (var j = 0; j < run.tests[i].steps.length; ++j) { 36 step.setAttribute('class', classes[run.tests[i].steps[j].success]); 38 step.children[0].textContent = run.tests[i].steps[j].messages[0]; 39 for (var k = 1; k < run.tests[i].steps[j].messages.length; ++k) { 41 step.children[k].textContent = run.tests[i].steps[j].messages[k];
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
D | TracingModel.js | 612 var steps = this._openAsyncEvents[key]; 613 if (!steps) 615 var startEvent = steps[0]; 617 steps.push(syntheticEndEvent); 631 var steps = this._openAsyncEvents[key]; 635 if (steps) { 639 steps = [WebInspector.TracingModel.Event.fromPayload(payload, thread)]; 640 this._openAsyncEvents[key] = steps; 641 thread._addAsyncEventSteps(steps); 644 if (!steps) { [all …]
|
/external/chromium_org/v8/test/mjsunit/es6/debug-promises/ |
D | reject-in-constructor.js | 13 var steps = 0; variable 19 steps++; 38 assertEquals(1, steps);
|
/external/chromium_org/content/browser/renderer_host/input/ |
D | input_router_impl_perftest.cc | 110 Gestures BuildScrollSequence(size_t steps, in BuildScrollSequence() argument 114 const gfx::Vector2dF delta = ScaleVector2d(distance, 1.f / steps); in BuildScrollSequence() 125 for (size_t i = 0; i < steps; ++i) { in BuildScrollSequence() 137 Touches BuildTouchSequence(size_t steps, in BuildTouchSequence() argument 141 const gfx::Vector2dF delta = ScaleVector2d(distance, 1.f / steps); in BuildTouchSequence() 156 for (size_t i = 0; i < steps; ++i) { in BuildTouchSequence() 302 size_t steps, in SimulateTouchAndScrollEventSequence() argument 308 Gestures gestures = BuildScrollSequence(steps, origin, distance); in SimulateTouchAndScrollEventSequence() 309 Touches touches = BuildTouchSequence(steps, origin, distance); in SimulateTouchAndScrollEventSequence()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
D | DOMPresentationUtils.js | 202 var steps = []; 208 steps.push(step); 214 steps.reverse(); 215 return steps.join(" > "); 391 var steps = []; 397 steps.push(step); 403 steps.reverse(); 404 return (steps.length && steps[0].optimized ? "" : "/") + steps.join("/");
|
/external/chromium_org/third_party/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 …]
|
/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 …]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/ |
D | __init__.py | 30 from webkitpy.tool.steps.confirmdiff import ConfirmDiff 31 from webkitpy.tool.steps.options import Options
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
D | vp9_resize.c | 423 static int get_down2_length(int length, int steps) { in get_down2_length() argument 425 for (s = 0; s < steps; ++s) in get_down2_length() 431 int steps = 0; in get_down2_steps() local 434 ++steps; in get_down2_steps() 437 return steps; in get_down2_steps() 445 int steps; in resize_multistep() local 450 steps = get_down2_steps(length, olength); in resize_multistep() 452 if (steps > 0) { in resize_multistep() 465 for (s = 0; s < steps; ++s) { in resize_multistep() 468 if (s == steps - 1 && proj_filteredlength == olength) in resize_multistep()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_resize.c | 423 static int get_down2_length(int length, int steps) { in get_down2_length() argument 425 for (s = 0; s < steps; ++s) in get_down2_length() 431 int steps = 0; in get_down2_steps() local 434 ++steps; in get_down2_steps() 437 return steps; in get_down2_steps() 445 int steps; in resize_multistep() local 450 steps = get_down2_steps(length, olength); in resize_multistep() 452 if (steps > 0) { in resize_multistep() 465 for (s = 0; s < steps; ++s) { in resize_multistep() 468 if (s == steps - 1 && proj_filteredlength == olength) in resize_multistep()
|
/external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/ |
D | metadata_dispatcher.js | 165 self.vlog('nextStep: ' + steps[currentStep + 1].name); 166 steps[++currentStep].apply(self, arguments); 172 self.error(fileURL, stepName || steps[currentStep].name, err.toString(), 176 var 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
|