Searched refs:step (Results 26 - 50 of 819) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DStepRange.cpp53 StepRange::StepRange(const Decimal& stepBase, const Decimal& minimum, const Decimal& maximum, const Decimal& step, const StepDescription& stepDescription) argument
56 , m_step(step.isFinite() ? step : 1)
59 , m_hasStep(step.isFinite())
88 // Rounds inRangeValue to stepBase + N * step.
112 Decimal step = parseToDecimalForNumberType(stepString); local
113 if (!step.isFinite() || step <= 0)
118 step *= stepDescription.stepScaleFactor;
122 step
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dxcorr_coef.h35 int16_t step /* (i) +1 or -1 */
/external/javasqlite/src/main/java/SQLite/
H A DFunction.java43 * Callback for one step in aggregate function.
49 public void step(FunctionContext fc, String args[]); method in interface:Function
52 * Callback for final step in aggregate function.
H A DVm.java16 * Internal last error code for compile()/step() methods.
22 * Perform one step on compiled SQLite VM.
30 * while (vm.step(cb)) {
34 * while (vm.step(cb)) {
47 public native boolean step(Callback cb) throws SQLite.Exception; method in class:Vm
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementAsyncImportMicrotaskQueue.cpp38 void CustomElementAsyncImportMicrotaskQueue::enqueue(PassOwnPtrWillBeRawPtr<CustomElementMicrotaskStep> step) argument
40 m_queue.append(step);
H A DCustomElementMicrotaskRunQueue.cpp27 void CustomElementMicrotaskRunQueue::enqueue(HTMLImportLoader* parentLoader, PassOwnPtrWillBeRawPtr<CustomElementMicrotaskStep> step, bool importIsSync) argument
31 parentLoader->microtaskQueue()->enqueue(step);
33 m_syncQueue->enqueue(step);
35 m_asyncQueue->enqueue(step);
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddct16x16_test.cc81 double step[16]; local
85 // step 1
86 step[ 0] = input[0] + input[15];
87 step[ 1] = input[1] + input[14];
88 step[ 2] = input[2] + input[13];
89 step[ 3] = input[3] + input[12];
90 step[ 4] = input[4] + input[11];
91 step[ 5] = input[5] + input[10];
92 step[ 6] = input[6] + input[ 9];
93 step[
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DMultiFieldTimePickerDialog.java25 * The milli picker is not displayed if step >= SECOND_IN_MILLIS
26 * The second picker is not displayed if step >= MINUTE_IN_MILLIS.
53 int min, int max, int step, boolean is24hourFormat,
57 mStep = step;
64 if (step < 0 || step >= 24 * HOUR_IN_MILLIS) {
65 step = MINUTE_IN_MILLIS;
158 if (step >= HOUR_IN_MILLIS) {
165 if (step >= MINUTE_IN_MILLIS) {
194 if (step >
49 MultiFieldTimePickerDialog( Context context, int theme, int hour, int minute, int second, int milli, int min, int max, int step, boolean is24hourFormat, OnMultiFieldTimeSetListener listener) argument
[all...]
/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg2000.h68 bool ReadData( uchar* data, int step, int color );
73 bool ReadComponent8u( uchar *data, jas_matrix_t *buffer, int step, int cmpt,
75 bool ReadComponent16u( unsigned short *data, jas_matrix_t *buffer, int step, int cmpt,
91 bool WriteImage( const uchar* data, int step,
95 int step, int ncmpts, int w, int h );
97 int step, int ncmpts, int w, int h );
H A Dgrfmt_imageio.h24 bool ReadData( uchar* data, int step, int color );
40 bool WriteImage( const uchar* data, int step,
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dhuffman.c34 int step = 1 << (len - 1); local
35 while (key & step) {
36 step >>= 1;
38 return (key & (step - 1)) + step;
41 /* Stores code in table[0], table[step], table[2*step], ..., table[end] */
42 /* Assumes that end is an integer multiple of step */
44 int step, int end,
47 end -= step;
43 ReplicateValue(HuffmanCode* table, int step, int end, HuffmanCode code) argument
76 int step; /* step size to replicate values in current table */ local
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
H A Dmanual.js24 var step;
34 step = document.createElement('li');
35 tests[i].children[1].appendChild(step);
36 step.setAttribute('class', classes[run.tests[i].steps[j].success]);
37 step.appendChild(document.createElement('p'));
38 step.children[0].textContent = run.tests[i].steps[j].messages[0];
40 step.appendChild(document.createElement('p'));
41 step.children[k].textContent = run.tests[i].steps[j].messages[k];
42 step.children[k].setAttribute('class', 'difference');
/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/ash/shelf/
H A Dshelf_navigator.cc53 int step = (direction == CYCLE_FORWARD) ? 1 : -1; local
56 for (int i = (current_index + step + item_count) % item_count;
57 i != current_index; i = (i + step + item_count) % item_count) {
/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/chromium_org/ui/compositor/
H A Dtransform_animation_curve_adapter_unittest.cc42 double step = 1.0 / kSteps; local
48 parent_curve.GetValue(i*step);
50 child_curve.GetValue(i*step);
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivetv3_crypto_provider.cc28 virtual HandshakeState GetNextStep(int* step, std::string* package) OVERRIDE;
29 virtual HandshakeState SetStepResponse(int step,
69 int* step,
72 *step = 0;
80 PrivetV3CryptoProviderEmpty::SetStepResponse(int step, argument
86 (step == 0 && package.empty() && state == kHandshakeStateComplete);
68 GetNextStep( int* step, std::string* package) argument
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_tpm_error.css10 #oobe.tpm-error-message #step-logo {
/external/chromium_org/chrome/browser/ui/translate/
H A Dtranslate_bubble_factory.h27 translate::TranslateStep step,
39 translate::TranslateStep step,
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioFIFO.h52 // Update the FIFO index by the step, with appropriate wrapping around the endpoint.
53 int updateIndex(int index, int step) { return (index + step) % m_fifoLength; } argument
/external/icu/icu4c/source/i18n/
H A Dcollation.cpp70 Collation::decTwoBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) { argument
72 // minus the step, modulo the number of usable byte values, plus the minimum.
75 U_ASSERT(0 < step && step <= 0x7f);
76 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step;
92 Collation::decThreeBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) { argument
94 // minus the step, modulo the number of usable byte values, plus the minimum.
95 U_ASSERT(0 < step && step <= 0x7f);
96 int32_t byte3 = ((int32_t)(basePrimary >> 8) & 0xff) - step;
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/first_run/
H A Dfirst_run.js9 <include src="step.js">
76 // Element representing step currently shown for user.
92 var stepElements = document.getElementsByClassName('step');
94 var step = stepElements[i];
95 cr.FirstRun.DecorateStep(step);
96 this.steps_[step.getName()] = step;
107 // At first we hide holes (job 1) and current step (job 2) simultaneously,
189 * Hides currently active step and notifies chrome after step ha
[all...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXSpinButton.cpp73 void AXSpinButton::step(int amount) function in class:blink::AXSpinButton
79 m_spinButtonElement->step(amount);
117 spinButton->step(1);
119 spinButton->step(-1);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Dstepsequence.py58 for step in self._steps:
59 collected_options = collected_options + step.options()
65 for step in self._steps:
66 step(tool, options).run(state)
/external/chromium_org/third_party/skia/gm/
H A Dstringart.cpp43 SkScalar step = angle; local
50 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
51 length*SkScalarSin(step) + center.fY);
54 step += angle;

Completed in 3469 milliseconds

1234567891011>>