/third_party/gstreamer/gstreamer/tests/check/generic/ |
D | sinks.c | 30 GstState new, GstState pending) in pop_state_change_message() argument 45 fail_unless (pending == _pending, "Unexpected pending state"); in pop_state_change_message() 55 GstState current, pending; in GST_START_TEST() local 65 ret = gst_element_get_state (sink, ¤t, &pending, 0); in GST_START_TEST() 68 fail_unless (pending == GST_STATE_PLAYING, "bad pending state"); in GST_START_TEST() 89 GstState current, pending; in GST_START_TEST() local 97 ret = gst_element_get_state (sink, ¤t, &pending, 0); in GST_START_TEST() 100 fail_unless (pending == GST_STATE_PLAYING, "bad pending state"); in GST_START_TEST() 110 ret = gst_element_get_state (sink, ¤t, &pending, GST_CLOCK_TIME_NONE); in GST_START_TEST() 113 fail_unless (pending == GST_STATE_VOID_PENDING, "bad pending state"); in GST_START_TEST() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | LLVMReactorDebugInfo.cpp | 282 if(scope.pending.location != location) in EmitVariable() 296 scope.pending = Pending{}; in EmitVariable() 297 scope.pending.name = name; in EmitVariable() 298 scope.pending.location = location; in EmitVariable() 299 scope.pending.diLocation = getLocation(backtrace, i); in EmitVariable() 300 scope.pending.value = value; in EmitVariable() 301 scope.pending.block = block; in EmitVariable() 302 scope.pending.insertAfter = insertAfter; in EmitVariable() 303 scope.pending.scope = scope.di; in EmitVariable() 309 scope.pending.addNopOnNextLine = true; in EmitVariable() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/sigpending/ |
D | sigpending02.c | 80 sigset_t pending; in test_sigpending() local 81 sigemptyset(&pending); in test_sigpending() 82 TEST(tested_sigpending(&pending)); in test_sigpending() 85 if (sigismember(&pending, i)) in test_sigpending() 97 sigemptyset(&pending); in test_sigpending() 98 TEST(tested_sigpending(&pending)); in test_sigpending() 100 if ((i == SIGUSR1) != sigismember(&pending, i)) in test_sigpending() 111 sigemptyset(&pending); in test_sigpending() 112 TEST(tested_sigpending(&pending)); in test_sigpending() 114 if ((i == SIGUSR1 || i == SIGUSR2) != sigismember(&pending, i)) in test_sigpending()
|
/third_party/weston/ivi-shell/ |
D | ivi-layout.c | 90 } pending; member 302 wl_list_init(&iviscrn->pending.layer_list); in create_screen() 666 if (ivisurf->pending.prop.transition_type == IVI_LAYOUT_TRANSITION_VIEW_DEFAULT) { in commit_surface_list() 673 ivisurf->pending.prop.dest_x, in commit_surface_list() 674 ivisurf->pending.prop.dest_y, in commit_surface_list() 675 ivisurf->pending.prop.dest_width, in commit_surface_list() 676 ivisurf->pending.prop.dest_height, in commit_surface_list() 677 ivisurf->pending.prop.transition_duration); in commit_surface_list() 679 if (ivisurf->pending.prop.visibility) { in commit_surface_list() 680 ivi_layout_transition_visibility_on(ivisurf, ivisurf->pending.prop.transition_duration); in commit_surface_list() [all …]
|
/third_party/weston/fullscreen-shell/ |
D | fullscreen-shell.c | 78 } pending; member 309 pending.surface_destroyed); in pending_surface_destroyed() 310 fsout->pending.surface = NULL; in pending_surface_destroyed() 335 fsout->pending.surface_destroyed.notify = pending_surface_destroyed; in fs_output_create() 471 if (fsout->pending.surface == configured_surface) in fs_output_configure_simple() 539 if (fsout->pending.surface != configured_surface) { in fs_output_configure_for_mode() 547 surface_subsurfaces_boundingbox(fsout->pending.surface, in fs_output_configure_for_mode() 573 mode.refresh = fsout->pending.framerate; in fs_output_configure_for_mode() 581 if (fsout->pending.mode_feedback) { in fs_output_configure_for_mode() 583 fsout->pending.mode_feedback); in fs_output_configure_for_mode() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_format.cc | 350 const char* pending = format.c_str(); // NUL terminated in format() local 351 const char* cur = pending; in format() 352 const char* end = pending + format.length(); in format() 360 if (cur != start && pending == start) { in format() 361 result.append(pending, static_cast<std::size_t>(cur - pending)); in format() 362 pending = start = cur; in format() 371 if (cur != start && pending == start) { in format() 372 std::size_t escaped = static_cast<std::size_t>(cur - pending) / 2; in format() 373 result.append(pending, escaped); in format() 374 pending += escaped * 2; in format() [all …]
|
/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_format.cc | 350 const char* pending = format.c_str(); // NUL terminated in format() local 351 const char* cur = pending; in format() 352 const char* end = pending + format.length(); in format() 360 if (cur != start && pending == start) { in format() 361 result.append(pending, static_cast<std::size_t>(cur - pending)); in format() 362 pending = start = cur; in format() 371 if (cur != start && pending == start) { in format() 372 std::size_t escaped = static_cast<std::size_t>(cur - pending) / 2; in format() 373 result.append(pending, escaped); in format() 374 pending += escaped * 2; in format() [all …]
|
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/ |
D | gstrtprtxqueue.c | 174 g_list_foreach (rtx->pending, (GFunc) gst_buffer_unref, NULL); in gst_rtp_rtx_queue_reset() 175 g_list_free (rtx->pending); in gst_rtp_rtx_queue_reset() 176 rtx->pending = NULL; in gst_rtp_rtx_queue_reset() 255 rtx->pending = g_list_prepend (rtx->pending, gst_buffer_ref (buffer)); in push_seqnum() 383 GList *pending; in gst_rtp_rtx_queue_chain() local 391 pending = rtx->pending; in gst_rtp_rtx_queue_chain() 392 rtx->pending = NULL; in gst_rtp_rtx_queue_chain() 395 pending = g_list_reverse (pending); in gst_rtp_rtx_queue_chain() 396 g_list_foreach (pending, (GFunc) do_push, rtx); in gst_rtp_rtx_queue_chain() 397 g_list_free (pending); in gst_rtp_rtx_queue_chain() [all …]
|
/third_party/boost/libs/wave/samples/emit_custom_line_directives/ |
D | emit_custom_line_directives.hpp | 63 emit_line_directive(ContextT const& ctx, ContainerT &pending, in emit_line_directive() argument 74 pending.push_back(result_type(T_POUND, "#", pos)); in emit_line_directive() 77 pending.push_back(result_type(T_SPACE, " ", pos)); in emit_line_directive() 87 pending.push_back(result_type(T_INTLIT, buffer, pos)); in emit_line_directive() 89 pending.push_back(result_type(T_SPACE, " ", pos)); in emit_line_directive() 99 pending.push_back(result_type(T_STRINGLIT, file.c_str(), pos)); in emit_line_directive() 101 pending.push_back(result_type(T_GENERATEDNEWLINE, "\n", pos)); in emit_line_directive()
|
/third_party/node/test/sequential/ |
D | test-net-connect-econnrefused.js | 41 let pending; 42 for (pending = 0; pending < ATTEMPTS_PER_ROUND; pending++) { 44 console.log('pending', pending, 'rounds', rounds); 46 if (--pending > 0) return;
|
/third_party/musl/src/multibyte/ |
D | mbrtoc16.c | 8 unsigned *pending = (unsigned *)ps; in mbrtoc16() local 14 if ((int)*pending > 0) { in mbrtoc16() 15 if (pc16) *pc16 = *pending; in mbrtoc16() 16 *pending = 0; in mbrtoc16() 24 *pending = (wc & 0x3ff) + 0xdc00; in mbrtoc16()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/ |
D | 12-1.c | 57 sigset_t mask, pending; in main() local 100 ret = sigpending(&pending); in main() 107 ret = sigismember(&pending, SIGUSR1); in main() 115 ret = sigismember(&pending, SIGUSR2); in main() 176 ret = sigpending(&pending); in main() 183 ret = sigismember(&pending, SIGUSR1); in main() 195 ret = sigismember(&pending, SIGUSR2); in main()
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/gen/ |
D | generate.go | 250 pending := strings.Builder{} 254 if pending.Len() > 0 { 255 parts = append(parts, fmt.Sprintf(`"%v"`, pending.String())) 256 pending.Reset() 259 if pending.Len() > 0 { 260 parts = append(parts, pending.String()) 261 pending.Reset() 264 pending.WriteRune(r) 267 if pending.Len() > 0 { 268 parts = append(parts, fmt.Sprintf(`"%v"`, pending.String()))
|
/third_party/grpc/src/core/lib/iomgr/ |
D | timer_custom.cc | 38 GPR_ASSERT(timer->pending); in grpc_custom_timer_callback() 39 timer->pending = false; in grpc_custom_timer_callback() 52 timer->pending = false; in timer_init() 57 timer->pending = true; in timer_init() 70 if (timer->pending) { in timer_cancel() 71 timer->pending = false; in timer_cancel()
|
/third_party/node/deps/npm/node_modules/tunnel-agent/ |
D | index.js | 58 var pending = self.requests[i] 59 if (pending.host === host && pending.port === port) { 63 pending.request.onSocket(socket) 95 TunnelingAgent.prototype.createConnection = function createConnection(pending) { argument 98 self.createSocket(pending, function(socket) { 102 pending.request.onSocket(socket) 105 self.emit('free', socket, pending.host, pending.port) 190 var pending = this.requests.shift() 191 if (pending) { 194 this.createConnection(pending)
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_windows_utils.py | 28 self.assertFalse(ov1.pending) 32 self.assertTrue(ov1.pending) 43 self.assertFalse(ov2.pending) 52 self.assertFalse(ov1.pending) 54 self.assertFalse(ov2.pending) 112 self.assertFalse(ovout.pending) 113 self.assertFalse(overr.pending) 114 self.assertFalse(ovin.pending)
|
/third_party/flutter/skia/third_party/externals/sdl/src/timer/ |
D | SDL_timer.c | 63 SDL_Timer *pending; member 104 SDL_Timer *pending; in SDL_TimerThread() local 120 pending = data->pending; in SDL_TimerThread() 121 data->pending = NULL; in SDL_TimerThread() 132 while (pending) { in SDL_TimerThread() 133 current = pending; in SDL_TimerThread() 134 pending = pending->next; in SDL_TimerThread() 330 timer->next = data->pending; in SDL_AddTimer() 331 data->pending = timer; in SDL_AddTimer()
|
/third_party/jerryscript/tests/debugger/ |
D | do_pending_breakpoints.expected | 4 No breakpoint found, do you want to add a pending breakpoint? (y or [n]) 7 No breakpoint found, do you want to add a pending breakpoint? (y or [n]) 11 1: :1 (pending) 12 2: f() (pending) 14 out: pending-breakpoints
|
/third_party/node/test/parallel/ |
D | test-fs-ready-event-stream.js | 9 assert.strictEqual(readStream.pending, true); 11 assert.strictEqual(readStream.pending, false); 17 assert.strictEqual(writeStream.pending, true); 19 assert.strictEqual(writeStream.pending, false);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | cord_internal.cc | 39 absl::InlinedVector<CordRep*, Constants::kInlinedVectorSize> pending; in Destroy() local 46 pending.push_back(right); in Destroy() 78 if (!pending.empty()) { in Destroy() 79 rep = pending.back(); in Destroy() 80 pending.pop_back(); in Destroy()
|
/third_party/glib/gio/ |
D | gfileenumerator.c | 34 guint pending : 1; member 216 if (enumerator->priv->pending) in g_file_enumerator_next_file() 235 enumerator->priv->pending = TRUE; in g_file_enumerator_next_file() 237 enumerator->priv->pending = FALSE; in g_file_enumerator_next_file() 275 if (enumerator->priv->pending) in g_file_enumerator_close() 285 enumerator->priv->pending = TRUE; in g_file_enumerator_close() 287 enumerator->priv->pending = FALSE; in g_file_enumerator_close() 303 enumerator->priv->pending = FALSE; in next_async_callback_wrapper() 372 if (enumerator->priv->pending) in g_file_enumerator_next_files_async() 383 enumerator->priv->pending = TRUE; in g_file_enumerator_next_files_async() [all …]
|
D | gcontextspecificgroup.c | 33 GQueue pending; member 46 g_assert (!g_queue_is_empty (&css->pending)); in g_context_specific_source_dispatch() 47 signal_id = GPOINTER_TO_UINT (g_queue_pop_head (&css->pending)); in g_context_specific_source_dispatch() 49 if (g_queue_is_empty (&css->pending)) in g_context_specific_source_dispatch() 65 g_queue_clear (&css->pending); in g_context_specific_source_finalize() 88 g_queue_init (&css->pending); in g_context_specific_source_new() 264 g_queue_remove (&css->pending, ptr); in g_context_specific_group_emit() 265 g_queue_push_tail (&css->pending, ptr); in g_context_specific_group_emit()
|
/third_party/weston/clients/ |
D | nested.c | 121 } pending; member 403 &surface->pending.frame_callback_list, link) in destroy_surface() 406 pixman_region32_fini(&surface->pending.damage); in destroy_surface() 459 if (surface->pending.buffer) in surface_attach() 460 wl_list_remove(&surface->pending.buffer_destroy_listener.link); in surface_attach() 462 surface->pending.buffer = buffer; in surface_attach() 463 surface->pending.newly_attached = 1; in surface_attach() 466 &surface->pending.buffer_destroy_listener); in surface_attach() 497 pixman_region32_union_rect(&surface->pending.damage, in surface_damage() 498 &surface->pending.damage, in surface_damage() [all …]
|
/third_party/selinux/libselinux/utils/ |
D | getsebool.c | 17 int i, get_all = 0, rc = 0, active, pending, len = 0, opt; in main() local 84 pending = security_get_boolean_pending(names[i]); in main() 85 if (pending < 0) { in main() 98 if (pending != active) { in main() 101 (pending ? "on" : "off")); in main()
|
/third_party/python/Lib/lib2to3/fixes/ |
D | fix_import.py | 23 pending = [names] 24 while pending: 25 node = pending.pop() 31 pending.append(node.children[0]) 33 pending.extend(node.children[::-2])
|