/external/icu/icu4c/source/samples/datecal/ |
H A D | 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 [all...] |
/external/icu/icu4c/source/test/intltest/ |
H A D | astrotst.h | 45 Calendar *gc; member in class:AstroTest
|
/external/v8/test/mjsunit/compiler/ |
H A D | safepoint.js | 28 // Flags: --expose-gc 33 x.gc(); 34 x.gc(); 38 var o = {gc:gc};
|
/external/v8/test/webkit/ |
H A D | duplicate-param-gc-crash.js | 28 function gc() function 54 gc(); 68 gc();
|
H A D | exception-try-finally-scope-error.js | 26 function gc() function 59 gc();
|
H A D | var-shadows-arg-gc-crash.js | 28 function gc() function 55 gc();
|
/external/mesa3d/src/glx/apple/ |
H A D | apple_xgl_api_viewport.c | 40 struct glx_context *gc = __glXGetCurrentContext(); local 43 if (gc && gc->driContext) 44 apple_glx_context_update(dpy, gc->driContext);
|
H A D | apple_xgl_api_stereo.c | 54 struct glx_context * gc = __glXGetCurrentContext(); local 56 if (gc && apple_glx_context_uses_stereo(gc->driContext)) { 89 struct glx_context * gc = __glXGetCurrentContext(); local 91 if (gc && apple_glx_context_uses_stereo(gc->driContext)) {
|
H A D | apple_xgl_api_read.c | 52 struct glx_context *gc = __glXGetCurrentContext(); local 65 if (None != gc->currentReadable 66 && gc->currentReadable != gc->currentDrawable) { 71 if (apple_glx_make_current_context(dpy, gc->driContext, gc->driContext, 72 gc->currentReadable)) { 74 (void) apple_glx_make_current_context(dpy, gc->driContext, gc->driContext, 75 gc 85 struct glx_context *gc = __glXGetCurrentContext(); local [all...] |
H A D | glxreply.c | 58 __glXReadPixelReply(Display * dpy, struct glx_context * gc, unsigned max_dim, argument 86 __glXSetError(gc, GL_OUT_OF_MEMORY); 96 __glEmptyImage(gc, 3, width, height, depth, format, type, buf, dest); 104 __glXSetupSingleRequest(struct glx_context * gc, GLint sop, GLint cmdlen) 107 Display *const dpy = gc->currentDpy; 109 (void) __glXFlushRenderBuffer(gc, gc->pc); 112 req->reqType = gc->majorOpcode; 113 req->contextTag = gc->currentContextTag; 120 __glXSetupVendorRequest(struct glx_context * gc, GLin argument [all...] |
/external/clang/test/CodeGen/ |
H A D | 2008-08-07-AlignPadding1.c | 11 } gc; member in union:_gc_head
|
H A D | union-init.c | 11 } gc; member in union:_gc_head
|
/external/mesa3d/src/glx/ |
H A D | clientattrib.c | 42 struct glx_context *gc = __glXGetCurrentContext(); local 43 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); 51 __glXSetError(gc, GL_INVALID_ENUM); 72 struct glx_context *gc = __glXGetCurrentContext(); local 73 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); 74 __GLXattribute **spp = gc->attributes.stackPointer, *sp; 76 if (spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]) { 82 gc->attributes.stackPointer = spp + 1; 92 __glXSetError(gc, GL_STACK_OVERFLOW); 100 struct glx_context *gc local 130 __glFreeAttributeState(struct glx_context * gc) argument [all...] |
H A D | create_context.c | 44 struct glx_context *gc = NULL; local 78 gc = psc->vtable->create_context_attribs(psc, cfg, share, num_attribs, 83 if (gc == NULL) { 85 gc = applegl_create_context(psc, cfg, share, 0); 87 gc = indirect_create_context(psc, cfg, share, 0); 91 gc->xid = xcb_generate_id(c); 92 gc->share_xid = (share != NULL) ? share->xid : 0; 104 gc->xid, 107 gc->share_xid, 108 gc [all...] |
H A D | glx_error.c | 42 struct glx_context *gc = __glXGetCurrentContext(); local 46 assert(gc); 62 error.majorCode = gc ? gc->majorOpcode : 0;
|
H A D | pixelstore.c | 41 * \param gc Current GLX context 49 send_PixelStore(struct glx_context * gc, unsigned sop, GLenum pname, argument 52 Display *const dpy = gc->currentDpy; 55 GLubyte const *pc = __glXSetupSingleRequest(gc, sop, cmdlen); 70 struct glx_context *gc = __glXGetCurrentContext(); local 71 __GLXattribute *state = gc->client_state_private; 72 Display *dpy = gc->currentDpy; 82 __glXSetError(gc, GL_INVALID_VALUE); 90 __glXSetError(gc, GL_INVALID_VALUE); 98 __glXSetError(gc, GL_INVALID_VALU 220 struct glx_context *gc = __glXGetCurrentContext(); local [all...] |
H A D | applegl_glx.c | 46 applegl_destroy_context(struct glx_context *gc) argument 48 apple_glx_destroy_context(&gc->driContext, gc->psc->dpy); 52 applegl_bind_context(struct glx_context *gc, struct glx_context *old, argument 55 Display *dpy = gc->psc->dpy; 58 gc ? gc->driContext : NULL, draw); 70 applegl_unbind_context(struct glx_context *gc, struct glx_context *new) argument 76 if (!gc) 83 dpy = gc 93 applegl_wait_gl(struct glx_context *gc) argument 99 applegl_wait_x(struct glx_context *gc) argument 128 struct glx_context *gc; local [all...] |
H A D | renderpix.c | 63 * \param gc Current GLX context 81 __glXSendLargeImage(struct glx_context * gc, GLint compsize, GLint dim, argument 89 __glXSetError(gc, GL_OUT_OF_MEMORY); 95 (*gc->fillImage) (gc, dim, width, height, depth, format, type, 108 __glXSendLargeCommand(gc, gc->pc, pc - gc->pc, buf, compsize); 136 if (!gc->currentDpy) 139 if (cmdlen <= gc [all...] |
/external/clang/bindings/python/tests/cindex/ |
H A D | test_cdb.py | 6 import gc namespace 98 gc.collect() 108 gc.collect()
|
H A D | test_type.py | 1 import gc namespace 93 gc.collect()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
H A D | TextDisplayPropertyEditor.java | 33 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { argument 36 DrawUtils.drawStringCV(gc, text, x, y, width, height);
|
H A D | BooleanObjectPropertyEditor.java | 48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { argument 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) { argument 66 DrawUtils.drawImageCV(gc, image, x, y, height); 74 DrawUtils.drawStringCV(gc, text, x, y, width, height);
|
H A D | BooleanPropertyEditor.java | 48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { argument 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) { argument 66 DrawUtils.drawImageCV(gc, image, x, y, height); 73 DrawUtils.drawStringCV(gc, text, x, y, width, height);
|
/external/clang/test/CodeGenCXX/ |
H A D | microsoft-abi-multiple-nonvirtual-inheritance.cpp | 173 GrandchildOverride gc; local
|
/external/clang/test/Sema/ |
H A D | attr-flag-enum.c | 13 gc = 0x5, // no-warning enumerator in enum:flag2
|