/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ |
SwtUtils.java | 19 import org.eclipse.swt.graphics.GC; 24 GC gc = new GC(c); local 25 int avgCharWidth = gc.getFontMetrics().getAverageCharWidth(); 26 gc.dispose();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
SwtUtils.java | 19 import org.eclipse.swt.graphics.GC; 28 GC gc = new GC(c); local 29 int avgCharWidth = gc.getFontMetrics().getAverageCharWidth(); 30 gc.dispose();
|
/external/llvm/lib/CodeGen/ |
ErlangGC.cpp | 1 //===-- ErlangGC.cpp - Erlang/OTP GC strategy -------------------*- C++ -*-===// 43 NeededSafePoints = 1 << GC::PostCall;
|
OcamlGC.cpp | 1 //===-- OcamlGC.cpp - Ocaml frametable GC strategy ------------------------===// 10 // This file implements lowering for the llvm.gc* intrinsics compatible with 29 static GCRegistry::Add<OcamlGC> X("ocaml", "ocaml 3.10-compatible GC"); 34 NeededSafePoints = 1 << GC::PostCall;
|
/external/v8/src/extensions/ |
gc-extension.cc | 5 #include "src/extensions/gc-extension.h" 16 return v8::FunctionTemplate::New(isolate, GCExtension::GC); 20 void GCExtension::GC(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
gc-extension.h | 16 : v8::Extension("v8/gc", 21 static void GC(const v8::FunctionCallbackInfo<v8::Value>& args);
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
PixelConverter.java | 15 import org.eclipse.swt.graphics.GC; 34 GC gc = new GC(control); local 35 gc.setFont(control.getFont()); 36 fFontMetrics = gc.getFontMetrics(); 37 gc.dispose();
|
/external/llvm/include/llvm/CodeGen/ |
GCStrategy.h | 12 // specified in a function's 'gc' attribute. Algorithms are enabled by setting 16 // GCStrategy is relevant for implementations using either gc.root or 17 // gc.statepoint based lowering strategies, but is currently focused mostly on 18 // options for gc.root. This will change over time. 20 // When requested by a subclass of GCStrategy, the gc.root implementation will 33 // When a reference to a GC-allocated object exists on the stack, it must be 39 // When used with gc.statepoint, information about safepoint and roots can be 42 // insertion support is planned. gc.statepoint does not currently support 62 namespace GC { 84 bool UseStatepoints; /// Uses gc.statepoints as opposed to gc.roots [all...] |
GCMetadata.h | 19 // - Stack offsets for GC roots, as specified by calls to llvm.gcroot 52 GC::PointKind Kind; ///< The kind of the safe point. 56 GCPoint(GC::PointKind K, MCSymbol *L, DebugLoc DL) 104 /// getStrategy - Return the GC strategy for the function. 123 void addSafePoint(GC::PointKind Kind, MCSymbol *Label, DebugLoc DL) { 153 /// cache of the 'active' gc strategy objects for the current Module. 161 /// Lookup the GCStrategy object associated with the given gc name. 167 /// may be associated with a different GC.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
Overlay.java | 20 import org.eclipse.swt.graphics.GC; 62 * @param gc The SWT {@link GC} object to draw into. 64 public void paint(GC gc) {
|
OutlineOverlay.java | 21 import org.eclipse.swt.graphics.GC; 75 public void paint(GC gc) { 78 gc.setForeground(mOutlineColor); 79 gc.setLineStyle(SwtDrawingStyle.OUTLINE.getLineStyle()); 80 int oldAlpha = gc.getAlpha(); 81 gc.setAlpha(SwtDrawingStyle.OUTLINE.getStrokeAlpha()); 82 drawOutline(gc, lastRoot); 83 gc.setAlpha(oldAlpha); 87 private void drawOutline(GC gc, CanvasViewInfo info) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
CImageLabel.java | 14 import org.eclipse.swt.graphics.GC; 54 doPaint(event.gc); 89 private void doPaint(GC paintGC) { 92 GC gc; local 101 gc = new GC(m_backImage); 102 gc.setBackground(paintGC.getBackground()); 103 gc.setForeground(paintGC.getForeground()); 104 gc.fillRectangle(clientArea) 130 GC gc = new GC(this); local [all...] |
/external/v8/test/mjsunit/regress/ |
regress-crbug-350434.js | 5 // Flags: --gc-global --noincremental-marking --allow-natives-syntax 18 // This allocates a heap number, causing a GC, triggering lazy deopt. 21 // This creates a map dependency, which gives the GC a reason to trigger
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
Xlib.h | 222 * dependent. A GC should be treated as opaque by application code. 233 *GC; 278 GC default_gc; /* GC for the root root visual */ 1089 GC gc; member in union:__anon29801 [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/ |
extutil.h | 62 GC /* gc */, 67 GC /* gc */, 72 GC /* gc */, 77 GC /* gc */,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/ |
Xlib.h | 219 * dependent. A GC should be treated as opaque by application code. 230 *GC; 275 GC default_gc; /* GC for the root root visual */ 1086 GC gc; member in union:__anon31664 [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/ |
extutil.h | 60 GC /* gc */, 65 GC /* gc */, 70 GC /* gc */, 75 GC /* gc */,
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
PropertyEditor.java | 15 import org.eclipse.swt.graphics.GC; 44 * Paints given {@link Property} given rectangle <code>(x, y, width, height)</code> of {@link GC}. 46 public abstract void paint(Property property, GC gc, int x, int y, int width, int height)
|
TextDisplayPropertyEditor.java | 13 import org.eclipse.swt.graphics.GC; 33 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { 36 DrawUtils.drawStringCV(gc, text, x, y, width, height);
|
BooleanObjectPropertyEditor.java | 18 import org.eclipse.swt.graphics.GC; 48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { 54 paint(gc, x, y, width, height, text, image); 59 paint(gc, x, y, width, height, text, image); 63 private void paint(GC gc, int x, int y, int width, int height, String text, Image image) { 66 DrawUtils.drawImageCV(gc, image, x, y, height); 74 DrawUtils.drawStringCV(gc, text, x, y, width, height);
|
BooleanPropertyEditor.java | 13 import org.eclipse.swt.graphics.GC; 48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { 54 paint(gc, x, y, width, height, image, text); 56 paint(gc, x, y, width, height, m_unknownImage, "unknown"); 63 private void paint(GC gc, int x, int y, int width, int height, Image image, String text) { 66 DrawUtils.drawImageCV(gc, image, x, y, height); 73 DrawUtils.drawStringCV(gc, text, x, y, width, height);
|
/external/v8/tools/gcmole/ |
gccause.lua | 29 -- gcmole.lua and prints tree of the calls that can potentially cause a GC 43 if GC[name] then 44 local causes = GC[name] 52 if f == '<GC>' then break end 57 for name, _ in pairs(GC) do
|
/external/clang/test/Layout/ |
ms-x86-vtordisp.cpp | 345 struct GC: public virtual GA { 347 GC() {} 349 struct GD: public virtual GC, public virtual GB {}; 360 // CHECK-NEXT: 12 | struct GC (virtual base) 361 // CHECK-NEXT: 12 | (GC vbtable pointer) 376 // CHECK-X64-NEXT: 24 | struct GC (virtual base) 377 // CHECK-X64-NEXT: 24 | (GC vbtable pointer)
|
/external/libvncserver/x11vnc/ |
nox11.h | 423 #define BadGC 13 /* parameter not a GC */ 535 /* graphics functions, as in GC.alu */ 613 /* GC components: masks used in CreateGC, CopyGC, ChangeGC, OR'ed into 614 GC.stateChanges */ 1005 * dependent. A GC should be treated as opaque by application code. 1016 *GC; 1061 GC default_gc; /* GC for the root root visual */ 1847 GC gc; member in union:__anon13633 [all...] |
/external/skia/include/views/ |
SkOSWindow_Unix.h | 22 GC fGc;
|