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

1 2 3 4 5 6 7 8

  /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/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)
stepsequence.py 32 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/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/ui/file_manager/file_manager/foreground/js/
file_manager_commands.js 708 var steps = {
718 steps.entryPinned);
727 currentEntry, 'filesystem', steps.showError);
731 currentEntry, 'drive', steps.updateUI.bind(this));
739 steps.start();
750 steps.start();
  /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), \
96 $(foreach step,$(steps), \
106 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/samplecode/
SamplePathEffects.cpp 107 int steps = 20; local
113 for (int i = 0; i < steps; i++) {
114 x += dist/steps;
116 if (i == steps/2) {
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayApply.h 88 int32_t steps; member in class:SkApply
  /external/skia/samplecode/
SamplePathEffects.cpp 107 int steps = 20; local
113 for (int i = 0; i < steps; i++) {
114 x += dist/steps;
116 if (i == steps/2) {
  /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/20/
uiautomator.jar 
  /prebuilts/sdk/21/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/recipeassistant/
Recipe.java 78 JSONArray steps = json.getJSONArray(Constants.RECIPE_FIELD_STEPS); local
79 for (int i = 0; i < steps.length(); i++) {
80 JSONObject step = steps.getJSONObject(i);
  /development/samples/wearable/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
Recipe.java 78 JSONArray steps = json.getJSONArray(Constants.RECIPE_FIELD_STEPS); local
79 for (int i = 0; i < steps.length(); i++) {
80 JSONObject step = steps.getJSONObject(i);
  /external/lldb/source/DataFormatters/
LibCxxMap.cpp 131 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 = 0
    [all...]
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/
Swipe.java 64 private static float[][] interpolate(float[] start, float[] end, int steps) {
68 float[][] res = new float[steps][2];
70 for (int i = 1; i < steps + 1; i++) {
71 res[i - 1][0] = start[0] + (end[0] - start[0]) * i / (steps + 2f);
72 res[i - 1][1] = start[1] + (end[1] - start[1]) * i / (steps + 2f);
85 float[][] steps = interpolate(startCoordinates, endCoordinates, SWIPE_EVENT_COUNT); local
86 final int delayBetweenMovements = duration / steps.length;
88 MotionEvent downEvent = MotionEvents.sendDown(uiController, steps[0], precision).down;
90 for (int i = 1; i < steps.length; i++) {
91 if (!MotionEvents.sendMovement(uiController, downEvent, steps[i]))
    [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++) {

Completed in 698 milliseconds

1 2 3 4 5 6 7 8