| /xsrc/external/mit/libX11/dist/src/xlibi18n/lcUniConv/ |
| H A D | ucs2be.h | 20 ucs2be_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 22 if (wc < 0x10000 && !(wc >= 0xd800 && wc < 0xe000)) { 24 r[0] = (unsigned char) (wc >> 8); 25 r[1] = (unsigned char) wc;
|
| H A D | jisx0201.h | 28 jisx0201_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 30 if (wc < 0x0080 && !(wc == 0x005c || wc == 0x007e)) { 31 *r = (unsigned char) wc; 34 if (wc == 0x00a5) { 38 if (wc == 0x203e) { 42 if (wc >= 0xff61 && wc < 0xffa0) { 43 *r = (unsigned char) (wc [all...] |
| H A D | ascii.h | 18 ascii_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 20 if (wc < 0x0080) { 21 *r = wc;
|
| H A D | iso8859_1.h | 15 iso8859_1_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 17 if (wc < 0x0100) { 18 *r = (unsigned char) wc;
|
| H A D | utf8.h | 81 utf8_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) /* n == 0 is acceptable */ argument 84 if (wc < 0x80) 86 else if (wc < 0x800) 88 else if (wc < 0x10000) 90 else if (wc < 0x200000) 92 else if (wc < 0x4000000) 94 else if (wc <= 0x7fffffff) 101 case 6: r[5] = (unsigned char) (0x80 | (wc & 0x3f)); wc = wc >> [all...] |
| H A D | georgian_academy.h | 61 georgian_academy_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 64 if (wc < 0x0080) { 65 *r = (unsigned char) wc; 68 else if (wc >= 0x0080 && wc < 0x00a0) 69 c = georgian_academy_page00[wc-0x0080]; 70 else if ((wc >= 0x00a0 && wc < 0x00c0) || (wc >= 0x00e7 && wc < [all...] |
| H A D | iso8859_15.h | 42 iso8859_15_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 45 if (wc < 0x00a0) { 46 *r = (unsigned char) wc; 49 else if (wc >= 0x00a0 && wc < 0x00c0) 50 c = iso8859_15_page00[wc-0x00a0]; 51 else if (wc >= 0x00c0 && wc < 0x0100) 52 c = (unsigned char) wc; 53 else if (wc > [all...] |
| H A D | cp1133.h | 35 unsigned short wc = cp1133_2uni_1[c-0xa0]; local in function:cp1133_mbtowc 36 if (wc != 0xfffd) { 37 *pwc = (ucs4_t) wc; 44 unsigned short wc = cp1133_2uni_2[c-0xf0]; local in function:cp1133_mbtowc 45 if (wc != 0xfffd) { 46 *pwc = (ucs4_t) wc; 73 cp1133_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 76 if (wc < 0x00a0) { 77 *r = (unsigned char) wc; 80 else if (wc > [all...] |
| H A D | georgian_ps.h | 78 georgian_ps_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 81 if (wc < 0x0080) { 82 *r = (unsigned char) wc; 85 else if (wc >= 0x0080 && wc < 0x00a0) 86 c = georgian_ps_page00[wc-0x0080]; 87 else if ((wc >= 0x00a0 && wc < 0x00c0) || (wc >= 0x00e6 && wc < [all...] |
| H A D | iso8859_7.h | 36 unsigned short wc = iso8859_7_2uni[c-0xa0]; local in function:iso8859_7_mbtowc 37 if (wc != 0xfffd) { 38 *pwc = (ucs4_t) wc; 69 iso8859_7_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 72 if (wc < 0x00a0) { 73 *r = (unsigned char) wc; 76 else if (wc >= 0x00a0 && wc < 0x00c0) 77 c = iso8859_7_page00[wc-0x00a0]; 78 else if (wc > [all...] |
| H A D | iso8859_8.h | 32 unsigned short wc = iso8859_8_2uni[c-0xa0]; local in function:iso8859_8_mbtowc 33 if (wc != 0xfffd) { 34 *pwc = (ucs4_t) wc; 70 iso8859_8_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 73 if (wc < 0x00a0) { 74 *r = (unsigned char) wc; 77 else if (wc >= 0x00a0 && wc < 0x00f8) 78 c = iso8859_8_page00[wc-0x00a0]; 79 else if (wc > [all...] |
| H A D | big5_emacs.h | 66 unsigned short wc = big5_2uni_pagea1[i]; local in function:big5_0_mbtowc 67 if (wc != 0xfffd) { 68 *pwc = (ucs4_t) wc; 100 unsigned short wc = big5_2uni_pagec9[i]; local in function:big5_1_mbtowc 101 if (wc != 0xfffd) { 102 *pwc = (ucs4_t) wc; 116 big5_0_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 120 int ret = big5_wctomb(conv,buf,wc,2); 141 big5_1_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 145 int ret = big5_wctomb(conv,buf,wc, [all...] |
| H A D | cp1255.h | 42 unsigned short wc = cp1255_2uni[c-0x80]; local in function:cp1255_mbtowc 43 if (wc != 0xfffd) { 44 *pwc = (ucs4_t) wc; 92 cp1255_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 95 if (wc < 0x0080) { 96 *r = (unsigned char) wc; 99 else if (wc >= 0x00a0 && wc < 0x00f8) 100 c = cp1255_page00[wc-0x00a0]; 101 else if (wc [all...] |
| H A D | armscii_8.h | 36 unsigned short wc = armscii_8_2uni[c-0xa0]; local in function:armscii_8_mbtowc 37 if (wc != 0xfffd) { 38 *pwc = (ucs4_t) wc; 75 armscii_8_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument 78 if (wc < 0x0028) { 79 *r = (unsigned char) wc; 82 else if (wc >= 0x0028 && wc < 0x0030) 83 c = armscii_8_page00[wc-0x0028]; 84 else if (wc > [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xwin/ |
| H A D | winclipboardinit.c | 95 WNDCLASSEX wc; local in function:winClipboardCreateMessagingWindow 99 wc.cbSize=sizeof(WNDCLASSEX); 100 wc.style = CS_HREDRAW | CS_VREDRAW; 101 wc.lpfnWndProc = winClipboardWindowProc; 102 wc.cbClsExtra = 0; 103 wc.cbWndExtra = 0; 104 wc.hInstance = GetModuleHandle (NULL); 105 wc.hIcon = 0; 106 wc.hCursor = 0; 107 wc [all...] |
| /xsrc/external/mit/libXaw/dist/src/ |
| H A D | XawI18n.c | 68 wchar_t wc; local in function:_Xaw_atowc 74 mbtowc(&wc, str, 1); 76 return (wc);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/targets/graw-gdi/ |
| H A D | graw_gdi.c | 69 WNDCLASSEX wc; local in function:graw_create_window_and_screen 86 memset(&wc, 0, sizeof wc); 87 wc.cbSize = sizeof wc; 88 wc.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW; 89 wc.lpfnWndProc = window_proc; 90 wc.lpszClassName = "graw-gdi"; 91 wc.hInstance = GetModuleHandle(NULL); 92 wc [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/targets/graw-gdi/ |
| H A D | graw_gdi.c | 69 WNDCLASSEX wc; local in function:graw_create_window_and_screen 86 memset(&wc, 0, sizeof wc); 87 wc.cbSize = sizeof wc; 88 wc.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW; 89 wc.lpfnWndProc = window_proc; 90 wc.lpszClassName = TEXT("graw-gdi"); 91 wc.hInstance = GetModuleHandle(NULL); 92 wc [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/xpr/ |
| H A D | xprFrame.c | 136 xp_window_changes wc; local in function:xprCreateFrame 142 wc.x = newX; 143 wc.y = newY; 144 wc.width = pFrame->width; 145 wc.height = pFrame->height; 146 wc.bit_gravity = XP_GRAVITY_NONE; 151 wc.depth = XP_DEPTH_INDEX8; 152 wc.colormap = xprColormapCallback; 153 wc.colormap_data = pScreen; 157 wc 230 xp_window_changes wc; local in function:xprMoveFrame 249 xp_window_changes wc; local in function:xprResizeFrame 270 xp_window_changes wc; local in function:xprRestackFrame 310 xp_window_changes wc; local in function:xprReshapeFrame 337 xp_window_changes wc; local in function:xprUnmapFrame 635 xp_window_changes wc; local in function:xprUpdateColormap 645 xp_window_changes wc; local in function:xprHideWindow [all...] |
| H A D | xprAppleWM.c | 51 xp_window_changes wc; local in function:xprSetWindowLevel 71 wc.window_level = normal_window_levels[level]; 73 wc.window_level = XQuartzShieldingWindowLevel + 1; 75 wc.window_level = rooted_window_levels[level]; 77 if (xp_configure_window (wid, XP_WINDOW_LEVEL, &wc) != Success) { 89 xp_window_changes wc; local in function:xprAttachTransient 103 wc.transient_for = parent_wid; 107 if (xp_configure_window(child_wid, XP_ATTACH_TRANSIENT, &wc) != Success) {
|
| /xsrc/external/mit/xorg-server/dist/hw/xquartz/xpr/ |
| H A D | xprFrame.c | 151 xp_window_changes wc; local in function:xprCreateFrame 155 wc.x = newX; 156 wc.y = newY; 157 wc.width = pFrame->width; 158 wc.height = pFrame->height; 159 wc.bit_gravity = XP_GRAVITY_NONE; 163 wc.depth = XP_DEPTH_INDEX8; 164 wc.colormap = xprColormapCallback; 165 wc.colormap_data = pScreen; 169 wc 234 xp_window_changes wc; local in function:xprMoveFrame 250 xp_window_changes wc; local in function:xprResizeFrame 270 xp_window_changes wc; local in function:xprRestackFrame 310 xp_window_changes wc; local in function:xprReshapeFrame 332 xp_window_changes wc; local in function:xprUnmapFrame 584 xp_window_changes wc; local in function:xprUpdateColormap 595 xp_window_changes wc; local in function:xprHideWindow [all...] |
| H A D | xprAppleWM.c | 50 xp_window_changes wc; local in function:xprSetWindowLevel 70 wc.window_level = normal_window_levels[level]; 72 wc.window_level = XQuartzShieldingWindowLevel + 1; 74 wc.window_level = rooted_window_levels[level]; 76 if (xp_configure_window(wid, XP_WINDOW_LEVEL, &wc) != Success) { 89 xp_window_changes wc; local in function:xprAttachTransient 105 wc.transient_for = parent_wid; 110 &wc) != Success) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/glx/windows/ |
| H A D | windowsgl.c | 79 WNDCLASSEX wc; local in function:windows_create_context 80 wc.cbSize = sizeof(WNDCLASSEX); 81 wc.style = CS_HREDRAW | CS_VREDRAW; 82 wc.lpfnWndProc = DefWindowProc; 83 wc.cbClsExtra = 0; 84 wc.cbWndExtra = 0; 85 wc.hInstance = GetModuleHandle(NULL); 86 wc.hIcon = 0; 87 wc.hCursor = 0; 88 wc 140 WNDCLASSEX wc; local in function:windows_create_context_attribs 292 WNDCLASSEX wc; local in function:windows_call_with_context [all...] |
| /xsrc/external/mit/MesaLib/dist/src/glx/windows/ |
| H A D | windowsgl.c | 79 WNDCLASSEX wc; local in function:windows_create_context 80 wc.cbSize = sizeof(WNDCLASSEX); 81 wc.style = CS_HREDRAW | CS_VREDRAW; 82 wc.lpfnWndProc = DefWindowProc; 83 wc.cbClsExtra = 0; 84 wc.cbWndExtra = 0; 85 wc.hInstance = GetModuleHandle(NULL); 86 wc.hIcon = 0; 87 wc.hCursor = 0; 88 wc 140 WNDCLASSEX wc; local in function:windows_create_context_attribs 292 WNDCLASSEX wc; local in function:windows_call_with_context [all...] |
| /xsrc/external/mit/libXt/dist/src/ |
| H A D | Constraint.c | 77 static void ConstraintPartInitialize(WidgetClass wc); 140 ConstraintPartInitialize(WidgetClass wc) argument 142 ConstraintWidgetClass cwc = (ConstraintWidgetClass) wc; 148 _XtConstraintResDependencies((ConstraintWidgetClass) wc);
|