Searched defs:steps (Results 1 - 25 of 75) sorted by relevance

123

/external/clang/test/SemaCXX/
H A Dconstexpr-steps.cpp1 // RUN: %clang_cc1 -std=c++1y -fsyntax-only -verify %s -DMAX=1234 -fconstexpr-steps 1234
2 // RUN: %clang_cc1 -std=c++1y -fsyntax-only -verify %s -DMAX=10 -fconstexpr-steps 10
3 // RUN: %clang -std=c++1y -fsyntax-only -Xclang -verify %s -DMAX=12345 -fconstexpr-steps=12345
5 // This takes a total of n + 4 steps according to our current rules:
11 constexpr bool steps(int n) { function
16 static_assert(steps((MAX - 4)), ""); // ok
17 static_assert(steps((MAX - 3)), ""); // expected-error {{constant}} expected-note{{call}}
/external/chromium_org/v8/test/mjsunit/es6/debug-promises/
H A Dreject-in-constructor.js13 var steps = 0; variable
19 steps++;
38 assertEquals(1, steps);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Dprettydiff.py30 from webkitpy.tool import steps namespace
37 steps = [ variable in class:PrettyDiff
38 steps.ConfirmDiff,
H A Dabstractsequencedcommand.py39 steps = None variable in class:AbstractSequencedCommand
41 self._sequence = StepSequence(self.steps)
H A Dstepsequence.py32 from webkitpy.tool import steps namespace
50 def __init__(self, steps):
51 self._steps = steps or []
55 steps.Options.parent_command,
56 steps.Options.quiet,
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawable.cpp23 void SkDrawable::setSteps(int steps) { argument
H A DSkDisplayApply.h88 int32_t steps; member in class:SkApply
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-260345.js28 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/skia/src/animator/
H A DSkDrawable.cpp23 void SkDrawable::setSteps(int steps) { argument
H A DSkDisplayApply.h88 int32_t steps; member in class:SkApply
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DIteratorTester.java28 * possible sequences of these operations, up to a given number of steps. So, if
29 * the caller specifies to use <i>n</i> steps, a total of <i>3^n</i> tests are
32 * <p>For instance, if <i>steps</i> is 5, one example sequence that will be
68 * @param steps how many operations to test for each tested pair of iterators
71 protected IteratorTester(int steps, argument
74 super(steps, Collections.<E>singleton(null), features, expectedElements,
H A DListIteratorTester.java33 * The items in {@code elementsToInsert} will be repeated if {@code steps} is
42 protected ListIteratorTester(int steps, Iterable<E> elementsToInsert, argument
45 super(steps, elementsToInsert, features, expectedElements,
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_manager_commands.js697 var steps = {
707 steps.entryPinned);
716 currentEntry, 'filesystem', steps.showError);
720 currentEntry, 'external', steps.updateUI.bind(this));
727 steps.start();
738 steps.start();
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSTimingFunctionValue.h73 static PassRefPtrWillBeRawPtr<CSSStepsTimingFunctionValue> create(int steps, StepsTimingFunction::StepAtPosition stepAtPosition) argument
75 return adoptRefWillBeNoop(new CSSStepsTimingFunctionValue(steps, stepAtPosition));
88 CSSStepsTimingFunctionValue(int steps, StepsTimingFunction::StepAtPosition stepAtPosition) argument
90 , m_steps(steps)
/external/droiddriver/src/com/google/android/droiddriver/actions/
H A DSwipeAction.java70 * 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) { argument
109 this(direction, steps, false, 1000L);
115 public SwipeAction(PhysicalDirection direction, int steps, boolean drag, long timeoutMillis) { argument
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, boolea argument
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DSamplePathEffects.cpp107 int steps = 20; local
113 for (int i = 0; i < steps; i++) {
114 x += dist/steps;
116 if (i == steps/2) {
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DOptimizer.java35 /** optional optimizer steps */
88 * @param steps set of optional optimization steps to run
93 TranslationAdvice inAdvice, EnumSet<OptionalStep> steps) {
100 runSsaFormSteps(ssaMeth, steps);
108 steps);
125 * @param steps set of optional optimization steps to run
130 EnumSet<OptionalStep> steps) {
137 EnumSet<OptionalStep> newSteps = steps
91 optimize(RopMethod rmeth, int paramWidth, boolean isStatic, boolean inPreserveLocals, TranslationAdvice inAdvice, EnumSet<OptionalStep> steps) argument
128 optimizeMinimizeRegisters(RopMethod rmeth, int paramWidth, boolean isStatic, EnumSet<OptionalStep> steps) argument
151 runSsaFormSteps(SsaMethod ssaMeth, EnumSet<OptionalStep> steps) argument
240 debugNoRegisterAllocation(RopMethod rmeth, int paramWidth, boolean isStatic, boolean inPreserveLocals, TranslationAdvice inAdvice, EnumSet<OptionalStep> steps) argument
[all...]
/external/skia/samplecode/
H A DSamplePathEffects.cpp107 int steps = 20; local
113 for (int i = 0; i < steps; i++) {
114 x += dist/steps;
116 if (i == steps/2) {
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dblocking_login_browsertest.cc78 const int steps; member in struct:chromeos::BlockingLoginTestParam
285 if (GetParam().steps < 5) {
296 switch (GetParam().steps) {
298 ADD_FAILURE() << "Invalid step number: " << GetParam().steps;
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.h179 static PassRefPtr<StepsTimingFunction> create(int steps, StepAtPosition stepAtPosition) argument
181 return adoptRef(new StepsTimingFunction(steps, stepAtPosition));
214 StepsTimingFunction(int steps, StepAtPosition stepAtPosition) argument
216 , m_steps(steps)
H A DTimingFunctionTest.cpp102 EXPECT_EQ("steps(3, start)", stepTimingCustomStart->toString());
105 EXPECT_EQ("steps(4, middle)", stepTimingCustomMiddle->toString());
108 EXPECT_EQ("steps(5, end)", stepTimingCustomEnd->toString());
242 RefPtr<TimingFunction> steps = StepsTimingFunction::preset(StepsTimingFunction::Start); local
243 steps->range(&start, &end);
249 steps->range(&start, &end);
/external/chromium_org/v8/src/heap/
H A Dgc-tracer.cc239 PrintF(" (+ %.1f ms in %d steps since last GC)",
246 " (+ %.1f ms in %d steps since start of marking, "
378 int steps = 0; local
382 steps += iter->incremental_marking_steps;
387 if (steps == 0) return 0.0;
389 return durations / steps;
/external/lldb/source/DataFormatters/
H A DLibCxxMap.cpp131 size_t steps = 0; local
140 steps++;
141 if (steps > m_max_depth)
161 size_t steps = 0; local
171 steps++;
172 if (steps > m_max_depth)
185 size_t steps = 0; local
192 steps++;
193 if (steps > m_max_depth)
219 size_t steps
[all...]
/external/vixl/src/a64/
H A Ddebugger-a64.h138 inline int steps() { return steps_; } function in class:vixl::Debugger
/external/chromium_org/ui/file_manager/file_manager/background/js/
H A Dtest_util.js283 var steps = {
286 steps.sendEvents();
303 setTimeout(steps.checkQuery, 50);
312 steps.checkQuery();

Completed in 507 milliseconds

123