Searched refs:step (Results 1 - 25 of 819) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeDemo.h3 bool DrawEdgeDemo(SkCanvas* canvas, int step, bool useOld);
/external/skia/experimental/Intersection/
H A DEdgeDemo.h3 bool DrawEdgeDemo(SkCanvas* canvas, int step, bool useOld);
/external/chromium_org/chrome/browser/resources/chromeos/first_run/
H A Dstep.css7 .step {
13 .step h1 {
18 .step p {
22 .step button.blue-button {
26 .step button.white-button {
30 .step .controls button {
34 .step .controls button:first-of-type {
38 .step .controls button:last-of-type {
H A Dstep_bubble.css7 .step.bubble {
16 .step.bubble h1 {
24 .step.bubble p {
30 .step.bubble p + p {
34 .step.bubble .controls {
42 .step.bubble .controls button {
49 .step.bubble.hidden {
/external/chromium_org/build/android/buildbot/
H A Dbb_annotations.py8 """Adds a link with name |label| linking to |url| to current buildbot step.
18 """Appends |msg| to the current buildbot step text.
36 """Marks the current step as failed."""
41 """Marks the current step with a warning."""
45 def PrintNamedStep(step):
46 print '@@@BUILD_STEP %s@@@' % step
/external/libvpx/libvpx/test/
H A Ddct16x16_test.cc84 double step[16]; local
88 // step 1
89 step[ 0] = input[0] + input[15];
90 step[ 1] = input[1] + input[14];
91 step[ 2] = input[2] + input[13];
92 step[ 3] = input[3] + input[12];
93 step[ 4] = input[4] + input[11];
94 step[ 5] = input[5] + input[10];
95 step[ 6] = input[6] + input[ 9];
96 step[
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimateProperties.h17 SK_PROPERTY(step),
/external/chromium_org/v8/test/mjsunit/es6/debug-promises/
H A Dthrow-in-constructor.js13 var step = 0; variable
19 assertEquals(0, step);
25 step++;
39 assertEquals(1, step);
H A Dtry-reject-in-constructor.js13 var step = 0; variable
19 assertEquals(0, step);
25 step++;
41 assertEquals(1, step);
H A Dtry-throw-reject-in-constructor.js14 var step = 0; variable
20 assertEquals(0, step);
26 step++;
43 assertEquals(1, step);
/external/skia/src/animator/
H A DSkAnimateProperties.h17 SK_PROPERTY(step),
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderVTTCue.cpp69 bool RenderVTTCue::initializeLayoutParameters(InlineFlowBox* firstLineBox, LayoutUnit& step, LayoutUnit& position) argument
75 // 1. Horizontal: Let step be the height of the first line box in boxes.
76 // Vertical: Let step be the width of the first line box in boxes.
77 step = m_cue->getWritingDirection() == VTTCue::Horizontal ? firstLineBox->height() : firstLineBox->width();
79 // 2. If step is zero, then jump to the step labeled done positioning below.
80 if (!step)
90 // 5. Let position be the result of multiplying step and line position.
91 position = step * linePosition;
94 // bounding box of the boxes in boxes, then increase position by step
178 moveBoxesByStep(LayoutUnit step) argument
193 switchDirection(bool& switched, LayoutUnit& step) argument
216 LayoutUnit step; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_dct.c30 tran_high_t step[4]; local
33 step[0] = input[0] + input[3];
34 step[1] = input[1] + input[2];
35 step[2] = input[1] - input[2];
36 step[3] = input[0] - input[3];
38 temp1 = (step[0] + step[1]) * cospi_16_64;
39 temp2 = (step[0] - step[1]) * cospi_16_64;
42 temp1 = step[
75 tran_high_t step[4]; // canbe16 local
1053 tran_high_t step[32]; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c28 int16_t step[4]; local
31 step[0] = input[0] + input[3];
32 step[1] = input[1] + input[2];
33 step[2] = input[1] - input[2];
34 step[3] = input[0] - input[3];
36 temp1 = (step[0] + step[1]) * cospi_16_64;
37 temp2 = (step[0] - step[1]) * cospi_16_64;
40 temp1 = step[
61 /*canbe16*/ int step[4]; local
1010 int step[32]; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DUndoStack.cpp55 void UndoStack::registerUndoStep(PassRefPtrWillBeRawPtr<UndoStep> step) argument
61 m_undoStack.append(step);
64 void UndoStack::registerRedoStep(PassRefPtrWillBeRawPtr<UndoStep> step) argument
66 m_redoStack.append(step);
80 UndoStep* step = stack.first().get(); local
81 if (!step->belongsTo(frame))
82 newStack.append(step);
102 RefPtrWillBeRawPtr<UndoStep> step(back->get());
104 step->unapply();
113 RefPtrWillBeRawPtr<UndoStep> step(bac
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementSyncMicrotaskQueue.cpp10 void CustomElementSyncMicrotaskQueue::enqueue(PassOwnPtrWillBeRawPtr<CustomElementMicrotaskStep> step) argument
12 m_queue.append(step);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDateTimeChooserParams.h62 double step; member in struct:blink::WebDateTimeChooserParams
73 , step(0)
/external/chromium_org/third_party/polymer/components-chromium/core-range/
H A Dcore-range-extracted.js35 * @attribute step
39 step: 1,
51 'value min max step': 'update'
63 return this.step ? (Math.round(value / this.step) / (1 / this.step)) : value;
/external/chromium_org/third_party/polymer/components-chromium/paper-progress/
H A Dpaper-progress-extracted.js14 step: 0,
/external/chromium_org/chrome/browser/resources/chromeos/first_run/app/
H A Dstyle.css12 .step.dialog {
21 .step.dialog h1 {
27 .step.dialog p {
33 .step.dialog .controls {
38 .step.dialog .controls button {
45 .step.dialog .window-header {
54 .step.dialog .topbutton-bar {
59 .step.dialog .topbutton-wrapper {
65 .step.dialog .topbutton-bar button {
71 .step
[all...]
/external/chromium_org/chrome/browser/ui/translate/
H A Dtranslate_bubble_factory.cc14 translate::TranslateStep step,
19 window->ShowTranslateBubble(web_contents, step, error_type, false);
30 translate::TranslateStep step,
34 window, web_contents, step, error_type);
38 ShowDefault(window, web_contents, step, error_type);
12 ShowDefault(BrowserWindow* window, content::WebContents* web_contents, translate::TranslateStep step, translate::TranslateErrors::Type error_type) argument
28 Show(BrowserWindow* window, content::WebContents* web_contents, translate::TranslateStep step, translate::TranslateErrors::Type error_type) argument
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen.css8 .step {
13 .step.animated:not(.faded) {
19 .step.hidden {
29 .step.right {
33 .step.left {
37 .step.fullscreen {
45 .step-controls {
51 padding-right: 34px; /* Double the padding of .step */
56 html[dir=rtl] .step-controls {
61 .animation .step
[all...]
/external/chromium_org/third_party/libwebp/dsp/
H A Ddec_mips32.c28 static WEBP_INLINE void do_filter2(uint8_t* p, int step) { argument
29 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step];
33 p[-step] = VP8kclip1[p0 + a2];
38 static WEBP_INLINE void do_filter4(uint8_t* p, int step) { argument
39 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step];
44 p[-2 * step]
51 do_filter6(uint8_t* p, int step) argument
66 hev(const uint8_t* p, int step, int thresh) argument
71 needs_filter(const uint8_t* p, int step, int thresh) argument
76 needs_filter2(const uint8_t* p, int step, int t, int it) argument
[all...]
/external/webp/src/dsp/
H A Ddec_mips32.c28 static WEBP_INLINE void do_filter2(uint8_t* p, int step) { argument
29 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step];
33 p[-step] = VP8kclip1[p0 + a2];
38 static WEBP_INLINE void do_filter4(uint8_t* p, int step) { argument
39 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step];
44 p[-2 * step]
51 do_filter6(uint8_t* p, int step) argument
66 hev(const uint8_t* p, int step, int thresh) argument
71 needs_filter(const uint8_t* p, int step, int thresh) argument
76 needs_filter2(const uint8_t* p, int step, int t, int it) argument
[all...]
/external/skia/src/effects/
H A DSkCornerPathEffect.cpp20 SkPoint* step) {
23 step->set(b.fX - a.fX, b.fY - a.fY);
26 step->scale(SK_ScalarHalf);
29 step->scale(SkScalarDiv(radius, dist));
46 SkVector firstStep, step; local
71 bool drawSegment = ComputeStep(pts[0], pts[1], fRadius, &step);
74 dst->moveTo(moveTo + step);
77 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX,
78 pts[0].fY + step.fY);
81 dst->lineTo(pts[1].fX - step
19 ComputeStep(const SkPoint& a, const SkPoint& b, SkScalar radius, SkPoint* step) argument
[all...]

Completed in 1051 milliseconds

1234567891011>>