HomeSort by relevance Sort by last modified time
    Searched refs:GC (Results 176 - 200 of 237) sorted by null

1 2 3 4 5 6 78 910

  /external/chromium_org/v8/tools/
tickprocessor.js 201 { total: 0, unaccounted: 0, excluded: 0, gc: 0 };
249 GC: 1,
380 if (vmState == TickProcessor.VmStates.GC) this.ticks_.gc++;
483 this.printHeader('GC');
484 this.printCounter(this.ticks_.gc, totalTicks);
799 '-g': ['stateFilter', TickProcessor.VmStates.GC,
800 'Show only ticks from GC VM state'],
831 this.argsDispatch_['--gc'] = this.argsDispatch_['-g'];
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 14 |* macros, since most of the parameters are not GC heap objects. *|
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteControl.java 81 import org.eclipse.swt.graphics.GC;
871 GC gc = new GC(control); local
    [all...]
GestureManager.java 46 import org.eclipse.swt.graphics.GC;
168 * @param gc The graphics object to paint into.
170 public void paint(GC gc) {
177 Device device = gc.getDevice();
183 overlay.paint(gc);
    [all...]
RenderPreviewManager.java 65 import org.eclipse.swt.graphics.GC;
562 * @param gc the graphics context to paint into
564 void paint(GC gc) {
583 preview.paint(gc, x, y);
617 preview.paintTitle(gc, x, y, false /*showFile*/, displayName);
625 int oldAlpha = gc.getAlpha();
628 gc.setBackground(gc.getDevice().getSystemColor(SWT.COLOR_GRAY));
629 gc.setAlpha(128)
    [all...]
  /external/chromium_org/ui/base/x/
x11_util.cc 647 GC gc = XCreateGC(display, root_window, GCForeground, &gc_values); local
648 XFillRectangle(display, root_window, gc,
653 XFreeGC(display, gc);
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
collections.js 28 // Flags: --harmony-collections --expose-gc --allow-natives-syntax
148 // Test GC of Maps and WeakMaps with entry
152 gc();
159 // Test GC of Maps and WeakMaps with chained entries
165 gc();
symbols.js 29 // Flags: --expose-gc --allow-natives-syntax
51 indirect() // Call once before GC throws away type feedback.
52 gc() // Promote existing symbols and then allocate some more.
339 gc();
  /external/chromium_org/v8/test/mjsunit/tools/
tickprocessor.js 53 var p_flags = new ArgumentsProcessor(['--gc', '--separate-ic']);
55 assertEquals(TickProcessor.VmStates.GC, p_flags.result().stateFilter);
410 false, false, TickProcessor.VmStates.GC,
411 'tickprocessor-test.log', 'tickprocessor-test.gc-state'],
  /external/compiler-rt/BlocksRuntime/
runtime.c 162 * GC support stub routines:
165 #pragma mark GC Support Routines
210 * GC support callout functions - initially set to stub routines:
224 * GC support SPI functions - called from ObjC runtime and CoreFoundation:
228 * Called from objc-auto to turn on GC.
301 // GC refcounting is expensive so do most refcounting here.
303 // Tell collector to hang on this - it will bump the GC refcount version
328 // Under GC want allocation with refcount 1 so we ask for "true" if wantsOne
329 // This allows the copy helper routines to make non-refcounted block copies under GC
336 // if we copy a malloc block to a GC block then we need to clear NEEDS_FREE
    [all...]
  /external/v8/test/mjsunit/tools/
tickprocessor.js 49 var p_flags = new ArgumentsProcessor(['--gc', '--separate-ic']);
51 assertEquals(TickProcessor.VmStates.GC, p_flags.result().stateFilter);
403 false, false, TickProcessor.VmStates.GC,
404 'tickprocessor-test.log', 'tickprocessor-test.gc-state'],
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xutil.h 704 GC /* gc */,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xutil.h 704 GC /* gc */,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xutil.h 704 GC /* gc */,
  /external/chromium_org/v8/test/mjsunit/
array-constructor-feedback.js 28 // Flags: --allow-natives-syntax --smi-only-arrays --expose-gc
38 // Reset the GC stress mode to be off. Needed because AllocationMementos only
39 // live for one gc, so a gc that happens in certain fragile areas of the test
41 %SetFlags("--gc-interval=-1")
array-feedback.js 28 // Flags: --allow-natives-syntax --smi-only-arrays --expose-gc
38 // Reset the GC stress mode to be off. Needed because AllocationMementos only
39 // live for one gc, so a gc that happens in certain fragile areas of the test
41 %SetFlags("--gc-interval=-1")
  /external/clang/include/clang/AST/
Type.h 112 /// * Objective C: the GC attributes (none, weak, or strong)
122 enum GC {
266 GC getObjCGCAttr() const { return GC((Mask & GCAttrMask) >> GCAttrShift); }
267 void setObjCGCAttr(GC type) {
271 void addObjCGCAttr(GC type) {
411 // ObjC GC qualifiers can match, be added, or be removed, but can't be
929 /// getObjCGCAttr - Returns gc attribute of this type.
930 inline Qualifiers::GC getObjCGCAttr() const;
    [all...]
ASTContext.h 836 /// gc-qualified type.
838 /// The retulting type has a union of the qualifiers from T and the gc
840 QualType getObjCGCQualType(QualType T, Qualifiers::GC gcAttr) const;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 65 import org.eclipse.swt.graphics.GC;
129 public void paint(Property property, GC gc, int x, int y, int width, int height)
181 Color color = new Color(gc.getDevice(), rgb);
183 Color oldBackground = gc.getBackground();
184 Color oldForeground = gc.getForeground();
195 gc.setBackground(color);
196 gc.fillRectangle(x_c, y_c, width_c, height_c);
198 gc.setForeground(IColorConstants.gray);
199 gc.drawRectangle(x_c, y_c, width_c, height_c)
    [all...]
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_gtk.cc 402 GC xgc = NULL;
  /external/chromium_org/v8/src/
sampler.cc 619 // Avoid collecting traces while doing GC.
620 if (state == GC) return;
  /external/libpng/contrib/gregbook/
rpng-x.c 147 static GC gc; variable
606 gc = XCreateGC(display, window, 0, &gcvalues);
627 XSetForeground(display, gc, bg_pixel);
628 XFillRectangle(display, window, gc, 0, 0, image_width, image_height);
772 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0,
835 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0,
850 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0,
878 XFreeGC(display, gc);
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
rails.php 76 'Fixnum', 'FloatDomainError', 'Forwardable', 'GC', 'Generator',
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11wm.c 52 GC gc; local
203 gc = XCreateGC(SDL_Display, icon_pixmap, 0, &GCvalues);
204 XPutImage(SDL_Display, icon_pixmap, gc, icon_image,
206 XFreeGC(SDL_Display, gc);
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 303 static ExprEffect GC() {
818 return ExprEffect::GC();
    [all...]

Completed in 899 milliseconds

1 2 3 4 5 6 78 910