HomeSort by relevance Sort by last modified time
    Searched refs:Collector (Results 1 - 25 of 52) sorted by null

1 2 3

  /platform_testing/utils/crashcollector/
crashcollector 19 exec app_process $base android.test.crashcollector.Collector $*
  /external/clang/lib/Frontend/
ModuleDependencyCollector.cpp 27 ModuleDependencyCollector &Collector;
31 ModuleDependencyListener(ModuleDependencyCollector &Collector)
32 : Collector(Collector) {}
73 SmallString<256> Dest = Collector.getDest();
83 Collector.addFileMapping(AbsoluteSrc, Dest);
90 if (Collector.insertSeen(Filename))
92 Collector.setHasErrors();
  /libcore/ojluni/src/main/java/java/util/stream/
Collectors.java 61 * Implementations of {@link Collector} that implement various useful reduction
106 static final Set<Collector.Characteristics> CH_CONCURRENT_ID
107 = Collections.unmodifiableSet(EnumSet.of(Collector.Characteristics.CONCURRENT,
108 Collector.Characteristics.UNORDERED,
109 Collector.Characteristics.IDENTITY_FINISH));
110 static final Set<Collector.Characteristics> CH_CONCURRENT_NOID
111 = Collections.unmodifiableSet(EnumSet.of(Collector.Characteristics.CONCURRENT,
112 Collector.Characteristics.UNORDERED));
113 static final Set<Collector.Characteristics> CH_ID
114 = Collections.unmodifiableSet(EnumSet.of(Collector.Characteristics.IDENTITY_FINISH))
    [all...]
Collector.java 50 * <p>A {@code Collector} is specified by four functions that work together to
63 * <p>A sequential implementation of a reduction using a collector would
72 * results, the collector functions must satisfy an <em>identity</em> and an
102 * differences in order. (For example, an unordered collector that accumulated
106 * <p>Libraries that implement reduction based on {@code Collector}, such as
107 * {@link Stream#collect(Collector)}, must adhere to the following constraints:
125 * the {@code Collector} needing to implement any additional synchronization.
134 * A concurrent reduction should only be applied if the collector has the
141 * can be used to construct collectors. For example, you could create a collector
145 * Collector<Widget, ?, TreeSet<Widget>> intoSet
    [all...]
ReferencePipeline.java 490 public final <R, A> R collect(Collector<? super P_OUT, A, R> collector) {
493 && (collector.characteristics().contains(Collector.Characteristics.CONCURRENT))
494 && (!isOrdered() || collector.characteristics().contains(Collector.Characteristics.UNORDERED))) {
495 container = collector.supplier().get();
496 BiConsumer<A, ? super P_OUT> accumulator = collector.accumulator();
500 container = evaluate(ReduceOps.makeRef(collector));
502 return collector.characteristics().contains(Collector.Characteristics.IDENTITY_FINISH
    [all...]
Stream.java     [all...]
ReduceOps.java 152 * @param collector a {@code Collector} defining the reduction
156 makeRef(Collector<? super T, I, ?> collector) {
157 Supplier<I> supplier = Objects.requireNonNull(collector).supplier();
158 BiConsumer<I, ? super T> accumulator = collector.accumulator();
159 BinaryOperator<I> combiner = collector.combiner();
185 return collector.characteristics().contains(Collector.Characteristics.UNORDERED)
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
Collector.java 21 class Collector extends DefaultBindingTargetVisitor<Object, Object> implements
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUCurrencyMetaInfo.java 71 private <T> List<T> collect(Collector<T> collector, CurrencyFilter filter) {
79 int needed = collector.collects();
97 collectRegion(collector, filter, needed, b);
101 collectRegion(collector, filter, needed, regionInfo.at(i));
106 return collector.getList();
109 private <T> void collectRegion(Collector<T> collector, CurrencyFilter filter,
114 collector.collect(b.getKey(), null, 0, 0, -1, false);
162 collector.collect(region, currency, from, to, i, tender)
    [all...]
  /external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
ICUCurrencyMetaInfo.java 69 private <T> List<T> collect(Collector<T> collector, CurrencyFilter filter) {
77 int needed = collector.collects();
95 collectRegion(collector, filter, needed, b);
99 collectRegion(collector, filter, needed, regionInfo.at(i));
104 return collector.getList();
107 private <T> void collectRegion(Collector<T> collector, CurrencyFilter filter,
112 collector.collect(b.getKey(), null, 0, 0, -1, false);
160 collector.collect(region, currency, from, to, i, tender)
    [all...]
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
GroupByOpTest.java 39 import java.util.stream.Collector;
63 Collector<Integer, Map<Boolean, List<Integer>>, Map<Boolean, List<Integer>>> collector local
64 = (Collector<Integer, Map<Boolean, List<Integer>>, Map<Boolean, List<Integer>>>) Collectors.groupingBy(LambdaTestHelpers.forPredicate(pEven, true, false));
66 Map<Boolean, List<Integer>> m = collector.supplier().get();
69 collector.accumulator().accept(m, i);
134 Collector<Integer, ?, Map<Object, List<Integer>>> tab = Collectors.groupingBy(md.m);
TabulatorsTest.java 47 import java.util.stream.Collector;
247 Collector<T, ?, ? extends M> collector,
250 boolean ordered = !collector.characteristics().contains(Collector.Characteristics.UNORDERED);
253 .terminal(s -> s.collect(collector))
259 .terminal(s -> s.unordered().collect(collector))
281 Collector<T, ?, R> collector,
284 withData(data).terminal(s -> s.collect(collector)).expectedResult(check).exercise()
    [all...]
  /external/opencv3/modules/ts/misc/
xls-report.py 112 class Collector(object):
151 configuration = Collector.__format_config_cache_key(props_key, multiline=True)
156 Collector.__format_config_cache_key(props_key))
162 Collector.__format_config_cache_key(props_key),
164 Collector.__format_config_cache_key(same_config_props[0]))
229 collector = Collector(make_match_func(config_matchers), args.include_unmatched)
238 collector.collect_from(os.path.join(root, filename), default_conf)
240 config_names.extend(sorted(collector.extra_configurations - set(config_names)))
309 for module, tests in sorted(collector.tests.iteritems())
    [all...]
  /platform_testing/utils/crashcollector/src/android/test/crashcollector/
Collector.java 38 * Main class for the crash collector that installs an activity controller to monitor app errors
40 public class Collector {
58 int resultCode = (new Collector()).run(args);
  /external/v8/src/parsing/
preparse-data.h 200 Collector<unsigned> function_store_;
  /external/v8/test/cctest/
test-utils.cc 192 TEST(Collector) {
193 Collector<int> collector(8);
198 Vector<int> block = collector.AddBlock(7, 0xbadcafe);
200 collector.Add(i);
206 Vector<int> result = collector.ToVector();
223 SequenceCollector<int> collector(8);
229 collector.StartSequence();
231 collector.Add(j);
233 Vector<int> sequence = collector.EndSequence()
    [all...]
  /external/v8/src/
utils.h 558 * in memory). The collector may move elements unless it has guaranteed not
562 class Collector {
564 explicit Collector(int initial_capacity = kMinCapacity)
569 virtual ~Collector() {
589 // A basic Collector will keep this vector valid as long as the Collector
608 // A basic Collector will keep this vector valid as long as the Collector
624 // Write the contents of the collector into the provided vector.
651 // Resets the collector to be empty
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_htmlparser.py 75 def _run_check(self, source, expected_events, collector=EventCollector):
76 parser = collector()
369 # The normal event collector normalizes the events in get_events,
371 class Collector(EventCollector):
385 collector=Collector)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_htmlparser.py 75 def _run_check(self, source, expected_events, collector=EventCollector):
76 parser = collector()
369 # The normal event collector normalizes the events in get_events,
371 class Collector(EventCollector):
385 collector=Collector)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_htmlparser.py 75 def _run_check(self, source, expected_events, collector=EventCollector):
76 parser = collector()
369 # The normal event collector normalizes the events in get_events,
371 class Collector(EventCollector):
385 collector=Collector)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_htmlparser.py 75 def _run_check(self, source, expected_events, collector=EventCollector):
76 parser = collector()
369 # The normal event collector normalizes the events in get_events,
371 class Collector(EventCollector):
385 collector=Collector)
  /external/chromium-trace/catapult/third_party/coverage/coverage/
collector.py 4 """Raw data collector for coverage.py."""
40 class Collector(object):
47 When the Collector is started, it creates a Tracer for the current thread,
49 When the Collector is stopped, all active Tracers are stopped.
51 Threads started while the Collector is stopped will never have Tracers
62 """Create a collector.
137 return "<Collector at 0x%x: %s>" % (id(self), self.tracer_name())
277 "Expected current collector to be %r, but it's %r" % (self, self._collectors[-1])
283 # Remove this Collector from the stack, and resume the one underneath
313 Also resets the collector
    [all...]
control.py 17 from coverage.collector import Collector
180 self.data = self.data_files = self.collector = None
244 self.collector = Collector(
254 if self.plugins.file_tracers and not self.collector.supports_plugins:
261 self.collector.tracer_name(),
441 disp = _disposition_init(self.collector.file_disposition_class, filename)
663 self.collector.reset()
685 self.collector.start(
    [all...]
  /external/clang/lib/AST/
CXXInheritance.cpp 610 FinalOverriderCollector Collector;
611 Collector.Collect(this, false, nullptr, FinalOverriders);
  /external/clang/include/clang/Frontend/
CompilerInstance.h 117 /// \brief The module dependency collector for crashdumps
510 std::shared_ptr<ModuleDependencyCollector> Collector);

Completed in 657 milliseconds

1 2 3