HomeSort by relevance Sort by last modified time
    Searched refs:collector (Results 26 - 50 of 648) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mockito/src/main/java/org/mockito/junit/
MockitoJUnit.java 39 public static VerificationCollector collector() { method in class:MockitoJUnit
  /art/runtime/
backtrace_helper.h 65 BacktraceCollector collector(frames_, kMaxFrames, skip_count);
66 collector.Collect();
67 num_frames_ = collector.NumFrames();
  /frameworks/base/services/tests/servicestests/src/com/android/server/storage/
AppCollectorTest.java 95 AppCollector collector = new AppCollector(mContext, volume); local
97 assertThat(collector.getPackageStats(TIMEOUT)).isEmpty();
105 AppCollector collector = new AppCollector(mContext, volume); local
107 assertThat(collector.getPackageStats(TIMEOUT)).isEmpty();
115 AppCollector collector = new AppCollector(mContext, volume); local
120 assertThat(collector.getPackageStats(TIMEOUT)).containsExactly(stats);
132 AppCollector collector = new AppCollector(mContext, volume); local
141 assertThat(collector.getPackageStats(TIMEOUT)).containsExactly(stats, otherStats);
146 AppCollector collector = new AppCollector(mContext, null); local
155 AppCollector collector = new AppCollector(mContext, volume) local
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/
WifiAwareRttStateManagerTest.java 64 public ErrorCollector collector = new ErrorCollector(); field in class:WifiAwareRttStateManagerTest
111 collector.checkThat("msg.what=RttManager.CMD_OP_START_RANGING", msg.what,
113 collector.checkThat("rangingId", msg.arg2, equalTo(rangingId));
114 collector.checkThat("RTT params", ((RttManager.ParcelableRttParams) msg.obj).mParams,
125 collector.checkThat("ParcelableRttResults object", results,
127 collector.checkThat("RttResults[0].bssid null",
129 collector.checkThat("RttResults[1].bssid null",
WifiAwareNativeManagerTest.java 61 @Rule public ErrorCollector collector = new ErrorCollector(); field in class:WifiAwareNativeManagerTest
114 collector.checkThat("null interface", mDut.getWifiNanIface(), nullValue());
124 collector.checkThat("non-null interface", mDut.getWifiNanIface(),
132 collector.checkThat("null interface", mDut.getWifiNanIface(), nullValue());
146 collector.checkThat("non-null interface", mDut.getWifiNanIface(),
153 collector.checkThat("null interface", mDut.getWifiNanIface(), nullValue());
  /frameworks/base/wifi/tests/src/android/net/wifi/aware/
WifiAwareManagerTest.java 62 public ErrorCollector collector = new ErrorCollector(); field in class:WifiAwareManagerTest
310 collector.checkThat("match-filter-size", parsedMatchFilter.size(),
312 collector.checkThat("match-filter-entry0", parsedMatchFilter.get(0),
314 collector.checkThat("match-filter-entry1", parsedMatchFilter.get(1),
538 collector.checkThat("mClusterHigh", ConfigRequest.CLUSTER_ID_MAX,
540 collector.checkThat("mClusterLow", ConfigRequest.CLUSTER_ID_MIN,
542 collector.checkThat("mMasterPreference", 0,
544 collector.checkThat("mSupport5gBand", false, equalTo(configRequest.mSupport5gBand));
545 collector.checkThat("mDiscoveryWindowInterval.length", 2,
547 collector.checkThat("mDiscoveryWindowInterval[2.4GHz]", ConfigRequest.DW_INTERVAL_NOT_INIT
    [all...]
  /art/runtime/gc/collector/
partial_mark_sweep.cc 26 namespace collector { namespace in namespace:art::gc
47 } // namespace collector
sticky_mark_sweep.h 25 namespace collector { namespace in namespace:art::gc
61 } // namespace collector
immune_spaces.cc 28 namespace collector { namespace in namespace:art::gc
74 VLOG(collector) << "Interval " << reinterpret_cast<const void*>(begin) << "-"
102 VLOG(collector) << "Immune region " << largest_immune_region_.Begin() << "-"
126 } // namespace collector
immune_region.h 32 namespace collector { namespace in namespace:art::gc
83 } // namespace collector
immune_spaces.h 33 namespace collector { namespace in namespace:art::gc
91 } // namespace collector
mark_sweep-inl.h 30 namespace collector { namespace in namespace:art::gc
57 } // namespace collector
  /art/runtime/gc/
reference_queue.cc 20 #include "collector/concurrent_copying.h"
81 // collector (SemiSpace) is running.
83 collector::ConcurrentCopying* concurrent_copying = heap->ConcurrentCopyingCollector();
133 collector::GarbageCollector* collector) {
139 if (!collector->IsNullOrMarkedHeapReference(referent_addr, /*do_atomic_update*/false)) {
155 collector::GarbageCollector* collector) {
161 if (!collector->IsNullOrMarkedHeapReference(referent_addr, /*do_atomic_update*/false)) {
162 ObjPtr<mirror::Object> forward_address = collector->MarkObject(referent_addr->AsMirrorPtr())
    [all...]
heap.cc 47 #include "gc/collector/concurrent_copying.h"
48 #include "gc/collector/mark_compact.h"
49 #include "gc/collector/mark_sweep.h"
50 #include "gc/collector/partial_mark_sweep.h"
51 #include "gc/collector/semi_space.h"
52 #include "gc/collector/sticky_mark_sweep.h"
216 last_gc_type_(collector::kGcTypeNone),
217 next_gc_type_(collector::kGcTypePartial),
351 // collector type.
365 // Currently only enabled for MS collector since that is what the deterministic dex2oat uses
1915 collector::GarbageCollector* collector; local
2002 collector::GarbageCollector* collector = nullptr; local
2555 collector::GarbageCollector* collector = nullptr; local
    [all...]
heap.h 31 #include "gc/collector/gc_type.h"
32 #include "gc/collector/iteration.h"
79 namespace collector { namespace in namespace:art::gc
85 } // namespace collector
155 // How long we wait after a transition request to perform a collector transition (nanoseconds).
270 // Transition the garbage collector during runtime, may copy objects from one space to another.
273 // Change the collector to be one of the possible options (MS, CMS, SS).
397 // Blocks the caller until the garbage collector becomes idle and returns the type of GC we
399 collector::GcType WaitForGcToComplete(GcCause cause, Thread* self) REQUIRES(!*gc_complete_lock_);
419 const collector::Iteration* GetCurrentGcIteration() const
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUCurrencyMetaInfo.java 73 private <T> List<T> collect(Collector<T> collector, CurrencyFilter filter) {
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,
116 collector.collect(b.getKey(), null, 0, 0, -1, false);
164 collector.collect(region, currency, from, to, i, tender)
    [all...]
  /external/icu/icu4j/main/classes/currdata/src/com/ibm/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...]
  /frameworks/base/tools/aapt2/compile/
XmlIdCollector.cpp 69 IdCollector collector(&xmlRes->file.exported_symbols);
70 xmlRes->root->Accept(&collector);
  /prebuilts/go/darwin-x86/test/
gc.go 7 // Simple test of the garbage collector.
gc1.go 7 // A simple test of the garbage collector.
  /prebuilts/go/linux-x86/test/
gc.go 7 // Simple test of the garbage collector.
gc1.go 7 // A simple test of the garbage collector.
  /external/libchrome/base/files/
file_path_watcher_unittest.cc 115 explicit TestDelegate(NotificationCollector* collector)
116 : collector_(collector) {
207 NotificationCollector* collector() { return collector_.get(); } function in class:base::__anon22692::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...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
CameraTestUtils.java     [all...]
  /external/autotest/client/cros/video/
collect_golden_images.py 102 collector = factory.make_video_screenshot_collector()
104 collector.ensure_player_is_ready()
106 collector.collect_multiple_screenshots(seq)

Completed in 1014 milliseconds

12 3 4 5 6 7 8 91011>>