Home
last modified time | relevance | path

Searched refs:paused (Results 1 – 25 of 241) sorted by relevance

12345678910

/third_party/node/deps/npm/node_modules/through/
Dindex.js20 stream.paused = false
27 return !stream.paused
31 while(buffer.length && !stream.paused) {
89 if(stream.paused) return
90 stream.paused = true
95 if(stream.paused) {
96 stream.paused = false
102 if(!stream.paused)
/third_party/gstreamer/gstplugins_base/tests/examples/seek/
Dinstant-rate-change.c61 gboolean paused; member
91 data->paused = !data->paused; in do_play_pause()
95 g_print ("%s\n", data->paused ? "Pausing" : "Unpausing"); in do_play_pause()
97 data->paused ? GST_STATE_PAUSED : GST_STATE_PLAYING); in do_play_pause()
102 if (!data->paused) { in do_play_pause()
116 g_print ("%s\n", data->paused ? "Pausing" : "Unpausing"); in do_play_pause()
118 data->paused ? GST_STATE_PAUSED : GST_STATE_PLAYING); in do_play_pause()
123 g_print ("%s\n", data->paused ? "Pausing" : "Unpausing"); in do_play_pause()
125 data->paused ? GST_STATE_PAUSED : GST_STATE_PLAYING); in do_play_pause()
126 if (data->paused) { in do_play_pause()
/third_party/node/test/sequential/
Dtest-inspector-async-stack-traces-set-interval.js18 const paused = await session.waitForBreakOnLine(0, '[eval]');
19 assert(paused.params.asyncStackTrace,
20 `${Object.keys(paused.params)} contains "asyncStackTrace" property`);
21 assert(paused.params.asyncStackTrace.description, 'Timeout');
22 assert(paused.params.asyncStackTrace.callFrames
Dtest-inspector-async-hook-setup-at-inspect-brk.js22 const paused = await session.waitForBreakOnLine(2, '[eval]');
23 assert(paused.params.asyncStackTrace,
24 `${Object.keys(paused.params)} contains "asyncStackTrace" property`);
25 assert(paused.params.asyncStackTrace.description, 'Timeout');
26 assert(paused.params.asyncStackTrace.callFrames
Dtest-inspector-async-hook-setup-at-signal.js54 const paused = await session.waitForBreakOnLine(23, '[eval]');
55 assert(paused.params.asyncStackTrace,
56 `${Object.keys(paused.params)} contains "asyncStackTrace" property`);
57 assert(paused.params.asyncStackTrace.description, 'Timeout');
58 assert(paused.params.asyncStackTrace.callFrames
/third_party/node/test/parallel/
Dtest-inspect-async-hook-setup-at-inspect.js39 const paused = await session.waitForBreakOnLine(8, '[eval]');
40 assert(paused.params.asyncStackTrace,
41 `${Object.keys(paused.params)} contains "asyncStackTrace" property`);
42 assert(paused.params.asyncStackTrace.description, 'Timeout');
43 assert(paused.params.asyncStackTrace.callFrames
Dtest-net-onread-static-buffer.js132 let paused = false;
138 assert.strictEqual(paused, false);
142 paused = true;
145 paused = false;
164 let paused = false;
170 assert.strictEqual(paused, false);
174 paused = true;
176 paused = false;
Dtest-http-zero-length-write.js36 let paused = false;
38 paused = true;
41 paused = false;
46 if (paused)
Dtest-fs-read-stream-inherit.js13 let paused = false; variable
31 assert.ok(!paused);
34 paused = true;
38 paused = false;
/third_party/flutter/flutter/packages/flutter/test/scheduler/
Dlifecycle_test.dart9 testWidgets('initialLifecycleState is used to init state paused', (WidgetTester tester) async {
13 // Mock the Window to provide paused as the AppLifecycleState
15 // Use paused as the initial state.
16 binding.window.initialLifecycleStateTestValue = 'AppLifecycleState.paused';
21 expect(SchedulerBinding.instance.lifecycleState.toString(), equals('AppLifecycleState.paused'));
/third_party/pulseaudio/src/pulsecore/
Dtime-smoother.c83 bool paused:1; member
98 bool paused) { in pa_smoother_new() argument
114 pa_smoother_reset(s, time_offset, paused); in pa_smoother_new()
353 if (s->paused) in pa_smoother_put()
396 if (s->paused) in pa_smoother_get()
438 if (s->paused) in pa_smoother_pause()
445 s->paused = true; in pa_smoother_pause()
452 if (!s->paused) in pa_smoother_resume()
462 s->paused = false; in pa_smoother_resume()
483 if (s->paused) in pa_smoother_translate()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/audio/android/
DSDL_androidaudio.c169 if (SDL_AtomicGet(&audioDevice->paused)) { in ANDROIDAUDIO_PauseDevices()
175 SDL_AtomicSet(&audioDevice->paused, 1); in ANDROIDAUDIO_PauseDevices()
182 if (SDL_AtomicGet(&captureDevice->paused)) { in ANDROIDAUDIO_PauseDevices()
188 SDL_AtomicSet(&captureDevice->paused, 1); in ANDROIDAUDIO_PauseDevices()
202 SDL_AtomicSet(&audioDevice->paused, 0); in ANDROIDAUDIO_ResumeDevices()
211 SDL_AtomicSet(&captureDevice->paused, 0); in ANDROIDAUDIO_ResumeDevices()
/third_party/boost/libs/chrono/example/
Dtime2_demo_output.txt129 paused 5001000 nanoseconds
132 paused 5000181 nanoseconds
135 paused 5000277 nanoseconds
147 paused 5001000 nanoseconds
149 paused 5000205 nanoseconds
160 paused 5001000 nanoseconds
173 paused 201 cycles which is 502 nanoseconds
177 paused 503 nanoseconds
181 paused 751 cycles which is 500 nanoseconds
185 paused 500 nanoseconds
/third_party/boost/libs/mpl/example/fsm/
Dplayer.cpp44 typedef state<2, &self_t::paused_state_invariant> paused; typedef in player
60 , transition<playing, pause_event, paused, &player::do_pause>
61 , transition<paused, play_event, playing, &player::do_resume>
62 , transition<paused, stop_event, stopped, &player::do_stop>
/third_party/node/test/pummel/
Dtest-net-throttle.js57 let paused = false; variable
63 if (!paused) {
66 paused = true;
73 paused = false;
Dtest-stream-pipe-multi.js100 let paused = false;
103 paused = true;
107 paused = false;
117 if (paused) return;
/third_party/curl/tests/libtest/
Dlib1533.c37 int paused; member
46 data->paused = 0; in reset_data()
71 data->paused = 1; in read_callback()
89 if(data->paused) { in write_callback()
91 data->paused = 0; in write_callback()
/third_party/boost/libs/mpi/test/
Ddebugger.cpp11 std::vector<int> paused; in extract_paused_ranks() local
13 paused.push_back(std::atoi(argv[i])); in extract_paused_ranks()
15 return paused; in extract_paused_ranks()
/third_party/openGLES/extensions/NV/
DNV_transform_feedback2.txt51 When transform feedback is paused, applications may render without
146 feedback object, and that operation is not paused (as described below).
196 object may be paused and resumed by calling
204 respectively. When transform feedback operations are paused, transform
207 feedback object may be bound while transform feedback is paused. The
209 currently bound transform feedback is not active or is paused. The error
211 currently bound transform feedback is not active or is not paused.
213 When transform feedback is active and not paused, all geometric primitives
220 Any primitive type may be used while transform feedback is paused.
282 paused, the values of the specified varying variables (if a vertex or
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_transform_feedback2.txt51 When transform feedback is paused, applications may render without
146 feedback object, and that operation is not paused (as described below).
196 object may be paused and resumed by calling
204 respectively. When transform feedback operations are paused, transform
207 feedback object may be bound while transform feedback is paused. The
209 currently bound transform feedback is not active or is paused. The error
211 currently bound transform feedback is not active or is not paused.
213 When transform feedback is active and not paused, all geometric primitives
220 Any primitive type may be used while transform feedback is paused.
282 paused, the values of the specified varying variables (if a vertex or
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_transform_feedback2.txt57 When transform feedback is paused, applications may render without
152 transform feedback object, and that operation is not paused (as
200 object may be paused and resumed by calling
208 respectively. When transform feedback operations are paused, transform
211 feedback object may be bound while transform feedback is paused. The
213 currently bound transform feedback is not active or is paused. The error
215 currently bound transform feedback is not active or is not paused.
217 When transform feedback is active and not paused, all geometric primitives
224 primitive type may be used while transform feedback is paused.
282 paused, the values of the specified varying variables of each vertex are
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_transform_feedback2.txt62 When transform feedback is paused, applications may render without
190 feedback object, and that operation is not paused (as described below).
221 object may be paused and resumed by calling
229 respectively. When transform feedback operations are paused, transform
232 feedback object may be bound while transform feedback is paused. The
234 currently bound transform feedback is not active or is paused. The error
236 currently bound transform feedback is not active or is not paused.
238 When transform feedback is active and not paused, all geometric primitives
245 primitive type may be used while transform feedback is paused.
307 paused, the values of the specified varying variables of each vertex are
[all …]
/third_party/openGLES/extensions/EXT/
DEXT_transform_feedback2.txt57 When transform feedback is paused, applications may render without
152 transform feedback object, and that operation is not paused (as
200 object may be paused and resumed by calling
208 respectively. When transform feedback operations are paused, transform
211 feedback object may be bound while transform feedback is paused. The
213 currently bound transform feedback is not active or is paused. The error
215 currently bound transform feedback is not active or is not paused.
217 When transform feedback is active and not paused, all geometric primitives
224 primitive type may be used while transform feedback is paused.
282 paused, the values of the specified varying variables of each vertex are
[all …]
/third_party/openGLES/extensions/ARB/
DARB_transform_feedback2.txt72 When transform feedback is paused, applications may render without
200 feedback object, and that operation is not paused (as described below).
231 object may be paused and resumed by calling
239 respectively. When transform feedback operations are paused, transform
242 feedback object may be bound while transform feedback is paused. The
244 currently bound transform feedback is not active or is paused. The error
246 currently bound transform feedback is not active or is not paused.
248 When transform feedback is active and not paused, all geometric primitives
255 primitive type may be used while transform feedback is paused.
317 paused, the values of the specified varying variables of each vertex are
[all …]
/third_party/skia/tools/skottie_ios_app/
DSkottieViewController.mm72 float fAnimationMoment = 0; // when paused.
102 bool paused() const { return fPaused; }
155 return fClock.paused();
158 - (bool)isPaused { return fClock.paused(); }
163 if (!fClock.paused()) {

12345678910