/third_party/node/deps/npm/node_modules/through/ |
D | index.js | 20 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/ |
D | instant-rate-change.c | 61 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/ |
D | test-inspector-async-stack-traces-set-interval.js | 18 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
|
D | test-inspector-async-hook-setup-at-inspect-brk.js | 22 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
|
D | test-inspector-async-hook-setup-at-signal.js | 54 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/ |
D | test-inspect-async-hook-setup-at-inspect.js | 39 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
|
D | test-net-onread-static-buffer.js | 132 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;
|
D | test-http-zero-length-write.js | 36 let paused = false; 38 paused = true; 41 paused = false; 46 if (paused)
|
D | test-fs-read-stream-inherit.js | 13 let paused = false; variable 31 assert.ok(!paused); 34 paused = true; 38 paused = false;
|
/third_party/flutter/flutter/packages/flutter/test/scheduler/ |
D | lifecycle_test.dart | 9 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/ |
D | time-smoother.c | 83 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/ |
D | SDL_androidaudio.c | 169 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/ |
D | time2_demo_output.txt | 129 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/ |
D | player.cpp | 44 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/ |
D | test-net-throttle.js | 57 let paused = false; variable 63 if (!paused) { 66 paused = true; 73 paused = false;
|
D | test-stream-pipe-multi.js | 100 let paused = false; 103 paused = true; 107 paused = false; 117 if (paused) return;
|
/third_party/curl/tests/libtest/ |
D | lib1533.c | 37 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/ |
D | debugger.cpp | 11 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/ |
D | NV_transform_feedback2.txt | 51 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/ |
D | NV_transform_feedback2.txt | 51 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/ |
D | EXT_transform_feedback2.txt | 57 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/ |
D | ARB_transform_feedback2.txt | 62 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/ |
D | EXT_transform_feedback2.txt | 57 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/ |
D | ARB_transform_feedback2.txt | 72 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/ |
D | SkottieViewController.mm | 72 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()) {
|