/external/clang/test/SemaObjC/ |
D | warn-missing-super.m | 47 // RUN: %clang_cc1 -fsyntax-only -fobjc-gc %s 2>&1 | FileCheck --check-prefix=CHECK-GC %s 48 // CHECK-GC: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call 49 // CHECK-GC: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] call 50 // CHECK-GC: 2 warnings generated. 52 // RUN: %clang_cc1 -fsyntax-only -fobjc-gc-only %s 2>&1 | FileCheck --check-prefix=CHECK-GC-ONLY %s 53 // CHECK-GC-ONLY: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] ca… 54 // CHECK-GC-ONLY: 1 warning generated.
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | CImageLabel.java | 14 import org.eclipse.swt.graphics.GC; 89 private void doPaint(GC paintGC) { in doPaint() 92 GC gc; in doPaint() 101 gc = new GC(m_backImage); in doPaint() 130 GC gc = new GC(this); in computeSize()
|
/external/v8/tools/gcmole/ |
D | gccause.lua | 43 if GC[name] then 44 local causes = GC[name] 57 for name, _ in pairs(GC) do
|
D | README | 4 dependent GC-unsafe places in the V8 codebase. 6 For example the following code is GC-unsafe: 8 Handle<Object> Foo(); // Assume Foo can trigger a GC. 53 approximation to find all functions that might potentially cause GC, list 57 callsites that might be GC-unsafe based on the list of functions causing GC.
|
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/ |
D | Xvlib.h | 201 GC /* gc */, 218 GC /* gc */, 235 GC /* gc */, 252 GC /* gc */, 382 GC gc, 400 GC gc,
|
D | extutil.h | 65 GC /* gc */, 72 GC /* gc */, 79 GC /* gc */, 86 GC /* gc */,
|
/external/webkit/LayoutTests/storage/ |
D | multiple-databases-garbage-collection.js | 1 function GC() class 48 GC(); 53 GC();
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
D | DrawUtils.java | 19 import org.eclipse.swt.graphics.GC; 47 public static final void drawStringCV(GC gc, String text, int x, int y, int width, int height) { in drawStringCV() 62 public static final void drawStringCHCV(GC gc, String text, int x, int y, int width, int height) { in drawStringCHCV() 76 public static final void drawImageCV(GC gc, Image image, int x, int y, int height) { in drawImageCV() 86 public static final void drawImageCHCV(GC gc, Image image, int x, int y, int width, int height) { in drawImageCHCV() 100 public static void drawScaledImage(GC gc, Image image, Rectangle targetRectangle) { in drawScaledImage() 130 public static String clipString(GC gc, String text, int width) { in clipString() 156 public static void drawTextWrap(GC gc, String text, int x, int y, int width, int height) { in drawTextWrap() 179 public static void drawHighlightRectangle(GC gc, int x, int y, int width, int height) { in drawHighlightRectangle() 236 GC gc = new GC(thumbnail); in getThubmnail()
|
D | PixelConverter.java | 15 import org.eclipse.swt.graphics.GC; 34 GC gc = new GC(control); in PixelConverter()
|
/external/llvm/lib/CodeGen/ |
D | GCMetadata.cpp | 132 static const char *DescKind(GC::PointKind Kind) { in DescKind() 134 case GC::Loop: return "loop"; in DescKind() 135 case GC::Return: return "return"; in DescKind() 136 case GC::PreCall: return "pre-call"; in DescKind() 137 case GC::PostCall: return "post-call"; in DescKind()
|
/external/llvm/include/llvm/CodeGen/ |
D | GCMetadata.h | 47 namespace GC { 61 GC::PointKind Kind; ///< The kind of the safe point. 65 GCPoint(GC::PointKind K, MCSymbol *L, DebugLoc DL) in GCPoint() 133 void addSafePoint(GC::PointKind Kind, MCSymbol *Label, DebugLoc DL) { in addSafePoint()
|
/external/llvm/docs/ |
D | GarbageCollection.rst | 34 use of compacting and generational GC algorithms) and it can occasionally suffer 83 The aspects of the binary interface with which LLVM's GC support is 86 * Creation of GC-safe points within code where collection is allowed to execute 111 In general, LLVM's support for GC does not include features which can be 122 Using a GC with LLVM implies many things, for example: 124 * Write a runtime library or find an existing one which implements a GC heap. 144 * Use the ``gc "..."`` attribute to enable GC code generation (or 149 * Use ``@llvm.gcread`` and/or ``@llvm.gcwrite`` to manipulate GC references, 152 * Allocate memory using the GC allocation routine provided by the runtime 192 advanced GC. [all …]
|
/external/v8/src/extensions/ |
D | gc-extension.cc | 38 return v8::FunctionTemplate::New(GCExtension::GC); in GetNativeFunction() 42 v8::Handle<v8::Value> GCExtension::GC(const v8::Arguments& args) { in GC() function in v8::internal::GCExtension
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
D | 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 { in paint() 63 private void paint(GC gc, int x, int y, int width, int height, Image image, String text) { in paint()
|
D | 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 { in paint() 63 private void paint(GC gc, int x, int y, int width, int height, String text, Image image) { in paint()
|
D | 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 { in paint()
|
D | PropertyEditor.java | 15 import org.eclipse.swt.graphics.GC; 46 public abstract void paint(Property property, GC gc, int x, int y, int width, int height) in paint()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/ |
D | FlyoutControlComposite.java | 26 import org.eclipse.swt.graphics.GC; 705 private void handlePaint(GC paintGC) { 708 GC gc; 717 gc = new GC(m_backImage); 765 private void drawStateImage(GC gc, int x, int y) { 810 private void drawResizeBand(GC gc) { 862 GC gc = new GC(this); 877 GC gc = new GC(m_titleImage); 911 private void drawTitleLines(GC gc, int x, int height, int width) { 919 private void drawTitleLine(GC gc, int x, int y, int width) {
|
/external/webkit/Tools/QueueStatusServer/ |
D | main.py | 37 from handlers.gc import GC 58 ('/gc', GC),
|
/external/webkit/LayoutTests/fast/leaks/ |
D | 003.html-disabled | 26 // Start with no garbage, so GC doesn't run automatically during the test. 49 // the frame was not destroyed; the frame destruction did not trigger GC; or 50 // GC was not effective.
|
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/ |
D | SDL_nxvideo.h | 57 GR_GC_ID GC ; member 79 #define SDL_GC (this -> hidden -> GC)
|
/external/clang/test/ARCMT/ |
D | GC-check.m | 14 …NSAllocateCollectable(100, 0); // expected-error {{call returns pointer to GC managed memory; it w… 18 __strong void *gcVar; // expected-error {{GC managed memory will become unmanaged in ARC}}
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
D | LineGraph.java | 16 import org.eclipse.swt.graphics.GC; 46 Point getSize(GC g) { in getSize() 71 GC g= new GC(im); in paint()
|
D | TimeLineGraphItem.java | 16 import org.eclipse.swt.graphics.GC; 56 Point getSize(GC g) { in getSize()
|
/external/webkit/LayoutTests/fast/js/resources/ |
D | garbage-collect-after-string-appends.js-disabled | 2 "This test checks whether the GC collects after string appends." 16 // str has 150 chars in it (which is greater than the limit of the GC to ignore which I believe is …
|