Searched refs:step (Results 201 - 225 of 819) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen_oauth_enrollment.js35 * The current step. This is the last value passed to showStep().
172 * @param {string} step the steps to show, one of "signin", "working",
175 showStep: function(step) {
177 this.classList.toggle('oauth-enroll-state-' + step, true);
179 this.querySelectorAll('.oauth-enroll-focus-on-' + step);
186 this.currentStep_ = step;
236 // Only to be activated for the explain step in auto-enrollment.
H A Dscreen_confirm_password.css12 #confirm-password .step-contents {
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dgtk2_key_bindings_handler.h111 static void MoveCursor(GtkTextView* text_view, GtkMovementStep step,
115 static void MoveViewport(GtkTextView* text_view, GtkScrollStep step,
/external/chromium_org/content/renderer/android/
H A Drenderer_date_time_picker.cc64 message.step = chooser_params_.step;
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
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/rendering/
H A DTextPainter.h69 template <PaintInternalStep step>
72 template <PaintInternalStep step>
/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/angle/tests/perf_tests/
H A DSimpleBenchmark.cpp39 void SimpleBenchmark::step(float dt, double totalTime) function in class:SimpleBenchmark
92 step(static_cast<float>(deltaTime), elapsedTime);
/external/chromium_org/ui/webui/resources/css/
H A Dspinner.css7 -webkit-animation: spinner-animation 1s step-end infinite;
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-stepin-builtin-callback.js46 assertTrue(event_data.sourceLineText().indexOf("Expected to step") > 0);
56 print("element " + num); // Expected to step to this point.
61 print("element " + num); // Expected to step to this point.
66 print("elements " + a + " and " + b); // Expected to step to this point.
132 assertTrue(event_data.sourceLineText().indexOf("Expected to step") > 0);
135 var step = (breaks % 4 == 1) ? 6 : 3;
136 exec_state.prepareStep(Debug.StepAction.StepIn, step);
/external/chromium_org/v8/test/mjsunit/es6/
H A Ddebug-stepin-collections-foreach.js21 assertTrue(event_data.sourceLineText().indexOf("Expected to step") > 0);
31 print("element " + num); // Expected to step to this point.
36 print("key " + key + ", value " + val); // Expected to step to this point.
82 assertTrue(event_data.sourceLineText().indexOf("Expected to step") > 0);
85 var step = (breaks % 4 == 1) ? 6 : 3;
86 exec_state.prepareStep(Debug.StepAction.StepIn, step);
/external/libvorbis/lib/
H A Dcodebook.h91 extern int _best(codebook *book, float *a, int step);
95 extern int vorbis_book_besterror(codebook *book,float *a,int step,int addmul);
/external/libvorbis/vq/
H A Dlocalcodebook.h93 extern int _best(codebook *book, float *a, int step);
97 extern int vorbis_book_besterror(codebook *book,float *a,int step,int addmul);
H A Dmetrics.c209 float process_one(codebook *b,int book,float *a,int dim,int step,int addmul, argument
217 amplitude=a[j*step]-(b->c->q_sequencep?last:0);
221 last=a[j*step];
228 temp=a[j*step];
229 a[j*step]-=base;
234 entry=vorbis_book_besterror(b,a,step,addmul);
245 float error=a[j*step];
/external/opencv/cv/src/
H A Dcvcanny.cpp102 IPPI_CALL( icvCanny_16s8u_C1R_p( (short*)dx->data.ptr, dx->step,
103 (short*)dy->data.ptr, dy->step,
104 dst->data.ptr, dst->step,
167 const short* _dx = (short*)(dx->data.ptr + dx->step*i);
168 const short* _dy = (short*)(dy->data.ptr + dy->step*i);
213 _dx = (short*)(dx->data.ptr + dx->step*(i-1));
214 _dy = (short*)(dy->data.ptr + dy->step*(i-1));
343 uchar* _dst = dst->data.ptr + dst->step*i;
H A Dcvcontours.cpp44 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
45 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
46 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
47 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
48 (deltas)[6] = (step), (deltas)[7] = (step) + (nch))
157 int img_step; /* image step */
198 int step; local
217 step
530 icvFetchContour( schar *ptr, int step, CvPoint pt, CvSeq* contour, int _method ) argument
649 icvTraceContour( schar *ptr, int step, schar *stop_ptr, int is_hole ) argument
701 icvFetchContourEx( schar* ptr, int step, CvPoint pt, CvSeq* contour, int _method, int nbd, CvRect* _rect ) argument
839 int step; local
[all...]
H A Dcvstereogc.cpp450 int sstep = src->step;
457 uchar* dptr = dst->data.ptr + dst->step*y;
496 const uchar* lptr = state->left->data.ptr + state->left->step*y;
497 const uchar* rptr = state->right->data.ptr + state->right->step*y;
538 int step = state->left->step; local
539 int dstep = (int)(state->dispLeft->step/sizeof(short));
541 assert( state->left->step == state->right->step &&
542 state->dispLeft->step
680 int step = state->left->step; local
[all...]
/external/opencv/otherlibs/highgui/
H A Dgrfmt_base.h78 virtual bool ReadData( uchar* data, int step, int color ) = 0;
101 virtual bool WriteImage( const uchar* data, int step,
H A Dgrfmt_imageio.cpp125 bool GrFmtImageIOReader::ReadData( uchar* data, int step, int color ) argument
201 uchar * line = base + y * step;
220 memcpy (data + y * step, bitmap + y * m_width, m_width);
275 bool GrFmtImageIOWriter::WriteImage( const uchar* data, int step, argument
326 const uchar * line = base + y * step;
345 memcpy (bitmapData + y * width, data + y * step, width);
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DomxSP_FFTFwd_RToCCS_S16_Sfs_s.S76 #define step r3 define
429 MOV step,subFFTSize,LSL #2 @ step = N/2 * 4 bytes
431 SUB twStep,step,subFFTSize @ twStep = 3N/8 * 8 bytes
438 VST1 dY0rS32[0],[argDst], step
444 SUB argDst,argDst,step
445 SUB step,step,#20
446 RSB stepr, step, #16
459 VLD2 {dX0r,dX0i},[pSrc],step
[all...]
/external/chromium_org/third_party/polymer/components-chromium/paper-slider/
H A Dpaper-slider-extracted.js22 * on the `step` property value.
79 'min max step snaps': 'update'
175 this.markers = [], l = (this.max - this.min) / this.step;
182 this.value = this.clampValue(this.value + this.step);
186 this.value = this.clampValue(this.value - this.step);
/external/zlib/src/contrib/testzlib/
H A Dtestzlib.c196 int step=0; local
212 step++;
220 printf("total compress size = %u, in %u step\n",lSizeCpr,step);
237 int step=0; local
253 step++;
261 printf("total uncompress size = %u, in %u step\n",lSizeUncpr,step);
/external/chromium_org/third_party/skia/gm/
H A Dmultipicturedraw.cpp304 ComposeStep& step = composeSteps->push_back(); local
306 step.fSurf = create_compat_surface(finalCanvas, kPicWidth, kPicHeight);
308 SkCanvas* subCanvas = step.fSurf->getCanvas();
333 ComposeStep& step = composeSteps->push_back(); local
335 step.fX = SkIntToScalar(x*kTileWidth);
336 step.fY = SkIntToScalar(y*kTileHeight);
337 step.fPaint = SkNEW(SkPaint);
338 step.fPaint->setColorFilter(
341 step.fSurf = create_compat_surface(finalCanvas, kTileWidth, kTileHeight);
343 SkCanvas* subCanvas = step
426 const ComposeStep& step = composeSteps[i]; variable
[all...]
/external/opencv/cxcore/src/
H A Dcxmeansdv.cpp247 step /= sizeof(src[0])
377 ( const arrtype* src, int step, \
379 (src, step, size, mean, sdv) ) \
386 for( ; size.height--; src += step ) \
412 ( const arrtype* src, int step, \
414 (src, step, size, mean, sdv) ) \
420 for( ; size.height--; src += step ) \
436 ( const arrtype* src, int step, \
446 for( ; size.height--; src += step ) \
472 ( const arrtype* src, int step, CvSiz
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A Dpattern.c71 int step; member in struct:_xsltStepState
288 * Add an step to an XSLT Compiled Match
479 int step, xmlNodePtr node) {
499 states->states[states->nbstates].step = step;
502 fprintf(stderr, "Push: %d, %s\n", step, node->name);
516 * and not a step by step evaluation.
536 sel = &comp->steps[0]; /* store extra in first step arbitrarily */
631 xsltStepOpPtr step, se local
478 xsltPatPushState(xsltTransformContextPtr ctxt, xsltStepStates *states, int step, xmlNodePtr node) argument
[all...]

Completed in 526 milliseconds

1234567891011>>