Searched refs:gc (Results 1 - 25 of 281) sorted by relevance

1234567891011>>

/macosx-10.9.5/ICU-511.35/icuSources/samples/datecal/
H A Dcal.cpp20 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
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/xlib/
H A Dxgc.c53 static TkpClipMask *AllocClipMask(GC gc) {
54 TkpClipMask *clip_mask = (TkpClipMask*) gc->clip_mask;
58 gc->clip_mask = (Pixmap) clip_mask;
84 static void FreeClipMask(GC gc) {
85 if (gc->clip_mask != None) {
87 if (((TkpClipMask*) gc->clip_mask)->type == TKP_CLIP_REGION) {
88 TkpReleaseRegion(((TkpClipMask*) gc->clip_mask)->value.region);
91 ckfree((char*) gc->clip_mask);
92 gc->clip_mask = None;
191 XChangeGC(d, gc, mas
52 AllocClipMask(GC gc) argument
82 FreeClipMask(GC gc) argument
[all...]
H A Dxdraw.c35 XDrawLine(display, d, gc, x1, y1, x2, y2)
38 GC gc;
47 XDrawLines(display, d, gc, points, 2, CoordModeOrigin);
69 XFillRectangle(display, d, gc, x, y, width, height)
72 GC gc;
83 XFillRectangles(display, d, gc, &rectangle, 1);
H A Dximage.c48 GC gc;
52 gc = XCreateGC(display, pix, 0, NULL);
53 if (gc == NULL) {
60 TkPutImage(NULL, 0, display, pix, gc, ximage, 0, 0, 0, 0, width, height);
63 XFreeGC(display, gc);
47 GC gc; local
/macosx-10.9.5/ruby-104/ruby/test/dtrace/
H A Dtest_gc.rb6 gc-mark-begin
7 gc-mark-end
8 gc-sweep-begin
9 gc-sweep-end
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/gtk/
H A DChunkedUpdateDrawingAreaGtk.cpp48 GraphicsContext gc(cr.get());
49 gc.save();
51 gc.translate(-rect.x(), -rect.y());
52 m_webPage->drawRect(gc, updateChunk->rect());
53 gc.restore();
/macosx-10.9.5/tcl-102/tk/tk/xlib/
H A Dxgc.c22 # define TkpInitGCCache(gc)
23 # define TkpFreeGCCache(gc)
24 # define TkpGetGCCache(gc)
52 static TkpClipMask *AllocClipMask(GC gc) {
53 TkpClipMask *clip_mask = (TkpClipMask*) gc->clip_mask;
57 gc->clip_mask = (Pixmap) clip_mask;
83 static void FreeClipMask(GC gc) {
84 if (gc->clip_mask != None) {
86 if (((TkpClipMask*) gc->clip_mask)->type == TKP_CLIP_REGION) {
87 TkpReleaseRegion(((TkpClipMask*) gc
51 AllocClipMask(GC gc) argument
81 FreeClipMask(GC gc) argument
190 TkpGetGCCache(GC gc) argument
213 XChangeGC( Display *d, GC gc, unsigned long mask, XGCValues *values) argument
268 XFreeGC( Display *d, GC gc) argument
297 XSetForeground( Display *display, GC gc, unsigned long foreground) argument
306 XSetBackground( Display *display, GC gc, unsigned long background) argument
315 XSetDashes( Display *display, GC gc, int dash_offset, _Xconst char *dash_list, int n) argument
339 XSetFunction( Display *display, GC gc, int function) argument
348 XSetFillRule( Display *display, GC gc, int fill_rule) argument
357 XSetFillStyle( Display *display, GC gc, int fill_style) argument
366 XSetTSOrigin( Display *display, GC gc, int x, int y) argument
376 XSetFont( Display *display, GC gc, Font font) argument
385 XSetArcMode( Display *display, GC gc, int arc_mode) argument
394 XSetStipple( Display *display, GC gc, Pixmap stipple) argument
403 XSetLineAttributes( Display *display, GC gc, unsigned int line_width, int line_style, int cap_style, int join_style) argument
418 XSetClipOrigin( Display *display, GC gc, int clip_x_origin, int clip_y_origin) argument
450 TkSetRegion( Display *display, GC gc, TkRegion r) argument
469 XSetClipMask( Display *display, GC gc, Pixmap pixmap) argument
511 XDrawPoint( Display *display, Drawable d, GC gc, int x, int y) argument
522 XDrawPoints( Display *display, Drawable d, GC gc, XPoint *points, int npoints, int mode) argument
540 XDrawSegments( Display *display, Drawable d, GC gc, XSegment *segments, int nsegments) argument
[all...]
H A Dximage.c47 GC gc;
51 gc = XCreateGC(display, pix, 0, NULL);
52 if (gc == NULL) {
59 TkPutImage(NULL, 0, display, pix, gc, ximage, 0, 0, 0, 0, width, height);
62 XFreeGC(display, gc);
46 GC gc; local
H A Dxdraw.c37 GC gc,
47 XDrawLines(display, d, gc, points, 2, CoordModeOrigin);
72 GC gc,
83 XFillRectangles(display, d, gc, &rectangle, 1);
33 XDrawLine( Display *display, Drawable d, GC gc, int x1, int y1, int x2, int y2) argument
67 XFillRectangle( Display *display, Drawable d, GC gc, int x, int y, unsigned int width, unsigned int height) argument
/macosx-10.9.5/ruby-104/extras/dtrace_sample/
H A Dprint_memory_usage.d3 ruby*:::gc-begin
18 ruby*:::gc-end
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_3/Function/
H A Dregress-104584.js44 gc();
54 gc();
/macosx-10.9.5/tcl-102/tk/tk/win/
H A DtkWinDraw.c26 * Translation table between X gc functions and Win32 raster op modes.
49 * Translation table between X gc functions and Win32 BitBlt op modes. Some of
120 static void DrawOrFillArc(Display *display, Drawable d, GC gc,
124 static void RenderObject(HDC dc, GC gc, XPoint* points,
126 static HPEN SetUpGraphicsPort(GC gc);
310 GC gc,
317 TkpClipMask *clipPtr = (TkpClipMask*)gc->clip_mask;
329 OffsetClipRgn(destDC, gc->clip_x_origin, gc->clip_y_origin);
333 src_x, src_y, (DWORD) tkpWinBltModes[gc
302 XCopyArea( Display *display, Drawable src, Drawable dest, GC gc, int src_x, int src_y, unsigned int width, unsigned int height, int dest_x, int dest_y) argument
358 XCopyPlane( Display *display, Drawable src, Drawable dest, GC gc, int src_x, int src_y, unsigned int width, unsigned int height, int dest_x, int dest_y, unsigned long plane) argument
504 TkPutImage( unsigned long *colors, int ncolors, Display *display, Drawable d, GC gc, XImage *image, int src_x, int src_y, int dest_x, int dest_y, unsigned int width, unsigned int height) argument
619 XFillRectangles( Display *display, Drawable d, GC gc, XRectangle *rectangles, int nrectangles) argument
740 RenderObject( HDC dc, GC gc, XPoint *points, int npoints, int mode, HPEN pen, WinDrawFunc func) argument
870 XDrawLines( Display *display, Drawable d, GC gc, XPoint *points, int npoints, int mode) argument
913 XFillPolygon( Display *display, Drawable d, GC gc, XPoint *points, int npoints, int shape, int mode) argument
955 XDrawRectangle( Display *display, Drawable d, GC gc, int x, int y, unsigned int width, unsigned int height) argument
1003 XDrawArc( Display *display, Drawable d, GC gc, int x, int y, unsigned int width, unsigned int height, int start, int extent) argument
1033 XFillArc( Display *display, Drawable d, GC gc, int x, int y, unsigned int width, unsigned int height, int start, int extent) argument
1064 DrawOrFillArc( Display *display, Drawable d, GC gc, int x, int y, unsigned int width, unsigned int height, int start, int extent, int fill) argument
1175 SetUpGraphicsPort( GC gc) argument
1263 TkScrollWindow( Tk_Window tkwin, GC gc, int x, int y, int width, int height, int dx, int dy, TkRegion damageRgn) argument
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nstimer.py2 import gc
40 gc.collect()
41 before = len(gc.get_objects())
46 gc.collect()
47 after = len(gc.get_objects())
52 gc.collect()
53 after2 = len(gc.get_objects())
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CGPDFViewer/
H A DPDFView.rb19 gc = NSGraphicsContext.currentContext.graphicsPort
22 CGContextSetGrayFillColor(gc, 1.0, 1.0)
23 CGContextFillRect(gc, cg_rect)
33 CGContextConcatCTM(gc, m)
36 CGContextDrawPDFPage(gc, page)
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nstimer.py2 import gc
40 gc.collect()
41 before = len(gc.get_objects())
46 gc.collect()
47 after = len(gc.get_objects())
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/pixmap/
H A DpixmapUnix.c26 GC gc; /* Graphics context for displaying pixmap. member in struct:PixmapData
50 dataPtr->gc = None;
173 GC gc; local
179 gc = Tk_GetGC(instancePtr->tkwin, 0, NULL);
182 gc, image, 0, 0, 0, 0, masterPtr->size[0], masterPtr->size[1]);
184 Tk_FreeGC(display, gc);
193 gc = XCreateGC(display, dataPtr->mask, 0, NULL);
195 gc, mask, 0, 0, 0, 0, masterPtr->size[0], masterPtr->size[1]);
196 XFreeGC(display, gc);
213 gc
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/win/
H A DtkWinDraw.c26 * Translation table between X gc functions and Win32 raster op modes.
49 * Translation table between X gc functions and Win32 BitBlt op modes. Some
122 Drawable d, GC gc, int x, int y,
125 static void RenderObject _ANSI_ARGS_((HDC dc, GC gc,
128 static HPEN SetUpGraphicsPort _ANSI_ARGS_((GC gc));
308 XCopyArea(display, src, dest, gc, src_x, src_y, width, height, dest_x, dest_y)
312 GC gc;
319 TkpClipMask *clipPtr = (TkpClipMask*)gc->clip_mask;
331 OffsetClipRgn(destDC, gc->clip_x_origin, gc
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/
H A Dbrowser.js55 var gc;
56 if ( gc != undefined ) {
57 gc();
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_2/
H A Dbrowser.js58 var gc;
59 if ( gc != undefined ) {
60 gc();
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_1/
H A Dbrowser.js55 var gc;
56 if ( gc != undefined ) {
57 gc();
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_2/
H A Dbrowser.js58 var gc;
59 if ( gc != undefined ) {
60 gc();
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_4/
H A Dbrowser.js55 var gc;
56 if ( gc != undefined ) {
57 gc();
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/eg/
H A Drainbow.pl45 my $gc = $gs * 120 + 120;
69 $gc = ( $gc < 0 ) ? 0 : ( $gc > 255 ) ? 255 : $gc;
72 return sprintf( "#%02x%02x%02x", $rc, $gc, $bc );
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/eg/
H A Drainbow.pl45 my $gc = $gs * 120 + 120;
69 $gc = ( $gc < 0 ) ? 0 : ( $gc > 255 ) ? 255 : $gc;
72 return sprintf( "#%02x%02x%02x", $rc, $gc, $bc );
/macosx-10.9.5/tcl-102/tk/tk/macosx/
H A DtkMacOSXDraw.c47 static void ClipToGC(Drawable d, GC gc, HIShapeRef *clipRgnPtr);
50 static void DrawCGImage(Drawable d, GC gc, CGContextRef context, CGImageRef image,
140 GC gc, /* GC to use. */
157 if (!TkMacOSXSetupDrawingContext(dst, gc, 1, &dc)) {
164 DrawCGImage(dst, gc, dc.context, img, gc->foreground,
165 gc->background, CGRectMake(0, 0,
191 if (!gs || !TkMacOSXSetupDrawingContext(dst, gc, 1, &dc)) {
195 NSGraphicsContext *gc = nil;
201 gc
134 XCopyArea( Display *display, Drawable src, Drawable dst, GC gc, int src_x, int src_y, unsigned int width, unsigned int height, int dest_x, int dest_y) argument
193 NSGraphicsContext *gc = nil; local
240 XCopyPlane( Display *display, Drawable src, Drawable dst, GC gc, int src_x, int src_y, unsigned int width, unsigned int height, int dest_x, int dest_y, unsigned long plane) argument
316 TkPutImage( unsigned long *colors, int ncolors, Display* display, Drawable d, GC gc, XImage* image, int src_x, int src_y, int dest_x, int dest_y, unsigned int width, unsigned int height) argument
572 TkMacOSXGetNSImageWithBitmap( Display *display, Pixmap bitmap, GC gc, int width, int height) argument
674 DrawCGImage( Drawable d, GC gc, CGContextRef context, CGImageRef image, unsigned long imageForeground, unsigned long imageBackground, CGRect imageBounds, CGRect srcBounds, CGRect dstBounds) argument
768 XDrawLines( Display *display, Drawable d, GC gc, XPoint *points, int npoints, int mode) argument
833 XDrawSegments( Display *display, Drawable d, GC gc, XSegment *segments, int nsegments) argument
882 XFillPolygon( Display* display, Drawable d, GC gc, XPoint* points, int npoints, int shape, int mode) argument
940 XDrawRectangle( Display *display, Drawable d, GC gc, int x, int y, unsigned int width, unsigned int height) argument
1001 XDrawRectangles( Display *display, Drawable drawable, GC gc, XRectangle *rectArr, int nRects) argument
1053 XFillRectangles( Display* display, Drawable d, GC gc, XRectangle *rectangles, int n_rectangles) argument
1103 XDrawArc( Display* display, Drawable d, GC gc, int x, int y, unsigned int width, unsigned int height, int angle1, int angle2) argument
1180 XDrawArcs( Display *display, Drawable d, GC gc, XArc *arcArr, int nArcs) argument
1256 XFillArc( Display* display, Drawable d, GC gc, int x, int y, unsigned int width, unsigned int height, int angle1, int angle2) argument
1335 XFillArcs( Display *display, Drawable d, GC gc, XArc *arcArr, int nArcs) argument
1437 TkScrollWindow( Tk_Window tkwin, GC gc, int x, int y, int width, int height, int dx, int dy, TkRegion damageRgn) argument
1502 TkMacOSXSetUpGraphicsPort( GC gc, void *destPort) argument
1529 TkMacOSXSetupDrawingContext( Drawable d, GC gc, int useCG, TkMacOSXDrawingContext *dcPtr) argument
1862 ClipToGC( Drawable d, GC gc, HIShapeRef *clipRgnPtr) argument
[all...]

Completed in 293 milliseconds

1234567891011>>