Searched refs:collector (Results 1 - 25 of 70) sorted by relevance

123

/external/mockito/src/test/java/org/mockitousage/junitrule/
H A DVerificationCollectorImplTest.java20 VerificationCollector collector = MockitoJUnit.collector().assertLazily();
26 collector.collectAndReport();
31 VerificationCollector collector = MockitoJUnit.collector().assertLazily();
36 collector.collectAndReport();
41 VerificationCollector collector = MockitoJUnit.collector().assertLazily();
48 collector.collectAndReport();
58 VerificationCollector collector
81 assertAtLeastOneFailure(VerificationCollector collector) argument
104 public VerificationCollector collector = MockitoJUnit.collector(); field in class:VerificationCollectorImplTest.VerificationCollectorRuleInner
[all...]
/external/autotest/server/site_tests/desktopui_CrashyRebootServer/
H A Ddesktopui_CrashyRebootServer.py43 collector = autotest.log_collector(host, None, '.')
45 collector.client_results_dir,
46 collector.server_results_dir)
53 collector.collect_client_job_results()
54 collector.remove_redundant_client_logs()
56 collector.client_results_dir,
57 collector.server_results_dir)
/external/autotest/site_utils/
H A Drun_suite_unittest.py142 collector = run_suite.ResultCollector(
146 collector._missing_results = {
149 suite_views = collector._fetch_relevant_test_views_of_suite()
198 collector = run_suite.ResultCollector(
202 collector._fetch_test_views_of_child_jobs())
242 collector = run_suite.ResultCollector(
245 collector._suite_views = [suite_job_view]
246 collector._test_views = [suite_job_view, good_test, bad_test]
247 collector._max_testname_width = max(
248 [len(v.get_testname()) for v in collector
[all...]
H A Drun_suite.py1038 and timings by accessing the collector's public attributes. And output
1705 collector = ResultCollector(instance_server=instance_server,
1711 collector.run()
1713 output_dict = collector.get_results_dict()
1716 collector.output_results()
1717 code = collector.return_code
1718 return_message = collector.return_message
1724 if collector.is_aborted == False:
1727 collector.gather_timing_stats()
1729 if collector
[all...]
/external/mockito/src/main/java/org/mockito/junit/
H A DMockitoJUnit.java39 public static VerificationCollector collector() { method in class:MockitoJUnit
/external/autotest/client/cros/video/
H A Dcollect_golden_images.py102 collector = factory.make_video_screenshot_collector()
104 collector.ensure_player_is_ready()
106 collector.collect_multiple_screenshots(seq)
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICUCurrencyMetaInfo.java73 private <T> List<T> collect(Collector<T> collector, CurrencyFilter filter) { argument
81 int needed = collector.collects();
99 collectRegion(collector, filter, needed, b);
103 collectRegion(collector, filter, needed, regionInfo.at(i));
108 return collector.getList();
111 private <T> void collectRegion(Collector<T> collector, CurrencyFilter filter, argument
116 collector.collect(b.getKey(), null, 0, 0, -1, false);
164 collector.collect(region, currency, from, to, i, tender);
/external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
H A DICUCurrencyMetaInfo.java71 private <T> List<T> collect(Collector<T> collector, CurrencyFilter filter) { argument
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, argument
114 collector.collect(b.getKey(), null, 0, 0, -1, false);
162 collector.collect(region, currency, from, to, i, tender);
/external/libchrome/base/files/
H A Dfile_path_watcher_unittest.cc115 explicit TestDelegate(NotificationCollector* collector) argument
116 : collector_(collector) {
207 NotificationCollector* collector() { return collector_.get(); } function in class:base::__anon9859::FilePathWatcherTest
235 std::unique_ptr<TestDelegate> delegate(new TestDelegate(collector()));
248 std::unique_ptr<TestDelegate> delegate(new TestDelegate(collector()));
263 std::unique_ptr<TestDelegate> delegate(new TestDelegate(collector()));
276 std::unique_ptr<TestDelegate> delegate(new TestDelegate(collector()));
329 std::unique_ptr<TestDelegate> delegate(new TestDelegate(collector()));
339 std::unique_ptr<TestDelegate> delegate1(new TestDelegate(collector()));
340 std::unique_ptr<TestDelegate> delegate2(new TestDelegate(collector()));
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer.cc762 CommentCollector collector(prev_trailing_comments, detached_comments,
775 collector.DetachFromPrev();
782 ConsumeLineComment(collector.GetBufferForLineComment());
786 collector.Flush();
789 ConsumeBlockComment(collector.GetBufferForBlockComment());
795 collector.ClearBuffer();
801 collector.Flush();
820 ConsumeLineComment(collector.GetBufferForLineComment());
823 ConsumeBlockComment(collector.GetBufferForBlockComment());
835 collector
[all...]
/external/v8/src/heap/
H A Dobjects-visiting.cc233 MarkCompactCollector* collector = heap->mark_compact_collector(); local
252 collector->RecordSlot(tail, next_slot, retained);
344 MarkCompactCollector* collector = heap->mark_compact_collector(); local
348 collector->RecordSlot(context, slot, *slot);
H A Dobjects-visiting-inl.h444 MarkCompactCollector* collector = heap->mark_compact_collector(); local
445 if (collector->is_code_flushing_enabled()) {
453 collector->code_flusher()->AddCandidate(shared);
471 MarkCompactCollector* collector = heap->mark_compact_collector(); local
472 if (collector->is_code_flushing_enabled()) {
480 collector->code_flusher()->AddCandidate(function);
H A Dgc-tracer.cc143 void GCTracer::Start(GarbageCollector collector, argument
154 switch (collector) {
192 if (Heap::IsYoungGenerationCollector(collector)) {
215 void GCTracer::Stop(GarbageCollector collector) { argument
219 Heap::CollectorName(collector),
225 DCHECK((collector == SCAVENGER && current_.type == Event::SCAVENGER) ||
226 (collector == MINOR_MARK_COMPACTOR &&
228 (collector == MARK_COMPACTOR &&
H A Dgc-tracer.h95 // GCTracer collects and prints ONE line after each garbage collector
225 void Start(GarbageCollector collector, GarbageCollectionReason gc_reason,
229 void Stop(GarbageCollector collector);
H A Dmark-compact.cc1104 MarkCompactCollector* collector = heap->mark_compact_collector(); local
1106 MarkObjectByPointer(collector, object, p);
1128 INLINE(static void MarkObjectByPointer(MarkCompactCollector* collector, argument
1132 collector->RecordSlot(object, p, target_object);
1134 collector->MarkObject(target_object, mark);
1139 INLINE(static void VisitUnmarkedObject(MarkCompactCollector* collector, argument
1142 DCHECK(collector->heap()->Contains(obj));
1143 DCHECK(!collector->heap()->mark_compact_collector()->IsMarked(obj));
1163 MarkCompactCollector* collector = heap->mark_compact_collector();
1168 collector
1239 MarkCompactCollector* collector = heap->mark_compact_collector(); local
1263 CodeMarkingVisitor(MarkCompactCollector* collector) argument
1277 SharedFunctionInfoMarkingVisitor(MarkCompactCollector* collector) argument
1397 MarkCompactCollector* collector = heap_->mark_compact_collector(); variable
1492 RecordMigratedSlotVisitor(MarkCompactCollector* collector) argument
2928 Evacuator(MarkCompactCollector* collector) argument
[all...]
H A Dheap.h689 static inline bool IsYoungGenerationCollector(GarbageCollector collector) { argument
690 return collector == SCAVENGER || collector == MINOR_MARK_COMPACTOR;
697 static inline const char* CollectorName(GarbageCollector collector) { argument
698 switch (collector) {
706 return "Unknown collector";
1658 GarbageCollector collector, GarbageCollectionReason gc_reason,
1666 GarbageCollector collector,
1762 HistogramTimer* GCTypeTimer(GarbageCollector collector);
2200 // which collector t
[all...]
/external/guava/guava-tests/test/com/google/common/io/
H A DResourcesTest.java80 List<String> collector = new ArrayList<String>();
83 collector.add(WHITESPACE.trimFrom(line));
89 return collector;
H A DFilesTest.java522 List<String> collector = new ArrayList<String>();
526 collector.add(line);
532 return collector;
549 List<String> collector = new ArrayList<String>();
554 collector.add(line);
561 return collector;
/external/autotest/server/
H A Dautotest_unittest.py274 collector = autotest.log_collector.expect_new(self.host, '', '')
276 collector.collect_client_job_results.expect_call().and_raises(
283 collector = autotest.log_collector.expect_new(self.host, '', '')
285 collector.collect_client_job_results.expect_call()
293 collector = autotest.log_collector.expect_new(self.host, '', '')
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
H A DFactoryProvider.java178 BindingCollector collector = new BindingCollector();
190 collector.addBinding(returnType, implementationType);
197 return new FactoryProvider2<F>(Key.get(factoryType), collector);
H A DFactoryProvider2.java201 /** The binding collector, for equality/hashing purposes. */
202 private final BindingCollector collector; field in class:FactoryProvider2
206 * @param collector binding configuration that maps method return types to
209 FactoryProvider2(Key<F> factoryKey, BindingCollector collector) { argument
211 this.collector = collector;
271 TypeLiteral<?> implementation = collector.getBindings().get(returnType);
794 return Objects.hashCode(factoryKey, collector);
802 return factoryKey.equals(other.factoryKey) && Objects.equal(collector, other.collector);
[all...]
/external/guice/extensions/multibindings/test/com/google/inject/multibindings/
H A DMultibinderTest.java1098 Collector collector = new Collector();
1100 mapbinding.acceptTargetVisitor(collector);
1101 assertNotNull(collector.mapbinding);
1104 setbinding.acceptTargetVisitor(collector);
1105 assertNotNull(collector.setbinding);
1108 optionalbinding.acceptTargetVisitor(collector);
1109 assertNotNull(collector.optionalbinding);
1127 assertFalse(collector.mapbinding.containsElement(a));
1128 assertTrue(collector.mapbinding.containsElement(b));
1129 assertFalse(collector
[all...]
H A DMapBinderTest.java979 Collector collector = new Collector();
981 map1.acceptTargetVisitor(collector);
982 assertNotNull(collector.mapbinding);
983 MapBinderBinding<?> map1Binding = collector.mapbinding;
986 map2.acceptTargetVisitor(collector);
987 assertNotNull(collector.mapbinding);
988 MapBinderBinding<?> map2Binding = collector.mapbinding;
/external/jmdns/src/javax/jmdns/impl/
H A DJmDNSImpl.java1227 * Renew a service when the record become stale. If there is no service collector for the type this method does nothing.
1932 ServiceCollector collector = _serviceCollectors.get(loType);
1933 if (collector == null) {
1935 collector = _serviceCollectors.get(loType);
1937 this.addServiceListener(type, collector, ListenerStatus.SYNCHONEOUS);
1941 logger.finer(this.getName() + ".collector: " + collector);
1943 // At this stage the collector should never be null but it keeps findbugs happy.
1944 return (collector != null ? collector
[all...]
/external/v8/src/
H A Dglobal-handles.h109 // The handle is automatically reset by the garbage collector when
128 // handle. When the garbage collector recognizes that only weak global
181 GarbageCollector collector, const v8::GCCallbackFlags gc_callback_flags);

Completed in 1081 milliseconds

123