HomeSort by relevance Sort by last modified time
    Searched defs:wc (Results 1 - 25 of 170) sorted by null

1 2 3 4 5 6 7

  /bionic/libc/upstream-openbsd/lib/libc/locale/
btowc.c 38 wchar_t wc; local
49 if (mbrtowc(&wc, &cc, 1, &mbs) > 1)
51 return (wc);
_wcstol.h 53 wint_t wc; local
70 wc = (wchar_t) *s++;
71 } while (iswspace(wc));
72 if (wc == L'-') {
74 wc = *s++;
77 if (wc == L'+')
78 wc = *s++;
81 wc == L'0' && (*s == L'x' || *s == L'X')) {
82 wc = s[1];
87 base = wc == L'0' ? 8 : 10
    [all...]
_wcstoul.h 52 wint_t wc; local
68 wc = (wchar_t) *s++;
69 } while (iswspace(wc));
70 if (wc == L'-') {
72 wc = *s++;
75 if (wc == L'+')
76 wc = *s++;
79 wc == L'0' && (*s == L'x' || *s == L'X')) {
80 wc = s[1];
85 base = wc == L'0' ? 8 : 10
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fgetws.c 43 wint_t wc; local
55 if ((wc = __fgetwc_unlock(fp)) == WEOF &&
58 if (wc == WEOF) {
65 *wsp++ = (wchar_t)wc;
66 if (wc == L'\n') {
fgetwc.c 42 wchar_t wc; local
54 wc = wcio->wcio_ungetwc_buf[--wcio->wcio_ungetwc_inbuf];
56 return wc;
70 size = mbrtowc(&wc, &c, 1, st);
77 return wc;
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fgetws.c 58 wint_t wc; local
77 wc = __fgetwc_unlock(fp);
87 *wsp++ = (wchar_t)wc;
88 if (wc == L'\n') {
fgetwc.c 54 wchar_t wc; local
72 wc = wcio->wcio_ungetwc_buf[--wcio->wcio_ungetwc_inbuf];
74 return wc;
88 size = mbrtowc(&wc, &c, 1, st);
98 return wc;
  /external/clang/test/Misc/
ast-dump-wchar.cpp 12 wchar_t wc[] = L"test\0\\\"\t\a\b\234\u1234\xffffffff"; // \ variable
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
WordComposerTests.java 32 final WordComposer wc = new WordComposer(); local
44 wc.setComposingWord(CODEPOINTS_WITHIN_BMP, COORDINATES_WITHIN_BMP);
45 assertEquals(wc.size(), STR_WITHIN_BMP.codePointCount(0, STR_WITHIN_BMP.length()));
46 assertFalse(wc.isCursorFrontOrMiddleOfComposingWord());
47 wc.setCursorPositionWithinWord(2);
48 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord());
50 assertTrue(wc.moveCursorByAndReturnIfInsideComposingWord(2));
51 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord());
53 assertTrue(wc.moveCursorByAndReturnIfInsideComposingWord(1));
54 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord())
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testnativew32.c 46 WNDCLASS wc; local
48 wc.style = 0;
49 wc.lpfnWndProc = WndProc;
50 wc.cbClsExtra = 0;
51 wc.cbWndExtra = 0;
52 wc.hInstance = GetModuleHandle(NULL);
53 wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
54 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
55 wc.hbrBackground = (HBRUSH) (COLOR_WINDOW + 1);
56 wc.lpszMenuName = NULL
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
_wcstol.h 64 wint_t wc; local
88 wc = (wchar_t) *s++;
89 } while (iswspace(wc));
90 if (wc == L'-') {
92 wc = *s++;
95 if (wc == L'+')
96 wc = *s++;
99 wc == L'0' && (*s == L'x' || *s == L'X')) {
100 wc = s[1];
105 base = ((wc == L'0') ? 8 : 10);
    [all...]
_wcstoul.h 66 wint_t wc; local
85 wc = (wchar_t) *s++;
86 } while (iswspace(wc));
87 if (wc == L'-') {
89 wc = *s++;
92 if (wc == L'+')
93 wc = *s++;
96 wc == L'0' && (*s == L'x' || *s == L'X')) {
97 wc = s[1];
102 base = wc == L'0' ? 8 : 10;
    [all...]
  /external/clang/test/CodeGen/
string-literal-short-wstring.c 38 wchar_t wc = L'\uF00B'; local
char-literal.c 66 wchar_t wc = L'\uF00B'; local
  /external/jarjar/src/test/com/tonicsystems/jarjar/
WildcardTest.java 36 Wildcard wc = new Wildcard(pattern, result); local
37 // System.err.println(wc);
38 assertEquals(expect, wc.replace(value));
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkGdbLaunchShortcut.java 122 ILaunchConfigurationWorkingCopy wc = config.getWorkingCopy(); local
123 NdkHelper.setLaunchConfigDefaults(wc);
124 wc.setAttribute(ICDTLaunchConfigurationConstants.ATTR_PROJECT_NAME, project.getName());
125 return wc.doSave();
  /bionic/libc/bionic/
wchar.cpp 139 size_t wcrtomb(char* s, wchar_t wc, mbstate_t* ps) {
144 return c32rtomb(s, static_cast<char32_t>(wc), state);
159 wchar_t wc = (*src)[i]; local
160 if (static_cast<uint32_t>(wc) < 0x80) {
162 if (wc == 0) {
167 r = wcrtomb(buf, wc, state);
177 wchar_t wc = (*src)[i]; local
178 if (static_cast<uint32_t>(wc) < 0x80) {
180 dst[o] = wc;
181 if (wc == 0)
    [all...]
  /external/lzma/CPP/Windows/Control/
Window2.cpp 53 WNDCLASS wc; local
54 if (!::GetClassInfo(instance, className, &wc))
56 // wc.style = CS_HREDRAW | CS_VREDRAW;
57 wc.style = 0;
58 wc.lpfnWndProc = WindowProcedure;
59 wc.cbClsExtra = 0;
60 wc.cbWndExtra = 0;
61 wc.hInstance = instance;
62 wc.hIcon = NULL;
63 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
83 WNDCLASSW wc; local
102 WNDCLASSW wc; local
    [all...]
  /external/mesa3d/src/gallium/targets/graw-gdi/
graw_gdi.c 69 WNDCLASSEX wc; local
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.hIcon = LoadIcon(NULL, IDI_APPLICATION)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
DebuggerConnector.java 68 ILaunchConfigurationWorkingCopy wc = null; local
72 wc = configType.newInstance(null,
76 wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_PROJECT_NAME,
83 wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_CONNECT_MAP, connectMap);
86 wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_VM_CONNECTOR,
90 config = wc.doSave();
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/
IIOwrite.c 58 wchar_t wc[MAX_EXPANSION]; // Sub-buffer for conversions local
59 wchar_t *wcb; // Pointer to either wc or spaces
68 wcb = wc;
96 wc[0] = L' ';
101 wc[0] = InCh; // Send the TAB itself - assumes that it does not move cursor.
112 wc[0] = CHAR_CARRIAGE_RETURN;
123 wc[0] = CHAR_CARRIAGE_RETURN;
124 wc[1] = CHAR_LINEFEED;
132 wc[0] = CHAR_BACKSPACE;
151 wc[1] = InCh + L'@';
    [all...]
  /external/toybox/toys/posix/
paste.c 48 wchar_t wc; local
86 while (0<(dlen = utf8towc(&wc, dpos, 99))) {
88 if (!(dlen = wcwidth(wc))) continue;
  /external/webrtc/webrtc/test/linux/
glx_renderer.cc 140 XWindowChanges wc; local
141 wc.width = static_cast<int>(width);
142 wc.height = static_cast<int>(height);
143 XConfigureWindow(display_, window_, CWWidth | CWHeight, &wc);
  /frameworks/base/services/core/java/com/android/server/wm/
WindowContainer.java 369 final WindowContainer wc = mChildren.get(i); local
370 wc.removeIfPossible();
495 final WindowContainer wc = mChildren.get(i); local
496 wc.setWaitingForDrawnIfResizingChanged();
502 final WindowContainer wc = mChildren.get(i); local
503 wc.onParentResize();
521 final WindowContainer wc = mChildren.get(i); local
522 wc.onMovedByResize();
528 final WindowContainer wc = mChildren.get(i); local
529 wc.resetDragResizingChangeReported()
535 final WindowContainer wc = mChildren.get(i); local
549 final WindowContainer wc = mChildren.get(j); local
573 final WindowContainer wc = mChildren.get(j); local
590 final WindowContainer wc = mChildren.get(i); local
605 final WindowContainer wc = mChildren.get(i); local
628 final WindowContainer wc = mChildren.get(i); local
653 final WindowContainer wc = mChildren.get(i); local
663 final WindowContainer wc = mChildren.get(i); local
670 final WindowContainer wc = mChildren.get(i); local
710 final WindowContainer wc = mChildren.get(i); local
986 final WindowContainer wc = mChildren.get(j); local
993 final WindowContainer wc = mChildren.get(j); local
    [all...]
  /bionic/benchmarks/
stdlib_benchmark.cpp 112 wchar_t wc = 0; local
114 for (j = 0; buf_aligned[j]; j+=mbrtowc(&wc, buf_aligned + j, 4, NULL)) {

Completed in 829 milliseconds

1 2 3 4 5 6 7