HomeSort by relevance Sort by last modified time
    Searched defs:steps (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /external/clang/test/SemaCXX/
constexpr-steps.cpp 1 // 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/components/autofill/content/browser/
autocheckout_statistic.h 28 // 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/Tools/Scripts/webkitpy/tool/commands/
prettydiff.py 30 from webkitpy.tool import steps namespace
37 steps = [ variable in class:PrettyDiff
38 steps.ConfirmDiff,
abstractsequencedcommand.py 39 steps = None variable in class:AbstractSequencedCommand
41 self._sequence = StepSequence(self.steps)
download.py 32 from webkitpy.tool import steps namespace
48 steps = [ variable in class:Clean
49 steps.DiscardLocalChanges,
59 steps = [ variable in class:CheckStyleLocal
60 steps.CheckStyle,
stepsequence.py 32 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/v8/test/mjsunit/regress/
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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
steps_unittest.py 35 from webkitpy.tool import steps namespace
58 self._run_step(steps.PromptForBugOrTitle, tool=tool)
67 step = steps.RunTests(MockTool(log_executive=True), mock_options)
71 step = steps.RunTests(tool, mock_options)
  /build/core/
cleanbuild.mk 21 # Builds up a list of clean steps. Creates a unique
52 # Defines INTERNAL_CLEAN_BUILD_VERSION and the individual clean steps.
71 # don't even bother with the clean steps.
76 # The major clean version is correct. Find the list of clean steps
78 steps := \ macro
80 $(foreach step,$(steps), \
84 steps := macro
  /dalvik/dx/src/com/android/dx/dex/cf/
OptimizerOptions.java 120 * some optional steps. Results are printed to stderr.
127 * @param rmeth {@code non-null;} method with all optimization steps run.
132 EnumSet<Optimizer.OptionalStep> steps; local
134 steps = EnumSet.allOf(Optimizer.OptionalStep.class);
137 steps.remove(Optimizer.OptionalStep.CONST_COLLECTOR);
141 paramSize, isStatic, args.localInfo, advice, steps);
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayApply.h 88 int32_t steps; member in class:SkApply
  /external/droiddriver/src/com/google/android/droiddriver/actions/
SwipeAction.java 55 int steps = 50; local
90 double xStep = ((double) (endX - startX)) / steps;
91 double yStep = ((double) (endY - startY)) / steps;
98 for (int i = 1; i < steps; i++) {
  /external/skia/src/animator/
SkDisplayApply.h 88 int32_t steps; member in class:SkApply
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Histogram.java 37 int steps = (h + step - 1) / step; local
42 mScript.set_gSteps(steps);
45 tb.setX(256).setY(steps);
  /prebuilts/sdk/18/
uiautomator.jar 
  /prebuilts/sdk/19/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 
  /external/chromium_org/chrome/browser/resources/file_manager/js/
file_copy_manager.js 780 var steps = {
801 steps.onEntryFound, steps.onPathError);
803 steps.onEntryFound, steps.onPathError);
814 steps.onSourceEntriesFound();
819 steps.onTargetEntryFound, steps.onPathError);
835 steps.start();
    [all...]
file_manager_commands.js 438 var steps = {
448 steps.entryPinned);
457 currentEntry, 'filesystem', steps.showError);
461 currentEntry, 'drive', steps.updateUI.bind(this));
469 steps.start();
480 steps.start();
util.js 133 var steps = {
138 steps.tallyEntry(entries[i], parentPath);
140 steps.areWeThereYet();
155 steps.areWeThereYet();
158 steps.tallyEntry(inEntry, originalSourcePath);
166 steps.areWeThereYet();
192 steps.start();
538 var STEPS = [0,
557 if (bytes < STEPS[1]) {
562 if (bytes < STEPS[2])
    [all...]
  /prebuilts/sdk/16/
uiautomator.jar 
  /prebuilts/sdk/17/
uiautomator.jar 
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 139 int steps = 100; local
147 for (int i = 0; i < steps; i++) {
  /external/chromium/chrome/browser/safe_browsing/
filter_false_positive_perftest.cc 22 // --filter-steps=<integer>
29 // --filter-steps: The number of iterations to run, with each iteration
85 const char kFilterSteps[] = "filter-steps";
305 int steps = 1; local
308 &steps));
311 int stop = start + steps;
  /external/chromium_org/chrome/renderer/net/
net_error_helper_unittest.cc 14 // 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) {
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...]

Completed in 556 milliseconds

1 2 3 4 5 6