Home
last modified time | relevance | path

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

12345678910>>...23

/third_party/python/Lib/test/
Dtest_gc.py90 gc.collect()
92 self.assertEqual(gc.collect(), 1)
97 gc.collect()
99 self.assertEqual(gc.collect(), 1)
106 gc.collect()
109 self.assertEqual(gc.collect(), 2)
115 gc.collect()
117 self.assertNotEqual(gc.collect(), 0)
122 gc.collect()
124 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 …]
/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.c227 ogg_mux->collect = gst_collect_pads_new (); in gst_ogg_mux_init()
228 gst_collect_pads_set_function (ogg_mux->collect, in gst_ogg_mux_init()
231 gst_collect_pads_set_event_function (ogg_mux->collect, in gst_ogg_mux_init()
249 if (ogg_mux->collect) { in gst_ogg_mux_finalize()
250 gst_object_unref (ogg_mux->collect); in gst_ogg_mux_finalize()
251 ogg_mux->collect = NULL; in gst_ogg_mux_finalize()
292 for (walk = ogg_mux->collect->data; walk; walk = g_slist_next (walk)) { in gst_ogg_mux_flush()
362 walk = ogg_mux->collect->data; in gst_ogg_mux_is_serialno_present()
483 gst_collect_pads_add_pad (ogg_mux->collect, newpad, in gst_ogg_mux_request_new_pad()
520 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.c514 statscollector_t *collect = (statscollector_t*) arg; in statsForSubEntry() local
518 sinfo = PyObject_CallFunction((PyObject*) collect->state->stats_subentry_type, in statsForSubEntry()
523 collect->factor * sentry->tt, in statsForSubEntry()
524 collect->factor * sentry->it); in statsForSubEntry()
527 err = PyList_Append(collect->sublist, sinfo); in statsForSubEntry()
535 statscollector_t *collect = (statscollector_t*) arg; in statsForEntry() local
542 collect->sublist = PyList_New(0); in statsForEntry()
543 if (collect->sublist == NULL) in statsForEntry()
546 statsForSubEntry, collect) != 0) { in statsForEntry()
547 Py_DECREF(collect->sublist); in statsForEntry()
[all …]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
DNumberingSchemes.java18 import static com.google.common.collect.ImmutableMap.toImmutableMap;
19 import static com.google.common.collect.ImmutableSet.toImmutableSet;
23 import com.google.common.collect.ImmutableMap;
24 import com.google.common.collect.ImmutableSet;
42 schemes.stream().collect(toImmutableMap(NumberingScheme::getCallingCode, identity())); in from()
45 .collect(toImmutableSet()); in from()
DRangesTableSchema.java19 import static com.google.common.collect.DiscreteDomain.integers;
20 import static com.google.common.collect.ImmutableList.toImmutableList;
21 import static com.google.common.collect.ImmutableMap.toImmutableMap;
27 import com.google.common.collect.ContiguousSet;
28 import com.google.common.collect.ImmutableMap;
29 import com.google.common.collect.ImmutableRangeSet;
30 import com.google.common.collect.ImmutableSet;
31 import com.google.common.collect.ImmutableSortedSet;
32 import com.google.common.collect.Range;
136 .collect(toImmutableMap(identity(), v -> ValidNumberType.valueOf(v.name())));
[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/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ant/
DConvertIcuDataTask.java11 import static com.google.common.collect.ImmutableList.toImmutableList;
12 import static com.google.common.collect.ImmutableMap.toImmutableMap;
13 import static com.google.common.collect.ImmutableTable.toImmutableTable;
14 import static com.google.common.collect.Tables.immutableCell;
45 import com.google.common.collect.HashMultimap;
46 import com.google.common.collect.ImmutableList;
47 import com.google.common.collect.ImmutableMap;
48 import com.google.common.collect.ImmutableSet;
49 import com.google.common.collect.ImmutableTable;
50 import com.google.common.collect.Iterables;
[all …]
DLocaleIdResolver.java9 import static com.google.common.collect.ImmutableSet.toImmutableSet;
19 import com.google.common.collect.ImmutableListMultimap;
20 import com.google.common.collect.ImmutableSet;
21 import com.google.common.collect.Iterables;
22 import com.google.common.collect.Multimaps;
23 import com.google.common.collect.Sets;
50 .collect(toImmutableSet()); in resolve()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
DRegexTransformer.java7 import static com.google.common.collect.ImmutableList.toImmutableList;
8 import static com.google.common.collect.ImmutableListMultimap.toImmutableListMultimap;
9 import static com.google.common.collect.ImmutableSetMultimap.toImmutableSetMultimap;
29 import com.google.common.collect.ImmutableList;
30 import com.google.common.collect.ImmutableListMultimap;
31 import com.google.common.collect.ImmutableSetMultimap;
63 rules.stream().collect(toImmutableSetMultimap(Rule::getDataType, Rule::getPathPrefix)); in RegexTransformer()
65 rules.stream().collect(toImmutableListMultimap(Rule::getPathPrefix, identity())); in RegexTransformer()
67 rules.stream().flatMap(Rule::getFallbackFunctions).collect(toImmutableList()); in RegexTransformer()
140 .collect(toImmutableList()); in getFallbackResultsFor()
DRuleParser.java7 import static com.google.common.collect.ImmutableMap.toImmutableMap;
8 import static com.google.common.collect.Maps.filterValues;
9 import static com.google.common.collect.Maps.transformValues;
22 import com.google.common.collect.ImmutableList;
23 import com.google.common.collect.ImmutableMap;
59 .collect(ImmutableMap.toImmutableMap(m -> m.group(1).charAt(0), m -> m.group(2))); in parseConfig()
74 functions.stream().collect(toImmutableMap(NamedFunction::getName, identity())); in RuleParser()
124 .collect(toImmutableMap( in parseResultSpec()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
DTerritoryContainment.java6 import static com.google.common.collect.ImmutableSetMultimap.toImmutableSetMultimap;
18 import com.google.common.collect.ImmutableSet;
19 import com.google.common.collect.ImmutableSetMultimap;
20 import com.google.common.collect.SetMultimap;
21 import com.google.common.collect.Sets;
22 import com.google.common.collect.SortedSetMultimap;
23 import com.google.common.collect.TreeMultimap;
91 .collect(toImmutableSetMultimap(Entry::getKey, Entry::getValue)); in TerritoryContainment()
/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()
/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/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
DICUCurrencyMetaInfo.java37 return collect(new InfoCollector(), filter); in currencyInfo()
42 return collect(new CurrencyCollector(), filter); in currencies()
47 return collect(new RegionCollector(), filter); in regions()
71 private <T> List<T> collect(Collector<T> collector, CurrencyFilter filter) { in collect() method in ICUCurrencyMetaInfo
114 collector.collect(b.getKey(), null, 0, 0, -1, false); in collectRegion()
162 collector.collect(region, currency, from, to, i, tender); in collectRegion()
203 …public void collect(String region, String currency, long from, long to, int priority, boolean tend… in collect() method in ICUCurrencyMetaInfo.InfoCollector
222 public void collect( in collect() method in ICUCurrencyMetaInfo.RegionCollector
242 public void collect( in collect() method in ICUCurrencyMetaInfo.CurrencyCollector
280 … void collect(String region, String currency, long from, long to, int priority, boolean tender); in collect() method
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/
DMultiValue.java19 import static com.google.common.collect.ImmutableList.toImmutableList;
23 import com.google.common.collect.Comparators;
24 import com.google.common.collect.ImmutableList;
25 import com.google.common.collect.ImmutableSet;
26 import com.google.common.collect.ImmutableSortedSet;
80 return splitter.splitToList(s).stream().map(fn).collect(toImmutableList()); in parse()
DCsvTable.java20 import static com.google.common.collect.ImmutableList.toImmutableList;
21 import static com.google.common.collect.ImmutableSet.toImmutableSet;
22 import static com.google.common.collect.ImmutableSortedSet.toImmutableSortedSet;
31 import com.google.common.collect.ImmutableList;
32 import com.google.common.collect.ImmutableMap;
33 import com.google.common.collect.ImmutableSet;
34 import com.google.common.collect.ImmutableSortedSet;
35 import com.google.common.collect.Maps;
36 import com.google.common.collect.Ordering;
37 import com.google.common.collect.Sets;
[all …]
DRangeTable.java20 import static com.google.common.collect.ImmutableList.toImmutableList;
21 import static com.google.common.collect.ImmutableMap.toImmutableMap;
22 import static com.google.common.collect.ImmutableSet.toImmutableSet;
23 import static com.google.common.collect.Iterables.transform;
24 import static com.google.common.collect.Maps.immutableEntry;
30 import com.google.common.collect.HashBasedTable;
31 import com.google.common.collect.ImmutableList;
32 import com.google.common.collect.ImmutableMap;
33 import com.google.common.collect.ImmutableSet;
34 import com.google.common.collect.ImmutableTable;
[all …]
DSchema.java19 import static com.google.common.collect.ImmutableList.toImmutableList;
22 import com.google.common.collect.ImmutableCollection;
23 import com.google.common.collect.ImmutableMap;
24 import com.google.common.collect.ImmutableSet;
25 import com.google.common.collect.Ordering;
143 schema.names().stream().filter(names()::contains).collect(toImmutableList())); in isSubSchemaOf()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DIcuConverterConfig.java20 import com.google.common.collect.ImmutableMap;
21 import com.google.common.collect.ImmutableSet;
22 import com.google.common.collect.ImmutableSetMultimap;
23 import com.google.common.collect.ImmutableTable;
24 import com.google.common.collect.SetMultimap;
25 import com.google.common.collect.Sets;
26 import com.google.common.collect.Table;
27 import com.google.common.collect.TreeBasedTable;
28 import com.google.common.collect.TreeMultimap;
/third_party/python/Lib/test/leakers/
Dtest_selftype.py13 gc.collect(); gc.collect(); gc.collect()

12345678910>>...23