Searched defs:step (Results 76 - 100 of 440) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/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...]
/external/icu/icu4c/source/i18n/
H A Dcollationrootelements.cpp89 int32_t step; local
94 step = (int32_t)q & PRIMARY_STEP_MASK;
95 if(step == 0) {
106 step = (int32_t)nextElement & PRIMARY_STEP_MASK;
110 return Collation::decTwoBytePrimaryByOneStep(p, isCompressible, step);
112 return Collation::decThreeBytePrimaryByOneStep(p, isCompressible, step);
174 int32_t step; local
175 if((q & SEC_TER_DELTA_FLAG) == 0 && (step = (int32_t)q & PRIMARY_STEP_MASK) != 0) {
178 return Collation::incTwoBytePrimaryByOffset(p, isCompressible, step);
180 return Collation::incThreeBytePrimaryByOffset(p, isCompressible, step);
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_flow.h125 LLVMValueRef step);
130 LLVMValueRef step,
144 LLVMValueRef step; member in struct:lp_build_for_loop_state
156 LLVMValueRef step);
/external/opencv/cv/src/
H A D_cv.h104 int *step; member in struct:CvPyramid
/external/skia/bench/
H A DInterpBench.cpp56 SkFixed step = SkFloatToFixed(dx); variable
58 dst[i + 0] = TILE(curr, count); curr += step;
59 dst[i + 1] = TILE(curr, count); curr += step;
60 dst[i + 2] = TILE(curr, count); curr += step;
61 dst[i + 3] = TILE(curr, count); curr += step;
75 int64_t step = (int64_t)(dx * 65536 * 655536); variable
80 curr += step;
84 curr += step;
88 curr += step;
92 curr += step;
106 int64_t step = (int64_t)(dx * 65536 * 655536 * 65536); variable
[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...]
/external/smack/src/org/xbill/DNS/
H A DGenerator.java22 /** The step value of the range. */
23 public long step; field in class:Generator
61 * @param step The step value of the range.
74 Generator(long start, long end, long step, String namePattern, argument
77 if (start < 0 || end < 0 || start > end || step <= 0)
86 this.step = step;
221 current += step;
233 for (long i = start; i < end; i += step) {
[all...]
/external/chromium_org/chrome/browser/ui/translate/
H A Dtranslate_bubble_model_impl.cc12 translate::TranslateStep step,
15 view_state_transition_(TranslateStepToViewState(step)) {
24 translate::TranslateStep step) {
25 switch (step) {
11 TranslateBubbleModelImpl( translate::TranslateStep step, scoped_ptr<translate::TranslateUIDelegate> ui_delegate) argument
23 TranslateStepToViewState( translate::TranslateStep step) argument
/external/chromium_org/content/browser/android/
H A Ddate_time_chooser_android.cc82 double step,
113 step,
75 ShowDialog( ContentViewCore* content, RenderViewHost* host, ui::TextInputType dialog_type, double dialog_value, double min, double max, double step, const std::vector<DateTimeSuggestion>& suggestions) argument
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host_tcp_unittest.cc154 size_t step = 0; local
156 size_t step_size = std::min(step_sizes[step], received_data.size() - pos);
159 if (++step >= arraysize(step_sizes))
160 step = 0;
337 size_t step = 0; local
339 size_t step_size = std::min(step_sizes[step], received_data.size() - pos);
342 if (++step >= arraysize(step_sizes))
343 step = 0;
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DDateTimeChooserAndroid.java43 double min, double max, double step,
45 mInputDialogContainer.showDialog(dialogType, dialogValue, min, max, step, suggestions);
53 double min, double max, double step,
59 chooser.showDialog(dialogType, dialogValue, min, max, step, suggestions);
42 showDialog(int dialogType, double dialogValue, double min, double max, double step, DateTimeSuggestion[] suggestions) argument
49 createDateTimeChooser( ContentViewCore contentViewCore, long nativeDateTimeChooserAndroid, int dialogType, double dialogValue, double min, double max, double step, DateTimeSuggestion[] suggestions) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementScheduler.cpp121 OwnPtrWillBeRawPtr<CustomElementMicrotaskResolutionStep> step = CustomElementMicrotaskResolutionStep::create(context, element, descriptor); local
122 enqueueMicrotaskStep(document, step.release());
130 // Ownership of the new step is transferred to the parent
131 // processing step, or the base queue.
132 OwnPtrWillBeRawPtr<CustomElementMicrotaskImportStep> step = CustomElementMicrotaskImportStep::create(import); local
133 CustomElementMicrotaskImportStep* rawStep = step.get();
134 enqueueMicrotaskStep(*(import->parent()->document()), step.release(), import->isSync());
138 void CustomElementScheduler::enqueueMicrotaskStep(Document& document, PassOwnPtrWillBeRawPtr<CustomElementMicrotaskStep> step, bool importIsSync) argument
141 master.customElementMicrotaskRunQueue()->enqueue(document.importLoader(), step, importIsSync);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DBaseDateAndTimeInputType.cpp133 Decimal step; local
134 if (!element().getAllowedValueStep(&step))
136 if (step.remainder(msecPerMinute).isZero())
138 if (step.remainder(msecPerSecond).isZero())
H A DStepRange.h73 StepRange(const Decimal& stepBase, const Decimal& minimum, const Decimal& maximum, const Decimal& step, const StepDescription&);
80 Decimal step() const { return m_step; } function in class:blink::StepRange
84 // Clamp the middle value according to the step
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSpinButtonElement.cpp228 void SpinButtonElement::step(int amount) function in class:blink::SpinButtonElement
245 step(m_upDownState == Up ? 1 : -1);
/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/WebKit/Source/core/xml/
H A DXPathPath.cpp139 Step* step = m_steps[i]; local
143 bool needToCheckForDuplicateNodes = !nodes.subtreesAreDisjoint() || (step->axis() != Step::ChildAxis && step->axis() != Step::SelfAxis
144 && step->axis() != Step::DescendantAxis && step->axis() != Step::DescendantOrSelfAxis && step->axis() != Step::AttributeAxis);
150 if (nodes.subtreesAreDisjoint() && (step->axis() == Step::ChildAxis || step->axis() == Step::SelfAxis))
155 step->evaluate(context, nodes[j], *matches);
173 void LocationPath::appendStep(Step* step) argument
190 insertFirstStep(Step* step) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteStatement.cpp86 int SQLiteStatement::step() function in class:blink::SQLiteStatement
98 WTF_LOG(SQLDatabase, "SQL - step - %s", m_query.ascii().data());
126 if (step() != SQLITE_DONE) {
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimalTest.cpp60 Decimal step; member in class:DecimalStepRange
62 DecimalStepRange(const Decimal& minimum, const Decimal& maximum, const Decimal& step) argument
65 , step(step)
71 const Decimal result = minimum + ((value - minimum) / step).round() * step;
73 return result > maximum ? result - step : result;
93 protected: Decimal stepDown(const String& minimum, const String& maximum, const String& step, const String& valueString, int numberOfStepTimes) argument
95 DecimalStepRange stepRange(fromString(minimum), fromString(maximum), fromString(step));
98 value -= stepRange.step;
104 stepUp(const String& minimum, const String& maximum, const String& step, const String& valueString, int numberOfStepTimes) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.cpp131 builder.append("step-");
208 const StepsTimingFunction& step = toStepsTimingFunction(lhs); local
209 return (step == rhs);
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollAnimator.cpp52 bool ScrollAnimator::scroll(ScrollbarOrientation orientation, ScrollGranularity, float step, float delta) argument
55 float newPos = clampScrollPosition(orientation, currentPos + step * delta);
/external/chromium_org/third_party/angle/samples/angle/particle_system/
H A DParticleSystem.cpp135 virtual void step(float dt, double totalTime) function in class:ParticleSystemSample
/external/chromium_org/third_party/angle/samples/angle/post_sub_buffer/
H A DPostSubBuffer.cpp100 virtual void step(float dt, double totalTime) function in class:PostSubBufferSample
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A DSampleApplication.cpp43 void SampleApplication::step(float dt, double totalTime) function in class:SampleApplication
110 step(static_cast<float>(deltaTime), elapsedTime);
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dtransform.h226 int step = ToUpperCase(uppercase, len); local
227 uppercase += step;
228 len -= step;

Completed in 843 milliseconds

1234567891011>>