/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
AbsoluteLayoutRule.java | 70 public void paint(@NonNull IGraphics gc, @NonNull INode node, 74 drawFeedback(gc, node, elements, feedback); 82 IGraphics gc, 92 gc.useStyle(DrawingStyle.DROP_RECIPIENT); 93 gc.drawRect(b); 113 gc.useStyle(DrawingStyle.DROP_PREVIEW); 115 drawElement(gc, element, offsetX, offsetY); 120 gc.useStyle(DrawingStyle.GUIDELINE); 121 gc.drawLine(x, b.y, x, b.y + b.h); 122 gc.drawLine(b.x, y, b.x + b.w, y) [all...] |
AdapterViewRule.java | 38 public void paint(@NonNull IGraphics gc, @NonNull INode node, 42 gc.useStyle(DrawingStyle.DROP_RECIPIENT); 43 gc.drawRect(b);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ImageOverlay.java | 29 import org.eclipse.swt.graphics.GC; 208 public synchronized void paint(GC gc) { 213 gc_setAlpha(gc, 128); // half-transparent 269 gc.drawImage(mPreScaledImage, hi.translate(0), vi.translate(0)); 277 oldAlias = gc_setAntialias(gc, SWT.ON); 289 gc.drawImage(mImage, 294 SwtUtils.drawRectangleShadow(gc, destX, destY, destWidth, destHeight); 298 gc_setAntialias(gc, oldAlias); 302 gc_setAlpha(gc, 255); // opaqu [all...] |
/art/test/903-hello-tagging/src/art/ |
Test903.java | 33 Runtime.getRuntime().gc(); 34 Runtime.getRuntime().gc(); 57 Runtime.getRuntime().gc(); 58 Runtime.getRuntime().gc(); 63 Runtime.getRuntime().gc(); 64 Runtime.getRuntime().gc();
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
colorsys.py | 79 gc = (maxc-g) / (maxc-minc)
82 h = bc-gc
86 h = 4.0+gc-rc
124 gc = (maxc-g) / (maxc-minc)
127 h = bc-gc
131 h = 4.0+gc-rc
|
/external/python/cpython2/Lib/ |
colorsys.py | 79 gc = (maxc-g) / (maxc-minc) 82 h = bc-gc 86 h = 4.0+gc-rc 124 gc = (maxc-g) / (maxc-minc) 127 h = bc-gc 131 h = 4.0+gc-rc
|
/external/python/cpython3/Lib/ |
colorsys.py | 87 gc = (maxc-g) / (maxc-minc) 90 h = bc-gc 94 h = 4.0+gc-rc 132 gc = (maxc-g) / (maxc-minc) 135 h = bc-gc 139 h = 4.0+gc-rc
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
colorsys.py | 79 gc = (maxc-g) / (maxc-minc) 82 h = bc-gc 86 h = 4.0+gc-rc 124 gc = (maxc-g) / (maxc-minc) 127 h = bc-gc 131 h = 4.0+gc-rc
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
colorsys.py | 79 gc = (maxc-g) / (maxc-minc) 82 h = bc-gc 86 h = 4.0+gc-rc 124 gc = (maxc-g) / (maxc-minc) 127 h = bc-gc 131 h = 4.0+gc-rc
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
colorsys.py | 79 gc = (maxc-g) / (maxc-minc) 82 h = bc-gc 86 h = 4.0+gc-rc 124 gc = (maxc-g) / (maxc-minc) 127 h = bc-gc 131 h = 4.0+gc-rc
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
colorsys.py | 79 gc = (maxc-g) / (maxc-minc) 82 h = bc-gc 86 h = 4.0+gc-rc 124 gc = (maxc-g) / (maxc-minc) 127 h = bc-gc 131 h = 4.0+gc-rc
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-cris/ |
tls-gc-71.d | 1 #source: tls-gc-71.s 6 #ld: --shared -m crislinux --gc-sections 9 # DSO with a single R_CRIS_16_DTPREL against a hidden symbol, gc:ed.
|
/prebuilts/go/darwin-x86/src/go/internal/gcimporter/ |
gcimporter_test.go | 92 // This package only handles gc export data. 93 if runtime.Compiler != "gc" { 94 t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler) 123 // This package only handles gc export data. 124 if runtime.Compiler != "gc" { 125 t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler) 186 // This package only handles gc export data. 187 if runtime.Compiler != "gc" { 188 t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler) 213 // This package only handles gc export data [all...] |
/prebuilts/go/linux-x86/src/go/internal/gcimporter/ |
gcimporter_test.go | 92 // This package only handles gc export data. 93 if runtime.Compiler != "gc" { 94 t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler) 123 // This package only handles gc export data. 124 if runtime.Compiler != "gc" { 125 t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler) 186 // This package only handles gc export data. 187 if runtime.Compiler != "gc" { 188 t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler) 213 // This package only handles gc export data [all...] |
/art/runtime/gc/accounting/ |
heap_bitmap.h | 28 namespace gc { namespace in namespace:art 58 // Find and replace a bitmap pointer, this is used by for the bitmap swapping in the GC. 62 // Find and replace a object set pointer, this is used by for the bitmap swapping in the GC. 86 friend class art::gc::Heap; 87 friend class art::gc::collector::ConcurrentCopying; 91 } // namespace gc
|
/external/tensorflow/tensorflow/contrib/eager/python/examples/resnet50/ |
resnet50_test.py | 21 import gc 124 gc.disable() 130 gc.collect() 131 previous_gc_debug_flags = gc.get_debug() 132 gc.set_debug(gc.DEBUG_SAVEALL) 137 gc.collect() 139 self.assertEqual(0, len(gc.garbage)) 140 gc.set_debug(previous_gc_debug_flags) 141 gc.enable( [all...] |
/art/runtime/gc/allocator/ |
dlmalloc.h | 50 namespace gc { namespace in namespace:art 58 } // namespace gc
|
/art/runtime/gc/collector/ |
partial_mark_sweep.cc | 19 #include "gc/heap.h" 20 #include "gc/space/space.h" 25 namespace gc { namespace in namespace:art 48 } // namespace gc
|
sticky_mark_sweep.h | 24 namespace gc { namespace in namespace:art 62 } // namespace gc
|
/art/runtime/gc/ |
collector_type.h | 23 namespace gc { namespace in namespace:art 49 // Fake collector used to implement exclusion between GC and debugger. 78 #error "ART default GC type must be set" 82 } // namespace gc
|
gc_cause.cc | 27 namespace gc { namespace in namespace:art 59 } // namespace gc
|
/art/runtime/gc/space/ |
space-inl.h | 28 namespace gc { namespace in namespace:art 58 } // namespace gc
|
/art/test/1338-gc-no-los/src-art/ |
Main.java | 28 // Put the array in a weak reference so that IsMarked is called by the GC. 30 // Do a GC. 31 Runtime.getRuntime().gc();
|
/art/test/148-multithread-gc-annotations/ |
gc_coverage.cc | 17 #include "gc/heap.h" 27 return Runtime::Current()->GetHeap()->PerformHomogeneousSpaceCompact() == gc::kSuccess ?
|
/art/test/154-gc-loop/src/ |
Main.java | 34 Runtime.getRuntime().gc();
|