/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ImageUtils.java | 489 Graphics gc = image.getGraphics(); local 491 drawRectangleShadow(gc, x, y, width, height); 493 gc.dispose(); 511 Graphics gc = image.getGraphics(); local 513 drawSmallRectangleShadow(gc, x, y, width, height); 515 gc.dispose(); 537 * {@link SwtUtils#drawRectangleShadow(org.eclipse.swt.graphics.GC, int, int, int, int)}, 543 * {@link SwtUtils#drawRectangleShadow(org.eclipse.swt.graphics.GC, int, int, int, int)}. 545 * @param gc the graphics context to draw into 551 public static final void drawRectangleShadow(Graphics gc, [all...] |
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-h8300/ |
gcsection.d | 2 # ld: --gc-sections -m h8300helf
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/ |
bpo-11.d | 6 #ld: -m elf64mmix --gc-sections 9 # Check that GC removes one of the three BPO:s, for the collected section.
|
bpo-9.d | 5 #ld: -m elf64mmix --gc-sections 8 # Check that GC does not mess up things when no BPO:s are collected.
|
/art/runtime/ |
oat_file_manager.cc | 38 #include "gc/scoped_gc_critical_section.h" 39 #include "gc/space/image_space.h" 123 std::vector<gc::space::ImageSpace*> image_spaces = 125 for (gc::space::ImageSpace* image_space : image_spaces) { 155 std::vector<gc::space::ImageSpace*> spaces) { 157 for (gc::space::ImageSpace* space : spaces) { 404 // Verify we aren't holding the mutator lock, which could starve GC if we 531 std::unique_ptr<gc::space::ImageSpace> image_space; 549 gc::ScopedGCCriticalSection gcs(self, 550 gc::kGcCauseAddRemoveAppImageSpace [all...] |
instrumentation_test.cc | 25 #include "gc/scoped_gc_critical_section.h" 207 gc::ScopedGCCriticalSection gcs(soa.Self(), 208 gc::kGcCauseInstrumentation, 209 gc::kCollectorTypeInstrumentation); 283 gc::ScopedGCCriticalSection gcs(self, 284 gc::kGcCauseInstrumentation, 285 gc::kCollectorTypeInstrumentation); 299 gc::ScopedGCCriticalSection gcs(self, 300 gc::kGcCauseInstrumentation, 301 gc::kCollectorTypeInstrumentation) [all...] |
debug_print.cc | 25 #include "gc/heap.h" 26 #include "gc/space/space-inl.h" 38 gc::Heap* heap = Runtime::Current()->GetHeap(); 39 gc::space::ContinuousSpace* cs = 43 gc::space::ImageSpace* ispace = cs->AsImageSpace(); 52 gc::space::DiscontinuousSpace* ds =
|
read_barrier-inl.h | 23 #include "gc/accounting/read_barrier_table.h" 24 #include "gc/collector/concurrent_copying-inl.h" 25 #include "gc/heap.h" 80 gc::Heap* heap = Runtime::Current()->GetHeap(); 190 // the GC is marking. 198 // IsMarked should only be called when the GC is marking. 208 gc::Heap* heap = Runtime::Current()->GetHeap(); 213 if (heap->CurrentCollectorType() != gc::kCollectorTypeCC) { 217 gc::collector::ConcurrentCopying* collector = heap->ConcurrentCopyingCollector();
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
SimpleTimeZoneTest.java | 405 GregorianCalendar gc = new GregorianCalendar(1998, Calendar.JUNE, 11); local 407 assertTrue("Returned incorrect daylight value1", zone.inDaylightTime(gc 409 gc = new GregorianCalendar(1998, Calendar.NOVEMBER, 11); 411 .inDaylightTime(gc.getTime()))); 412 gc = new GregorianCalendar(zone); 413 gc.set(1999, Calendar.APRIL, 4, 1, 59, 59); 415 .inDaylightTime(gc.getTime()))); 416 Date date = new Date(gc.getTime().getTime() + 1000); 419 gc.set(1999, Calendar.OCTOBER, 31, 1, 0, 0); 421 .inDaylightTime(gc.getTime()))) [all...] |
/art/runtime/gc/accounting/ |
heap_bitmap.cc | 19 #include "gc/accounting/space_bitmap-inl.h" 20 #include "gc/space/space.h" 23 namespace gc { namespace in namespace:art 75 } // namespace gc
|
/art/runtime/gc/collector/ |
iteration.h | 25 #include "gc/gc_cause.h" 29 namespace gc { namespace in namespace:art 32 // A information related single garbage collector iteration. Since we only ever have one GC running 44 // Returns how long the GC took to complete in nanoseconds. 98 } // namespace gc
|
semi_space-inl.h | 22 #include "gc/accounting/heap_bitmap.h" 26 namespace gc { namespace in namespace:art 83 } // namespace gc
|
sticky_mark_sweep.cc | 19 #include "gc/accounting/atomic_stack.h" 20 #include "gc/accounting/card_table.h" 21 #include "gc/heap.h" 22 #include "gc/space/large_object_space.h" 23 #include "gc/space/space-inl.h" 28 namespace gc { namespace in namespace:art 39 // For sticky GC, we want to bind the bitmaps of all spaces as the allocation stack lets us 40 // know what was allocated since the last GC. A side-effect of binding the allocation space mark 66 // incorrect class unloading since the GC does not card mark when storing the class during 81 } // namespace gc [all...] |
/art/runtime/gc/ |
reference_queue.h | 41 namespace gc { namespace in namespace:art 49 // Used to temporarily store java.lang.ref.Reference(s) during GC and prior to queueing on the 108 // Visits list_, currently only used for the mark compact GC. 113 // Lock, used for parallel GC reference enqueuing. It allows for multiple threads simultaneously 116 // The actual reference list. Only a root for the mark compact GC since it will be null for other 117 // GC types. Not an ObjPtr since it is accessed from multiple threads. 123 } // namespace gc
|
system_weak.h | 25 namespace gc { namespace in namespace:art 80 // Wait for GC's sweeping to complete and allow new records 95 } // namespace gc
|
task_processor.h | 28 namespace gc { namespace in namespace:art 52 // Used to process GC tasks (heap trim, heap transitions, concurrent GC). 86 } // namespace gc
|
/art/runtime/gc/space/ |
bump_pointer_space-walk-inl.h | 27 namespace gc { namespace in namespace:art 97 } // namespace gc
|
dlmalloc_space-inl.h | 21 #include "gc/allocator/dlmalloc.h" 25 namespace gc { namespace in namespace:art 74 } // namespace gc
|
memory_tool_malloc_space.h | 23 namespace gc { namespace in namespace:art 64 } // namespace gc
|
rosalloc_space-inl.h | 23 #include "gc/allocator/rosalloc-inl.h" 24 #include "gc/space/memory_tool_settings.h" 28 namespace gc { namespace in namespace:art 78 } // namespace gc
|
/art/test/030-bad-finalizer/src/ |
Main.java | 36 Runtime.getRuntime().gc();
|
/art/test/072-reachability-fence/src/ |
Main.java | 44 Runtime.getRuntime().gc();
|
/art/test/117-nopatchoat/ |
nopatchoat.cc | 19 #include "gc/heap.h" 20 #include "gc/space/image_space.h" 39 std::vector<gc::space::ImageSpace*> spaces =
|
/art/test/596-monitor-inflation/src-art/ |
Main.java | 32 // GC, monitors should remain inflated. We allow some slop for unrelated concurrent runtime 46 System.gc();
|
/device/google/contexthub/firmware/build/ |
common_config.mk | 44 -Wl,--gc-sections \
|