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

1 23 4 5 6 7 8 91011>>

  /art/runtime/gc/accounting/
heap_bitmap.h 29 namespace collector { namespace in namespace:art::gc
31 } // namespace collector
84 friend class art::gc::collector::ConcurrentCopying;
  /cts/tests/camera/utils/src/android/hardware/camera2/cts/
CameraTestUtils.java     [all...]
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 762 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.Flush()
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/processor/
Context.kt 80 val collector = RLog.CollectingMessager()
82 logger = RLog(collector, logger.suppressedWarnings, logger.defaultElement),
88 return Pair(result, collector)
  /art/runtime/gc/collector/
garbage_collector.h 46 namespace collector { namespace in namespace:art::gc
52 explicit ScopedPause(GarbageCollector* collector, bool with_reporting = true)
69 // Run the garbage collector.
79 // Swap the live and mark bitmaps of spaces that are active for the collector. For partial GC,
160 } // namespace collector
iteration.h 29 namespace collector { namespace in namespace:art::gc
31 // A information related single garbage collector iteration. Since we only ever have one GC running
96 } // namespace collector
semi_space-inl.h 27 namespace collector { namespace in namespace:art::gc
84 } // namespace collector
sticky_mark_sweep.cc 29 namespace collector { namespace in namespace:art::gc
80 } // namespace collector
mark_compact.cc 40 namespace collector { namespace in namespace:art::gc
294 explicit UpdateRootVisitor(MarkCompact* collector) : collector_(collector) {}
329 explicit UpdateObjectReferencesVisitor(MarkCompact* collector) : collector_(collector) {}
420 explicit UpdateReferenceVisitor(MarkCompact* collector) : collector_(collector) {}
565 explicit MarkObjectVisitor(MarkCompact* collector) : collector_(collector) {}
638 } // namespace collector
    [all...]
  /art/runtime/base/
logging.h 39 bool collector; member in struct:art::LogVerbosity
  /external/r8/src/main/java/com/android/tools/r8/graph/
DexClasspathClass.java 33 public void addDependencies(MixedSectionCollection collector) {
DexLibraryClass.java 38 public void addDependencies(MixedSectionCollection collector) {
  /frameworks/base/services/core/java/com/android/server/storage/
DiskStatsLoggingService.java 71 AppCollector collector = new AppCollector(this, volume); local
80 task.setAppCollector(collector);
139 public void setAppCollector(AppCollector collector) {
140 mCollector = collector;
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug484.go 15 // garbage collector to use unused data.
68 // call function that used to let the garbage collector
issue11256.go 19 // Let the garbage collector run concurrently.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug484.go 15 // garbage collector to use unused data.
68 // call function that used to let the garbage collector
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
HalDeviceManagerTest.java 93 @Rule public ErrorCollector collector = new ErrorCollector(); field in class:HalDeviceManagerTest
237 collector.checkThat(mDut.start(), equalTo(true));
265 collector.checkThat(mDut.start(), equalTo(true));
305 collector.checkThat("allocated interface", iface, IsNull.notNullValue());
348 collector.checkThat("allocated interface", iface, IsNull.notNullValue());
391 collector.checkThat("allocated interface", iface, IsNull.notNullValue());
434 collector.checkThat("allocated interface", iface, IsNull.notNullValue());
478 collector.checkThat("allocated interface", iface, IsNull.notNullValue());
521 collector.checkThat("allocated interface", iface, IsNull.notNullValue());
598 collector.checkThat("allocated STA interface", staIface, IsNull.notNullValue())
    [all...]
  /development/ndk/tools/
headers-diff-bionic-vs-ndk.py 107 """Fully automated sysincludes collector upto specified platform"""
124 self.collector = FileCollector(self.platforms_root, self.archs)
126 self.platforms = self.collector.platforms
129 self.collector.scan_sysincludes(latest_platform)
130 self.collector.scan_bionic_includes(self.bionic_root)
132 self.sysincludes = self.collector.sysincludes
133 self.bionic_includes = self.collector.bionic_includes
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
LinearLayoutManagerBaseConfigSetTest.java 243 AttachDetachCollector collector = new AttachDetachCollector(mRecyclerView); local
255 assertThat(collector.getDetached(), not(hasItem(sameInstance(vh.itemView))));
259 assertThat(collector.getDetached(), hasItem(sameInstance(vh.itemView)));
277 AttachDetachCollector collector = new AttachDetachCollector(mRecyclerView); local
289 assertThat(collector.getDetached(), not(hasItem(sameInstance(vh.itemView))));
293 assertThat(collector.getDetached(), hasItem(sameInstance(vh.itemView)));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
RemoteAdtTestRunner.java 144 // Launch all test info collector jobs
151 TestCollector collector = new TestCollector(deviceName); local
152 perDeviceCollectors.add(collector);
155 "Test Tree Collector for " + deviceName,
156 runner, mLaunchInfo.isDebugMode(), collector);
163 // wait for all test info collector jobs to complete
178 TestCollector collector = job.getCollector(); local
179 String err = collector.getErrorMessage();
185 totalTests += collector.getTestCaseCount();
204 "Test Tree Collector for " + deviceName
    [all...]
  /art/runtime/gc/space/
bump_pointer_space.h 30 namespace collector { namespace in namespace:art::gc
32 } // namespace collector
55 // Thread-unsafe allocation for when mutators are suspended, used by the semispace collector.
200 friend class collector::MarkSweep;
dlmalloc_space.h 26 namespace collector { namespace in namespace:art::gc
28 } // namespace collector
164 friend class collector::MarkSweep;
space.cc 90 collector::ObjectBytePair ContinuousMemMapAllocSpace::Sweep(bool swap_bitmaps) {
95 return collector::ObjectBytePair(0, 0);
  /libcore/ojluni/src/main/java/java/util/stream/
ReferencePipeline.java 491 public final <R, A> R collect(Collector<? super P_OUT, A, R> collector) {
494 && (collector.characteristics().contains(Collector.Characteristics.CONCURRENT))
495 && (!isOrdered() || collector.characteristics().contains(Collector.Characteristics.UNORDERED))) {
496 container = collector.supplier().get();
497 BiConsumer<A, ? super P_OUT> accumulator = collector.accumulator();
501 container = evaluate(ReduceOps.makeRef(collector));
503 return collector.characteristics().contains(Collector.Characteristics.IDENTITY_FINISH
    [all...]
  /prebuilts/go/darwin-x86/test/
gcstring.go 8 // does not confuse the garbage collector.

Completed in 938 milliseconds

1 23 4 5 6 7 8 91011>>