Home
last modified time | relevance | path

Searched refs:collect (Results 1 – 25 of 406) sorted by relevance

12345678910>>...17

/third_party/python/Lib/test/
Dtest_gc.py89 gc.collect()
91 self.assertEqual(gc.collect(), 1)
96 gc.collect()
98 self.assertEqual(gc.collect(), 1)
105 gc.collect()
108 self.assertEqual(gc.collect(), 2)
114 gc.collect()
116 self.assertNotEqual(gc.collect(), 0)
121 gc.collect()
123 self.assertNotEqual(gc.collect(), 0)
[all …]
Dtest_finalization.py51 gc.collect()
145 gc.collect()
174 gc.collect()
178 gc.collect()
188 gc.collect()
193 gc.collect()
205 gc.collect()
208 gc.collect()
219 gc.collect()
223 gc.collect()
[all …]
Dtest_weakref.py85 def collect(): function
88 gc.collect()
91 t = threading.Thread(target=collect)
528 wr = weakref.ref(c, lambda ignore: gc.collect())
536 wr = weakref.ref(c1.i, lambda ignore: gc.collect())
589 gc.collect()
618 gc.collect()
642 gc.collect()
670 gc.collect()
705 gc.collect()
[all …]
/third_party/typescript/src/services/
DcallHierarchy.ts356 function collect(node: Node | undefined) {
368 collect(member.name.expression);
387 collect((node as TypeAssertion | AsExpression).expression);
392 collect((node as VariableDeclaration | ParameterDeclaration).name);
393 collect((node as VariableDeclaration | ParameterDeclaration).initializer);
398 collect((node as CallExpression).expression);
399 forEach((node as CallExpression).arguments, collect);
404 collect((node as NewExpression).expression);
405 forEach((node as NewExpression).arguments, collect);
410 collect((node as TaggedTemplateExpression).tag);
[all …]
/third_party/python/Lib/test/dtracedata/
Dinstance.py10 gc.collect()
13 gc.collect()
17 gc.collect()
20 gc.collect()
22 gc.collect()
24 gc.collect()
Dgc.py4 gc.collect(0)
5 gc.collect(1)
6 gc.collect(2)
10 gc.collect(2)
12 gc.collect()
/third_party/gstreamer/gstplugins_base/ext/ogg/
Dgstoggmux.c221 ogg_mux->collect = gst_collect_pads_new (); in gst_ogg_mux_init()
222 gst_collect_pads_set_function (ogg_mux->collect, in gst_ogg_mux_init()
225 gst_collect_pads_set_event_function (ogg_mux->collect, in gst_ogg_mux_init()
243 if (ogg_mux->collect) { in gst_ogg_mux_finalize()
244 gst_object_unref (ogg_mux->collect); in gst_ogg_mux_finalize()
245 ogg_mux->collect = NULL; in gst_ogg_mux_finalize()
286 for (walk = ogg_mux->collect->data; walk; walk = g_slist_next (walk)) { in gst_ogg_mux_flush()
356 walk = ogg_mux->collect->data; in gst_ogg_mux_is_serialno_present()
477 gst_collect_pads_add_pad (ogg_mux->collect, newpad, in gst_ogg_mux_request_new_pad()
514 gst_collect_pads_remove_pad (ogg_mux->collect, pad); in gst_ogg_mux_release_pad()
[all …]
/third_party/gstreamer/gstreamer/tests/check/libs/
Dcollectpads.c44 GstCollectPads *collect; member
134 gst_collect_pads_add_pad (aggregator->collect, newpad, in gst_aggregator_request_new_pad()
148 gst_collect_pads_remove_pad (aggregator->collect, newpad); in gst_aggregator_request_new_pad()
159 if (aggregator->collect) in gst_aggregator_release_pad()
160 gst_collect_pads_remove_pad (aggregator->collect, pad); in gst_aggregator_release_pad()
174 gst_collect_pads_start (aggregator->collect); in gst_aggregator_change_state()
181 gst_collect_pads_stop (aggregator->collect); in gst_aggregator_change_state()
204 if (aggregator->collect) { in gst_aggregator_dispose()
205 gst_object_unref (aggregator->collect); in gst_aggregator_dispose()
206 aggregator->collect = NULL; in gst_aggregator_dispose()
[all …]
/third_party/python/Modules/
D_lsprof.c501 statscollector_t *collect = (statscollector_t*) arg; in statsForSubEntry() local
510 collect->factor * sentry->tt, in statsForSubEntry()
511 collect->factor * sentry->it); in statsForSubEntry()
514 err = PyList_Append(collect->sublist, sinfo); in statsForSubEntry()
522 statscollector_t *collect = (statscollector_t*) arg; in statsForEntry() local
529 collect->sublist = PyList_New(0); in statsForEntry()
530 if (collect->sublist == NULL) in statsForEntry()
533 statsForSubEntry, collect) != 0) { in statsForEntry()
534 Py_DECREF(collect->sublist); in statsForEntry()
540 collect->sublist = Py_None; in statsForEntry()
[all …]
/third_party/glib/tests/gobject/
Dgvalue-test.c110 collect (GValue *value, ...) in collect() function
146 error = collect (&value, 'c'); in test_collection()
152 error = collect (&value, 129); in test_collection()
158 error = collect (&value, TRUE); in test_collection()
164 error = collect (&value, G_MAXINT); in test_collection()
170 error = collect (&value, G_MAXUINT); in test_collection()
176 error = collect (&value, G_MAXLONG); in test_collection()
182 error = collect (&value, G_MAXULONG); in test_collection()
188 error = collect (&value, G_MAXINT64); in test_collection()
194 error = collect (&value, G_MAXUINT64); in test_collection()
[all …]
/third_party/python/Lib/ctypes/test/
Dtest_frombuffer.py29 del x; del y; gc.collect(); gc.collect(); gc.collect()
38 del a; gc.collect(); gc.collect(); gc.collect()
83 gc.collect() # Should not crash
103 del a; gc.collect(); gc.collect(); gc.collect()
Dtest_refcounts.py34 gc.collect()
56 gc.collect()
72 gc.collect()
84 gc.collect()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DICUCurrencyMetaInfo.java39 return collect(new InfoCollector(), filter); in currencyInfo()
44 return collect(new CurrencyCollector(), filter); in currencies()
49 return collect(new RegionCollector(), filter); in regions()
73 private <T> List<T> collect(Collector<T> collector, CurrencyFilter filter) { in collect() method in ICUCurrencyMetaInfo
116 collector.collect(b.getKey(), null, 0, 0, -1, false); in collectRegion()
164 collector.collect(region, currency, from, to, i, tender); in collectRegion()
205 …public void collect(String region, String currency, long from, long to, int priority, boolean tend… in collect() method in ICUCurrencyMetaInfo.InfoCollector
224 public void collect( in collect() method in ICUCurrencyMetaInfo.RegionCollector
244 public void collect( in collect() method in ICUCurrencyMetaInfo.CurrencyCollector
282 … void collect(String region, String currency, long from, long to, int priority, boolean tender); in collect() method
/third_party/python/Lib/test/leakers/
Dtest_selftype.py13 gc.collect(); gc.collect(); gc.collect()
/third_party/typescript/tests/baselines/reference/
DextendArray.types21 collect(fn:(e:_element) => _element[]) : any[];
22 >collect : (fn: (e: any) => _element[]) => any[]
37 arr.collect = function (fn) {
38 >arr.collect = function (fn) { var res = []; for (var i = 0; i < this.length; ++i) { v…
39 >arr.collect : any
41 >collect : any
DextendArray.js8 collect(fn:(e:_element) => _element[]) : any[];
14 arr.collect = function (fn) { function
30 arr.collect = function (fn) { function
/third_party/node/test/parallel/
Dtest-emit-after-uncaught-exception.js8 let collect = true; variable
11 before(id) { if (collect) id_obj[id] = true; },
17 collect = false;
/third_party/gstreamer/gstplugins_bad/gst/mpegpsmux/
Dmpegpsmux.c150 mux->collect = gst_collect_pads_new (); in mpegpsmux_init()
151 gst_collect_pads_set_function (mux->collect, in mpegpsmux_init()
167 if (mux->collect) { in mpegpsmux_finalize()
168 gst_object_unref (mux->collect); in mpegpsmux_finalize()
169 mux->collect = NULL; in mpegpsmux_finalize()
354 GSList *walk = mux->collect->data; in mpegpsmux_create_streams()
385 buf = gst_collect_pads_peek (mux->collect, c_data); in mpegpsmux_queue_buffer_for_stream()
449 for (walk = mux->collect->data; walk != NULL; walk = g_slist_next (walk)) { in mpegpsmux_choose_best_stream()
481 gst_buffer_unref (gst_collect_pads_pop (mux->collect, c_best)); in mpegpsmux_choose_best_stream()
542 best->collect.pad, best->stream_id, in mpegpsmux_collected()
[all …]
/third_party/libxkbcommon/src/xkbcomp/
Dcompat.c804 struct collect { struct
810 struct collect *collect) in CopyInterps() argument
817 darray_append(collect->sym_interprets, si->interp); in CopyInterps()
880 struct collect collect; in CopyCompatToKeymap() local
881 darray_init(collect.sym_interprets); in CopyCompatToKeymap()
884 CopyInterps(info, true, MATCH_EXACTLY, &collect); in CopyCompatToKeymap()
885 CopyInterps(info, true, MATCH_ALL, &collect); in CopyCompatToKeymap()
886 CopyInterps(info, true, MATCH_NONE, &collect); in CopyCompatToKeymap()
887 CopyInterps(info, true, MATCH_ANY, &collect); in CopyCompatToKeymap()
888 CopyInterps(info, true, MATCH_ANY_OR_NONE, &collect); in CopyCompatToKeymap()
[all …]
/third_party/openssl/util/
Dadd-depends.pl224 my %collect = ();
231 $collect{$target}->{$deps} = 1 if defined $target;
248 foreach my $target (sort keys %collect) {
250 my @deps = sort keys %{$collect{$target}};
/third_party/gstreamer/gstplugins_good/gst/videomixer/
Dvideomixer2.c135 GstCollectData collect; /* we extend the CollectData */ member
508 GST_COLLECT_PADS_STREAM_LOCK (mix->collect); in gst_videomixer2_pad_sink_setcaps()
515 GST_COLLECT_PADS_STREAM_UNLOCK (mix->collect); in gst_videomixer2_pad_sink_setcaps()
884 GstSegment *segment = &pad->mixcol->collect.segment; in gst_videomixer2_fill_queues()
888 buf = gst_collect_pads_peek (mix->collect, &mixcol->collect); in gst_videomixer2_fill_queues()
908 buf = gst_collect_pads_pop (mix->collect, &mixcol->collect); in gst_videomixer2_fill_queues()
925 buf = gst_collect_pads_pop (mix->collect, &mixcol->collect); in gst_videomixer2_fill_queues()
945 buf = gst_collect_pads_pop (mix->collect, &mixcol->collect); in gst_videomixer2_fill_queues()
976 buf = gst_collect_pads_pop (mix->collect, &mixcol->collect); in gst_videomixer2_fill_queues()
998 buf = gst_collect_pads_pop (mix->collect, &mixcol->collect); in gst_videomixer2_fill_queues()
[all …]
/third_party/gstreamer/gstplugins_base/gst/adder/
Dgstadder.c690 gst_collect_pads_set_flushing (adder->collect, TRUE); in gst_adder_src_event()
698 GST_COLLECT_PADS_STREAM_LOCK (adder->collect); in gst_adder_src_event()
700 GST_COLLECT_PADS_STREAM_UNLOCK (adder->collect); in gst_adder_src_event()
708 GST_COLLECT_PADS_STREAM_LOCK (adder->collect); in gst_adder_src_event()
720 gst_collect_pads_set_flushing (adder->collect, TRUE); in gst_adder_src_event()
722 GST_COLLECT_PADS_STREAM_UNLOCK (adder->collect); in gst_adder_src_event()
794 GST_COLLECT_PADS_STREAM_LOCK (adder->collect); in gst_adder_sink_event()
796 GST_COLLECT_PADS_STREAM_UNLOCK (adder->collect); in gst_adder_sink_event()
803 GST_COLLECT_PADS_STREAM_LOCK (adder->collect); in gst_adder_sink_event()
813 GST_COLLECT_PADS_STREAM_UNLOCK (adder->collect); in gst_adder_sink_event()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/
Dgsttagdemux.c94 GstBuffer *collect; member
242 GstBuffer **buffer_p = &tagdemux->priv->collect; in gst_tag_demux_reset()
484 if (demux->priv->collect == NULL) { in update_collected()
485 demux->priv->collect = buf; in update_collected()
487 demux->priv->collect = gst_buffer_append (demux->priv->collect, buf); in update_collected()
495 GstBuffer *collect; in gst_tag_demux_chain_parse_tag() local
519 demux->priv->collect = gst_buffer_make_writable (demux->priv->collect); in gst_tag_demux_chain_parse_tag()
520 collect = demux->priv->collect; in gst_tag_demux_chain_parse_tag()
522 g_assert (gst_buffer_is_writable (collect)); in gst_tag_demux_chain_parse_tag()
527 if (GST_BUFFER_OFFSET_IS_VALID (collect) && GST_BUFFER_OFFSET (collect) != 0) { in gst_tag_demux_chain_parse_tag()
[all …]
/third_party/gstreamer/gstplugins_good/gst/multipart/
Dmultipartmux.c152 multipart_mux->collect = gst_collect_pads_new (); in gst_multipart_mux_init()
153 gst_collect_pads_set_event_function (multipart_mux->collect, in gst_multipart_mux_init()
156 gst_collect_pads_set_function (multipart_mux->collect, in gst_multipart_mux_init()
170 if (multipart_mux->collect) in gst_multipart_mux_finalize()
171 gst_object_unref (multipart_mux->collect); in gst_multipart_mux_finalize()
201 gst_collect_pads_add_pad (multipart_mux->collect, newpad, in gst_multipart_mux_request_new_pad()
352 walk = mux->collect->data; in gst_multipart_mux_queue_pads()
363 buf = gst_collect_pads_pop (mux->collect, data); in gst_multipart_mux_queue_pads()
665 gst_collect_pads_start (multipart_mux->collect); in gst_multipart_mux_change_state()
669 gst_collect_pads_stop (multipart_mux->collect); in gst_multipart_mux_change_state()
/third_party/gstreamer/gstplugins_bad/gst/frei0r/
Dgstfrei0rmixer.c72 if (self->collect) in gst_frei0r_mixer_finalize()
73 gst_object_unref (self->collect); in gst_frei0r_mixer_finalize()
74 self->collect = NULL; in gst_frei0r_mixer_finalize()
120 gst_collect_pads_start (self->collect); in gst_frei0r_mixer_change_state()
133 gst_collect_pads_stop (self->collect); in gst_frei0r_mixer_change_state()
469 gst_collect_pads_set_flushing (self->collect, TRUE); in gst_frei0r_mixer_src_event()
686 self->collect = gst_collect_pads_new (); in gst_frei0r_mixer_init()
687 gst_collect_pads_set_function (self->collect, in gst_frei0r_mixer_init()
689 gst_collect_pads_set_event_function (self->collect, in gst_frei0r_mixer_init()
691 gst_collect_pads_set_query_function (self->collect, in gst_frei0r_mixer_init()
[all …]

12345678910>>...17