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

1 2

  /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();
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
Collector.java 21 class Collector extends DefaultBindingTargetVisitor<Object, Object> implements
  /external/v8/src/
collector.h 21 * in memory). The collector may move elements unless it has guaranteed not
25 class Collector {
27 explicit Collector(int initial_capacity = kMinCapacity)
32 virtual ~Collector() {
52 // A basic Collector will keep this vector valid as long as the Collector
70 // A basic Collector will keep this vector valid as long as the Collector
85 // Write the contents of the collector into the provided vector.
112 // Resets the collector to be empty
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
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...]
  /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...]
  /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/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...]
  /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);
  /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/v8/tools/gyp/test/lib/
TestCmd.py 314 class Collector:
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
jsoup-1.7.2.jar 
  /prebuilts/tools/common/m2/repository/org/jsoup/jsoup/1.6.3/
jsoup-1.6.3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 
  /external/guice/extensions/struts2/lib/
jsp-2.1.jar 
  /external/guice/extensions/persist/lib/
hsqldb.jar 
  /prebuilts/sdk/24/
android.jar 

Completed in 566 milliseconds

1 2