Searched refs:steps (Results 1 - 25 of 165) sorted by relevance

1234567

/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/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
H A D__init__.py30 from webkitpy.tool.steps.addsvnmimetypeforpng import AddSvnMimetypeForPng
31 from webkitpy.tool.steps.checkstyle import CheckStyle
32 from webkitpy.tool.steps.cleanworkingdirectory import CleanWorkingDirectory
33 from webkitpy.tool.steps.commit import Commit
34 from webkitpy.tool.steps.confirmdiff import ConfirmDiff
35 from webkitpy.tool.steps.discardlocalchanges import DiscardLocalChanges
36 from webkitpy.tool.steps.ensurebugisopenandassigned import EnsureBugIsOpenAndAssigned
37 from webkitpy.tool.steps.ensurelocalcommitifneeded import EnsureLocalCommitIfNeeded
38 from webkitpy.tool.steps.haslanded import HasLanded
39 from webkitpy.tool.steps
[all...]
H A Dmetastep.py29 from webkitpy.tool.steps.abstractstep import AbstractStep
42 def _collect_options_from_steps(steps):
44 for step in steps:
H A Drevertrevision.py29 from webkitpy.tool.steps.abstractstep import AbstractStep
H A Dapplypatch.py31 from webkitpy.tool.steps.abstractstep import AbstractStep
32 from webkitpy.tool.steps.options import Options
H A Dcleanworkingdirectory.py29 from webkitpy.tool.steps.abstractstep import AbstractStep
30 from webkitpy.tool.steps.options import Options
H A Ddiscardlocalchanges.py29 from webkitpy.tool.steps.abstractstep import AbstractStep
30 from webkitpy.tool.steps.options import Options
H A Densurelocalcommitifneeded.py32 from webkitpy.tool.steps.abstractstep import AbstractStep
33 from webkitpy.tool.steps.options import Options
H A Densurebugisopenandassigned.py29 from webkitpy.tool.steps.abstractstep import AbstractStep
40 # Right now this step is only used before PostDiff steps, so this is OK.
H A Dpromptforbugortitle.py29 from webkitpy.tool.steps.abstractstep import AbstractStep
/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/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 Ddownload.py32 from webkitpy.tool import steps namespace
48 steps = [ variable in class:Clean
49 steps.DiscardLocalChanges,
59 steps = [ variable in class:CheckStyleLocal
60 steps.CheckStyle,
H A Dstepsequence.py32 from webkitpy.tool import steps namespace
51 def __init__(self, steps):
52 self._steps = steps or []
56 steps.Options.parent_command,
57 steps.Options.quiet,
/external/chromium_org/chrome/renderer/net/
H A Dnet_error_helper_unittest.cc14 // NetErrorHelperTest cases consist of a string of these steps.
103 void RunTest(const TestStep steps[], int step_count);
114 void NetErrorHelperTest::RunTest(const TestStep steps[], int step_count) { argument
125 switch (steps[i]) {
224 const TestStep steps[] = { local
228 RunTest(steps, arraysize(steps));
232 const TestStep steps[] = { local
236 RunTest(steps, arraysize(steps));
240 const TestStep steps[] = { local
248 const TestStep steps[] = { local
256 const TestStep steps[] = { local
264 const TestStep steps[] = { local
272 const TestStep steps[] = { local
280 const TestStep steps[] = { local
288 const TestStep steps[] = { local
296 const TestStep steps[] = { local
304 const TestStep steps[] = { local
312 const TestStep steps[] = { local
320 const TestStep steps[] = { local
328 const TestStep steps[] = { local
336 const TestStep steps[] = { local
345 const TestStep steps[] = { local
353 const TestStep steps[] = { local
361 const TestStep steps[] = { local
369 const TestStep steps[] = { local
377 const TestStep steps[] = { local
385 const TestStep steps[] = { local
394 const TestStep steps[] = { local
405 const TestStep steps[] = { local
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawable.cpp23 void SkDrawable::setSteps(int steps) { argument
H A DSkDrawable.h25 virtual void setSteps(int steps);
/external/skia/src/animator/
H A DSkDrawable.cpp23 void SkDrawable::setSteps(int steps) { argument
H A DSkDrawable.h25 virtual void setSteps(int steps);
/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/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,
/external/chromium_org/components/autofill/content/browser/
H A Dautocheckout_statistic.h28 // Autocheckout steps that are part of |page_number|.
29 std::vector<AutocheckoutStepType> steps; member in struct:autofill::AutocheckoutStatistic
31 // Time taken for performing |steps|, used for measuring latency.
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSTimingFunctionValue.h86 static PassRefPtr<CSSStepsTimingFunctionValue> create(int steps, bool stepAtStart) argument
88 return adoptRef(new CSSStepsTimingFunctionValue(steps, stepAtStart));
99 CSSStepsTimingFunctionValue(int steps, bool stepAtStart) argument
101 , m_steps(steps)
/external/chromium_org/build/android/
H A Dbb_run_sharded_steps.py7 """Helper script to shard build bot steps and save results to disk.
9 Our buildbot infrastructure requires each slave to run steps serially.
10 This is sub-optimal for android, where these steps can run independently on
14 - First: all steps listed in -s in will be executed in parallel using all
25 The JSON steps file contains a dictionary in the format:
31 The JSON flaky steps file contains a list with step names which results should
74 def _RunStepsPerDevice(steps):
76 for step in steps:
102 def _RunShardedSteps(steps, flaky_steps, devices):
103 assert steps
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DPQTorus.java61 private int steps, radialSamples; field in class:PQTorus
75 * @param steps the steps along the torus.
79 int steps, int radialSamples) {
81 updateGeometry(p, q, radius, width, steps, radialSamples);
101 return steps;
115 steps = capsule.readInt("steps", 0);
126 * @param steps the steps alon
78 PQTorus(float p, float q, float radius, float width, int steps, int radialSamples) argument
129 updateGeometry(float p, float q, float radius, float width, int steps, int radialSamples) argument
[all...]

Completed in 458 milliseconds

1234567