/external/chromium_org/third_party/WebKit/Source/web/ |
PageWidgetDelegate.cpp | 88 GraphicsContext gc(canvas); 89 gc.setCertainlyOpaque(background == Opaque); 90 gc.applyDeviceScaleFactor(page->deviceScaleFactor()); 91 gc.setDeviceScaleFactor(page->deviceScaleFactor()); 93 gc.save(); // Needed to save the canvas, not the GraphicsContext. 96 gc.clip(dirtyRect); 97 view->paint(&gc, dirtyRect); 99 overlays->paintWebFrame(gc); 101 gc.fillRect(dirtyRect, Color::white); 103 gc.restore() [all...] |
/external/chromium_org/v8/test/mjsunit/compiler/ |
safepoint.js | 28 // Flags: --expose-gc 33 x.gc(); 34 x.gc(); 38 var o = {gc:gc};
|
/art/test/401-optimizing-compiler/src/ |
Main.java | 191 Runtime.getRuntime().gc(); 192 Runtime.getRuntime().gc(); 193 Runtime.getRuntime().gc(); 194 Runtime.getRuntime().gc(); 195 Runtime.getRuntime().gc(); 196 Runtime.getRuntime().gc(); 197 System.out.println("Forced GC");
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-403292.js | 5 // Flags: --allow-natives-syntax --expose-natives-as=builtins --expose-gc 38 gc(); 52 gc();
|
regress-747.js | 45 gc(); 46 gc(); 47 gc(); 48 gc(); 49 gc(); 50 gc();
|
clear-keyed-call.js | 28 // Flags: --expose-gc --allow-natives-syntax 38 gc(); 39 gc(); 40 gc();
|
regress-357103.js | 7 %SetFlags("--gc-interval=1");
|
regress-411210.js | 5 // Flags: --allow-natives-syntax --gc-interval=439 --random-seed=-423594851
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
PropertyTable.java | 29 import org.eclipse.swt.graphics.GC; 152 GC gc = new GC(this); local 154 m_rowHeight = 1 + gc.getFontMetrics().getHeight() + 1; 156 gc.dispose(); 187 handlePaint(event.gc, event.x, event.y, event.width, event.height); [all...] |
/art/runtime/gc/allocator/ |
rosalloc-inl.h | 23 namespace gc { namespace in namespace:art 48 } // namespace gc
|
/art/runtime/gc/collector/ |
mark_sweep-inl.h | 20 #include "gc/collector/mark_sweep.h" 22 #include "gc/heap.h" 29 namespace gc { namespace in namespace:art 50 } // namespace gc
|
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 54 } // namespace gc
|
/art/runtime/gc/space/ |
space-inl.h | 28 namespace gc { namespace in namespace:art 58 } // namespace gc
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format_rgb9e5.h | 106 float rc, gc, bc; local 111 gc = rgb9e5_ClampRange(rgb[1]); 114 maxrgb = MAX3(rc, gc, bc); 131 gm = (int) floor(gc / denom + 0.5);
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
errors.h | 60 _mesa_warning( struct gl_context *gc, const char *fmtString, ... ) PRINTFLIKE(2, 3);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_rgb9e5.h | 106 float rc, gc, bc; local 111 gc = rgb9e5_ClampRange(rgb[1]); 114 maxrgb = MAX3(rc, gc, bc); 131 gm = (int) floor(gc / denom + 0.5);
|
/external/mesa3d/src/mesa/main/ |
errors.h | 60 _mesa_warning( struct gl_context *gc, const char *fmtString, ... ) PRINTFLIKE(2, 3);
|
/art/runtime/entrypoints/quick/ |
quick_alloc_entrypoints.cc | 108 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(DlMalloc, gc::kAllocatorTypeDlMalloc) 109 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(RosAlloc, gc::kAllocatorTypeRosAlloc) 110 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(BumpPointer, gc::kAllocatorTypeBumpPointer) 111 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(TLAB, gc::kAllocatorTypeTLAB) 165 static gc::AllocatorType entry_points_allocator = gc::kAllocatorTypeDlMalloc; 167 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator) { 178 case gc::kAllocatorTypeDlMalloc: { 182 case gc::kAllocatorTypeRosAlloc: { 186 case gc::kAllocatorTypeBumpPointer: [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/xlib/ |
xlib_sw_winsys.c | 70 GC gc; member in struct:xlib_displaytarget 73 * against. May need to recreate gc, tempImage when this changes?? 277 if (xlib_dt->gc) 278 XFreeGC(xlib_dt->display, xlib_dt->gc); 307 if (xlib_dt->gc) { 308 XFreeGC(display, xlib_dt->gc); 309 xlib_dt->gc = NULL; 330 if (xlib_dt->gc == NULL) { 331 xlib_dt->gc = XCreateGC(display, xlib_drawable->drawable, 0, NULL) [all...] |
/external/mesa3d/src/gallium/winsys/sw/xlib/ |
xlib_sw_winsys.c | 70 GC gc; member in struct:xlib_displaytarget 73 * against. May need to recreate gc, tempImage when this changes?? 277 if (xlib_dt->gc) 278 XFreeGC(xlib_dt->display, xlib_dt->gc); 307 if (xlib_dt->gc) { 308 XFreeGC(display, xlib_dt->gc); 309 xlib_dt->gc = NULL; 330 if (xlib_dt->gc == NULL) { 331 xlib_dt->gc = XCreateGC(display, xlib_drawable->drawable, 0, NULL) [all...] |
/art/runtime/ |
parsed_options.cc | 25 #include "gc/heap.h" 107 static gc::CollectorType ParseCollectorType(const std::string& option) { 109 return gc::kCollectorTypeMS; 111 return gc::kCollectorTypeCMS; 113 return gc::kCollectorTypeSS; 115 return gc::kCollectorTypeGSS; 117 return gc::kCollectorTypeCC; 119 return gc::kCollectorTypeMC; 121 return gc::kCollectorTypeNone; 129 gc::CollectorType collector_type = ParseCollectorType(gc_option) [all...] |
/art/runtime/gc/accounting/ |
heap_bitmap.h | 26 namespace gc { namespace in namespace:art 52 // Find and replace a bitmap pointer, this is used by for the bitmap swapping in the GC. 56 // Find and replace a object set pointer, this is used by for the bitmap swapping in the GC. 80 friend class art::gc::Heap; 84 } // namespace gc
|
/art/test/067-preemptive-unpark/src/ |
Main.java | 19 System.out.println("GC'ing"); 20 System.gc(); 22 System.gc();
|
/external/chromium_org/tools/perf/benchmarks/ |
blink_perf.js | 18 gc();
|