HomeSort by relevance Sort by last modified time
    Searched refs:gc (Results 1 - 25 of 288) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/samples/datecal/
cal.cpp 20 GregorianCalendar* gc = new GregorianCalendar(status); local
26 gc->set(2000, UCAL_FEBRUARY, 26);
27 gc->set(UCAL_HOUR_OF_DAY, 23);
28 gc->set(UCAL_MINUTE, 0);
29 gc->set(UCAL_SECOND, 0);
30 gc->set(UCAL_MILLISECOND, 0);
36 gc->get(UCAL_YEAR, status),
37 gc->get(UCAL_MONTH, status) + 1,
38 gc->get(UCAL_MONTH, status),
39 gc->get(UCAL_DATE, status))
    [all...]
  /external/webkit/WebKit/android/plugins/
PluginViewBridgeAndroid.cpp 31 void PluginViewBridgeAndroid::draw(GraphicsContext* gc,
PluginViewBridgeAndroid.h 42 virtual void draw(GraphicsContext* gc, const IntRect& rect);
  /dalvik/tests/030-bad-finalizer/src/
Main.java 13 System.out.println("Nulled. Requestion gc.");
14 System.gc();
18 System.out.println("Requesting another GC.");
19 System.gc();
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-104584.js 44 gc();
54 gc();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
BaseView.groovy 68 void onSelected(IGraphics gc, INode selectedNode,
76 gc.setLineWidth(1);
77 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
78 gc.drawRect(r);
85 int ys = r.y - gc.getFontHeight();
89 gc.drawString(displayName, xs, ys);
92 void onChildSelected(IGraphics gc, INode parentNode, INode childNode) {
97 gc.setLineWidth(1);
98 gc.setLineStyle(IGraphics.LineStyle.LINE_DOT);
102 gc.drawLine(m, rc.y, m, rp.y)
    [all...]
android.widget.AbsoluteLayout.groovy 36 gc, node, feedback ->
40 drawFeedback(gc, node, elements, feedback);
44 void drawFeedback(IGraphics gc,
54 gc.setForeground(gc.registerColor(0x00FFFF00));
55 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
56 gc.setLineWidth(2);
57 gc.drawRect(b);
78 drawElement(gc, it, offsetX, offsetY);
83 gc.drawLine(x - 10, y - 10, x + 10, y + 10)
    [all...]
android.widget.FrameLayout.groovy 35 gc, node, feedback ->
38 drawFeedback(gc, node, elements, feedback);
42 void drawFeedback(IGraphics gc,
51 gc.setForeground(gc.registerColor(0x00FFFF00));
52 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
53 gc.setLineWidth(2);
54 gc.drawRect(b);
75 drawElement(gc, it, offsetX, offsetY);
80 gc.drawLine(x - 10, y - 10, x + 10, y + 10)
    [all...]
android.widget.LinearLayout.groovy 73 gc, node, feedback ->
77 drawFeedback(gc, node, elements, feedback);
81 void drawFeedback(IGraphics gc,
91 gc.setForeground(gc.registerColor(0x00FFFF00));
92 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
93 gc.setLineWidth(2);
94 gc.drawRect(b);
96 gc.setLineStyle(IGraphics.LineStyle.LINE_DOT);
97 gc.setLineWidth(1)
    [all...]
android.widget.RelativeLayout.groovy 30 void onChildSelected(IGraphics gc, INode parentNode, INode childNode) {
31 super.onChildSelected(gc, parentNode, childNode);
77 gc.setForeground(gc.registerColor(0x00222222));
80 int h = gc.getFontHeight();
83 gc.drawString(it, x, y);
115 { gc, node, feedback ->
117 drawRelativeDropFeedback(gc, node, elements, feedback);
426 void drawRelativeDropFeedback(IGraphics gc,
435 def color = gc.registerColor(0x00FF9900)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
GregorianCalendarTest.java 66 GregorianCalendar gc = new GregorianCalendar(1972, Calendar.OCTOBER, 13); local
68 1972, gc.get(Calendar.YEAR));
70 gc.get(Calendar.MONTH) == Calendar.OCTOBER);
71 assertEquals("Incorrect calendar constructed 3", 13, gc
73 assertTrue("Incorrect calendar constructed 4", gc.getTimeZone().equals(
89 GregorianCalendar gc = new GregorianCalendar(1972, Calendar.OCTOBER, local
92 1972, gc.get(Calendar.YEAR));
94 gc.get(Calendar.MONTH) == Calendar.OCTOBER);
95 assertEquals("Incorrect calendar constructed", 13, gc
97 assertEquals("Incorrect calendar constructed", 7, gc.get(Calendar.HOUR))
124 GregorianCalendar gc = new GregorianCalendar(1972, Calendar.OCTOBER, local
204 GregorianCalendar gc = new GregorianCalendar(timezone); local
401 GregorianCalendar gc = new GregorianCalendar(); local
462 GregorianCalendar gc = new GregorianCalendar(); local
494 GregorianCalendar gc = new GregorianCalendar(); local
517 GregorianCalendar gc = new GregorianCalendar(); local
560 GregorianCalendar gc = new GregorianCalendar(); local
595 GregorianCalendar gc = new GregorianCalendar(); local
626 GregorianCalendar gc = new GregorianCalendar(1998, 11, 6); local
645 GregorianCalendar gc = new GregorianCalendar(1972, Calendar.OCTOBER, 8, local
674 GregorianCalendar gc = new GregorianCalendar(1972, Calendar.OCTOBER, local
869 GregorianCalendar gc = new GregorianCalendar(TimeZone.getTimeZone("GMT")); local
    [all...]
  /dalvik/tests/079-phantom/src/
Main.java 41 System.gc();
48 System.gc();
53 System.gc();
58 System.gc();
63 System.gc();
  /external/webkit/WebCore/platform/graphics/android/
FontAndroid.cpp 53 static SkPaint* setupFill(SkPaint* paint, GraphicsContext* gc,
55 gc->setupFillPaint(paint);
60 static SkPaint* setupStroke(SkPaint* paint, GraphicsContext* gc,
62 gc->setupStrokePaint(paint);
67 static bool setupForText(SkPaint* paint, GraphicsContext* gc,
69 int mode = gc->textDrawingMode();
79 if (gc->willStroke()) {
80 strokeP = setupStroke(looper->addLayer(), gc, font);
83 if (gc->willFill()) {
84 fillP = setupFill(looper->addLayer(), gc, font)
    [all...]
  /dalvik/tests/003-omnibus-opcodes/src/
InternedString.java 34 System.gc();
41 System.gc();
45 // and it should survive the gc
53 System.gc();
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/
browser.js 55 var gc;
56 if ( gc != undefined ) {
57 gc();
  /external/webkit/JavaScriptCore/tests/mozilla/js1_1/
browser.js 55 var gc;
56 if ( gc != undefined ) {
57 gc();
  /external/webkit/JavaScriptCore/tests/mozilla/js1_4/
browser.js 55 var gc;
56 if ( gc != undefined ) {
57 gc();
  /libcore/luni/src/main/java/javax/xml/datatype/
XMLGregorianCalendar.java 688 XMLGregorianCalendar gc = this; local
690 gc = this.normalize();
692 return gc.getYear()
693 + gc.getMonth()
694 + gc.getDay()
695 + gc.getHour()
696 + gc.getMinute()
697 + gc.getSecond();
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
astrotst.h 45 Calendar *gc; member in class:AstroTest
  /external/icu4c/test/intltest/
astrotst.h 45 Calendar *gc; member in class:AstroTest
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 27 import org.eclipse.swt.graphics.GC;
196 GC gc = new GC(image); local
197 gc.setAdvanced(true);
198 gc.setAntialias(SWT.ON);
199 gc.setTextAntialias(SWT.ON);
201 gc.setBackground(display.getSystemColor(SWT.COLOR_WHITE));
203 gc.fillOval(0, 0, SX - 1, SY - 1);
205 gc.fillRoundRectangle(0, 0, SX - 1, SY - 1, RX, RY)
    [all...]
  /external/webkit/WebCore/platform/wx/wxcode/mac/carbon/
scrollbar_render.cpp 74 wxGraphicsContext* gc = NULL; variable
78 gc = impl->GetGraphicsContext();
80 gc = dc.GetGraphicsContext();
82 if (gc)
83 cgContext = (CGContextRef) gc->GetNativeContext();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
IViewRule.java 80 * @param gc An {@link IGraphics} instance, to perform drawing operations.
85 void onSelected(IGraphics gc,
98 * @param gc An {@link IGraphics} instance, to perform drawing operations.
102 void onChildSelected(IGraphics gc,
  /libcore/luni/src/test/java/libcore/java/io/
RandomAccessFileTest.java 32 System.gc();
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/
browser.js 58 var gc;
59 if ( gc != undefined ) {
60 gc();

Completed in 491 milliseconds

1 2 3 4 5 6 7 8 91011>>