Home
last modified time | relevance | path

Searched refs:collected (Results 1 - 25 of 30) sorted by relevance

12

/third_party/node/test/parallel/
H A Dtest-net-connect-memleak.js35 let collected = false;
36 const gcListener = { ongc() { collected = true; } };
46 assert.strictEqual(collected, false);
54 assert.strictEqual(collected, true);
H A Dtest-tls-connect-memleak.js42 let collected = false;
43 const gcListener = { ongc() { collected = true; } };
54 assert.strictEqual(collected, false);
62 assert.strictEqual(collected, true);
H A Dtest-gc-http-client-connaborted.js57 console.log(`done/collected/total: ${done}/${countGC}/${count}`);
H A Dtest-gc-net-timeout.js68 console.log(`done/collected/total: ${done}/${countGC}/${count}`);
/third_party/gn/src/gn/
H A Dcommand_meta.cc27 Lists collected metaresults of all given targets for the given data key(s),
53 collected metadata will be rebased onto this path. This option will throw errors
54 if collected metadata is not a list of strings.
59 Lists collected metaresults for the `files` key in the //base/foo:foo
63 Lists collected metaresults for the `files` and `other` keys in the
67 Lists collected metaresults for the `files` key in the //base/foo:foo
71 Lists collected metaresults for the `files` key in the //base/foo:foo
H A Dcompile_commands_writer.cc356 TargetSet collected; in CollectDepsOfMatches() local
366 if (!collected.contains(target)) { in CollectDepsOfMatches()
367 collected.add(target); in CollectDepsOfMatches()
382 if (!collected.contains(pair.ptr)) { in CollectDepsOfMatches()
384 collected.add(pair.ptr); in CollectDepsOfMatches()
399 output.reserve(collected.size()); in CollectDepsOfMatches()
400 for (const Target* target : collected) { in CollectDepsOfMatches()
/third_party/icu/icu4c/source/python/icutools/databuilder/
H A Dfiltration.py402 collected = {}
410 if category not in collected:
413 collected[category] = filter_info
415 filter_info = collected[category]
421 for filter_info in collected.values():
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/
H A Dfiltration.py402 collected = {}
410 if category not in collected:
413 collected[category] = filter_info
415 filter_info = collected[category]
421 for filter_info in collected.values():
/third_party/libabigail/src/
H A Dabg-ir-priv.h925 pointer_set& collected) in collect_types_that_depends_on()
930 // First avoid infinite loop if we've already collected the in collect_types_that_depends_on()
932 if (collected.find(i) != collected.end()) in collect_types_that_depends_on()
938 collected.insert(i); in collect_types_that_depends_on()
939 collect_types_that_depends_on(t, types, collected); in collect_types_that_depends_on()
/third_party/node/test/sequential/
H A Dtest-gc-http-client-timeout.js57 console.log(`done/collected/total: ${done}/${countGC}/${numRequests}`);
H A Dtest-gc-http-client-onerror.js68 console.log(`done/collected/total: ${done}/${countGC}/${count}`);
H A Dtest-gc-http-client.js62 console.log(`done/collected/total: ${done}/${countGC}/${count}`);
/third_party/python/Include/internal/
H A Dpycore_gc.h125 /* total number of collected objects */
126 Py_ssize_t collected; member
144 /* a permanent generation which won't be collected */
/third_party/python/Modules/
H A Dgcmodule.c193 to gc_refs, for each object in the generation being collected.
196 being collected.
199 Objects in generation being collected are marked PREV_MASK_COLLECTING in
455 * generation being collected, which can be recognized in visit_decref()
468 * reachable from outside containers, and so can't be collected.
1183 Py_ssize_t m = 0; /* # objects collected */ in gc_collect_main()
1184 Py_ssize_t n = 0; /* # unreachable objects that couldn't be collected */ in gc_collect_main()
1335 stats->collected += m; in gc_collect_main()
1351 int generation, Py_ssize_t collected, in invoke_gc_callback()
1368 "collected", collecte in invoke_gc_callback()
1350 invoke_gc_callback(PyThreadState *tstate, const char *phase, int generation, Py_ssize_t collected, Py_ssize_t uncollectable) invoke_gc_callback() argument
1398 Py_ssize_t result, collected, uncollectable; gc_collect_with_callback() local
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/
H A DUnicodeMap.java710 public String toString(Comparator<T> collected) { in toString() argument
712 if (collected == null) { in toString()
728 Set<T> set = values(new TreeSet<T>(collected)); in toString()
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DUnicodeMap.java707 public String toString(Comparator<T> collected) { in toString() argument
709 if (collected == null) { in toString()
725 Set<T> set = values(new TreeSet<T>(collected)); in toString()
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/
H A Dbasic.rb510 collected = {}
511 m.each { |k,v| collected[v] = k }
512 assert collected == { 42 => "jkl;", 1 => "asdf" }
/third_party/elfutils/src/
H A Delflint.c2196 collected = { .p32 = xcalloc (bitmask_words, sizeof (Elf32_Word)) }; in check_gnu_hash() local
2261 collected.p32[maskidx] in check_gnu_hash()
2263 collected.p32[maskidx] in check_gnu_hash()
2268 collected.p64[maskidx] in check_gnu_hash()
2270 collected.p64[maskidx] in check_gnu_hash()
2293 if (memcmp (collected.p32, bitmask.p32, bitmask_words * sizeof (Elf32_Word))) in check_gnu_hash()
2298 free (collected.p32); in check_gnu_hash()
/third_party/protobuf/ruby/tests/
H A Dcommon_tests.rb410 collected = {}
411 m.each { |k,v| collected[v] = k }
412 assert collected == { 42 => "jkl;", 1 => "asdf" }
/third_party/python/Lib/
H A Dtyping.py262 for collected in _collect_parameters([x]):
263 if collected not in parameters:
264 parameters.append(collected)
1892 # These special attributes will be not collected as protocol members.
/third_party/python/Lib/test/
H A Dtest_concurrent_futures.py890 collected = my_object_collected.wait(timeout=support.SHORT_TIMEOUT)
891 self.assertTrue(collected,
892 "Stale reference not collected within timeout.")
/third_party/libabigail/tools/
H A Dfedabipkgdiff440 This is a simple collection containing RPMs collected from a
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs7553 assert_eq!(Rc::strong_count(&drop_count[1]), 2, "one element was collected"); in test_from_iter_specialization_head_tail_drop()
50035 let mut collected = self.replace_with.by_ref().collect::<Vec<I::Item>>().into_iter(); drop() variables
[all...]
/third_party/typescript/lib/
H A DtypingsInstaller.js[all...]
H A Dtsc.js[all...]

Completed in 130 milliseconds

12