HomeSort by relevance Sort by last modified time
    Searched defs:wc (Results 1 - 25 of 158) 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/bison/lib/
mbswidth.c 100 wchar_t wc; local
104 bytes = mbrtowc (&wc, p, plimit - p, &mbstate);
136 w = wcwidth (wc);
148 if (!iswcntrl (wc))
mbrtowc.c 355 wchar_t wc; local
356 size_t ret = mbrtowc (&wc, s, 1, ps);
365 *pwc = wc;
366 return (wc == 0 ? 0 : count);
376 wchar_t wc; local
377 size_t ret = mbrtowc (&wc, s, n, ps);
382 *pwc = wc;
383 if (wc == 0)
  /external/clang/test/CodeGen/
string-literal-short-wstring.c 38 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));
  /prebuilts/ndk/r11/sources/android/support/src/wcstox/
shgetc.c 17 wchar_t wc = *f->rpos++; local
18 int ch = (wc < 128) ? (int)wc : '@';
  /prebuilts/ndk/r13/sources/android/support/src/wcstox/
shgetc.c 17 wchar_t wc = *f->rpos++; local
18 int ch = (wc < 128) ? (int)wc : '@';
  /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();
  /frameworks/base/services/core/java/com/android/server/wm/
WindowContainer.java 210 final WindowContainer wc = mChildren.get(i); local
211 wc.removeIfPossible();
377 final WindowContainer wc = mChildren.get(i); local
378 wc.setWaitingForDrawnIfResizingChanged();
384 final WindowContainer wc = mChildren.get(i); local
385 wc.onResize();
391 final WindowContainer wc = mChildren.get(i); local
392 wc.onMovedByResize();
398 final WindowContainer wc = mChildren.get(i); local
399 wc.resetDragResizingChangeReported()
405 final WindowContainer wc = mChildren.get(i); local
412 final WindowContainer wc = mChildren.get(j); local
422 final WindowContainer wc = mChildren.get(i); local
429 final WindowContainer wc = mChildren.get(i); local
444 final WindowContainer wc = mChildren.get(i); local
467 final WindowContainer wc = mChildren.get(i); local
485 final WindowContainer wc = mChildren.get(i); local
495 final WindowContainer wc = mChildren.get(i); local
503 final WindowContainer wc = mChildren.get(i); local
510 final WindowContainer wc = mChildren.get(i); local
550 final WindowContainer wc = mChildren.get(i); local
743 final WindowContainer wc = mChildren.get(i); local
    [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();
  /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...]
  /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...]

Completed in 528 milliseconds

1 2 3 4 5 6 7