Searched defs:step (Results 1 - 25 of 440) sorted by relevance

1234567891011>>

/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/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 DCustomElementSyncMicrotaskQueue.cpp10 void CustomElementSyncMicrotaskQueue::enqueue(PassOwnPtrWillBeRawPtr<CustomElementMicrotaskStep> step) argument
12 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/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
H A DBackup.java41 * Perform a backup step.
47 public boolean step(int n) throws SQLite.Exception { method in class:Backup
56 * Perform the backup in one step.
/external/valgrind/main/coregrind/m_gdbserver/
H A Dtarget.h80 /* If non-zero, we want to single-step. */
81 int step; member in struct:thread_resume
122 (i.e. step one instruction).
/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/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/media/base/
H A Dfake_audio_render_callback.cc14 FakeAudioRenderCallback::FakeAudioRenderCallback(double step) argument
16 step_(step),
/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/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/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/openmax_dl/dl/sp/src/arm/neon/
H A DarmSP_FFT_CToC_FC32_Radix2_fs_unsafe_s.S65 #define step r8 define
95 RSB step,pointStep,#8
103 VLD1 dX1,[pSrc],step @// step = -pointStep + 8
110 @// dstStep = step = -pointStep + 8
H A DarmSP_FFT_CToC_SC32_Radix2_fs_unsafe_s.S73 #define step r8 define
103 RSB step,pointStep,#8
111 VLD1 dX1,[pSrc],step @// step = -pointStep + 8
128 VST1 dY1,[pDst],dstStep @// dstStep = step = -pointStep + 8
/external/chromium_org/third_party/skia/samplecode/
H A DSampleSpiral.cpp45 SkScalar step = SK_ScalarPI / (55 - i); local
46 SkScalar angle = t * step;
H A DSampleStringArt.cpp35 SkScalar step = angle; variable
42 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
43 length*SkScalarSin(step) + center.fY);
46 step += angle;
/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/deqp/framework/randomshaders/
H A DrsgUtils.hpp53 inline float getQuantizedFloat (de::Random& rnd, float min, float max, float step) argument
55 int numSteps = (int)((max-min)/step);
56 return min + step*rnd.getInt(0, numSteps);
/external/linux-tools-perf/perf-3.12.0/tools/perf/arch/x86/util/
H A Dheader.c26 int family = -1, model = -1, step = -1; local
41 step = a & 0xf;
51 nb = scnprintf(buffer, sz, "%s,%u,%u,%u$", vendor, family, model, step);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dparser.ml67 let step = var
69 | [< 'Token.Kwd ','; step=parse_expr >] -> Some step
75 Ast.For (id, start, end_, step, body)
/external/lzma/CPP/7zip/Common/
H A DMethodProps.cpp22 const UInt32 step = (reducedDictionarySize >> 1); local
28 reducedDictionarySize += step;
36 reducedDictionarySize += step;

Completed in 1745 milliseconds

1234567891011>>