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

1 2 3 4 5

  /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 && errno == EILSEQ) {
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;
  /external/clang/test/Misc/
ast-dump-wchar.cpp 12 wchar_t wc[] = L"test\0\\\"\t\a\b\234\u1234\xffffffff"; // \ variable
  /ndk/sources/host-tools/sed-4.2.1/lib/
btowc.c 31 wchar_t wc; local
34 if (mbtowc (&wc, buf, 1) >= 0)
35 return wc;
  /sdk/emulator/opengl/host/libs/libOpenglRender/
NativeWindowsSubWindow.cpp 27 WNDCLASS wc; local
28 wc.style = CS_OWNDC |CS_HREDRAW |CS_VREDRAW; // redraw if size changes
29 wc.lpfnWndProc = myWndProc; // points to window procedure
30 wc.cbClsExtra = 0; // no extra class memory
31 wc.cbWndExtra = sizeof(void*); // save extra window memory, to store VasWindow instance
32 wc.hInstance = NULL; // handle to instance
33 wc.hIcon = NULL; // predefined app. icon
34 wc.hCursor = NULL;
35 wc.hbrBackground = NULL; // no background brush
36 wc.lpszMenuName = NULL; // name of menu resourc
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
WordComposerTests.java 31 final WordComposer wc = new WordComposer(); local
43 wc.setComposingWord(CODEPOINTS_WITHIN_BMP, COORDINATES_WITHIN_BMP);
44 assertEquals(wc.size(), STR_WITHIN_BMP.codePointCount(0, STR_WITHIN_BMP.length()));
45 assertFalse(wc.isCursorFrontOrMiddleOfComposingWord());
46 wc.setCursorPositionWithinWord(2);
47 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord());
49 assertTrue(wc.moveCursorByAndReturnIfInsideComposingWord(2));
50 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord());
52 assertTrue(wc.moveCursorByAndReturnIfInsideComposingWord(1));
53 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord())
    [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))
  /external/chromium_org/chrome/browser/ui/views/location_bar/
generated_credit_card_view.cc 45 content::WebContents* wc = delegate_->GetWebContents(); local
46 if (!wc || delegate_->GetToolbarModel()->input_in_progress())
49 return autofill::GeneratedCreditCardBubbleController::FromWebContents(wc);
  /external/chromium_org/content/browser/frame_host/
frame_tree_browsertest.cc 72 WebContentsImpl* wc = static_cast<WebContentsImpl*>(shell()->web_contents()); local
73 FrameTreeNode* root = wc->GetFrameTree()->root();
93 root = wc->GetFrameTree()->root();
113 WebContentsImpl* wc = static_cast<WebContentsImpl*>(shell()->web_contents()); local
114 FrameTreeNode* root = wc->GetFrameTree()->root();
144 WebContentsImpl* wc = static_cast<WebContentsImpl*>(shell()->web_contents()); local
145 FrameTreeNode* root = wc->GetFrameTree()->root();
150 TestNavigationObserver tab_observer(wc, 1);
  /external/clang/test/CodeGen/
string-literal-short-wstring.c 34 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));
  /ndk/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();
  /external/chromium_org/base/win/
wrapped_window_proc_unittest.cc 60 WNDCLASS wc = {0}; local
61 wc.lpfnWndProc = base::win::WrappedWindowProc<TestWindowProc>;
62 wc.hInstance = hinst;
63 wc.lpszClassName = class_name.c_str();
64 RegisterClass(&wc);
  /external/chromium_org/chrome/browser/renderer_context_menu/
render_view_context_menu_unittest.cc 258 content::WebContents* wc = web_contents(); local
260 wc->GetMainFrame(), params);
  /external/chromium_org/content/browser/
security_exploit_browsertest.cc 59 WebContentsImpl* wc = static_cast<WebContentsImpl*>(shell->web_contents()); local
60 wc->GetFrameTree()->root()->navigator()->RequestOpenURL(
61 wc->GetFrameTree()->root()->current_frame_host(), extension_url,
69 wc->GetRenderManagerForTesting()->pending_render_view_host();
  /external/chromium_org/third_party/mesa/src/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...]
  /external/chromium_org/third_party/skia/src/gpu/gl/win/
SkNativeGLContext_win.cpp 54 WNDCLASS wc; local
55 wc.cbClsExtra = 0;
56 wc.cbWndExtra = 0;
57 wc.hbrBackground = NULL;
58 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
59 wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
60 wc.hInstance = hInstance;
61 wc.lpfnWndProc = (WNDPROC) DefWindowProc;
62 wc.lpszClassName = TEXT("Griffin");
63 wc.lpszMenuName = NULL
    [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...]
  /external/skia/src/gpu/gl/win/
SkNativeGLContext_win.cpp 54 WNDCLASS wc; local
55 wc.cbClsExtra = 0;
56 wc.cbWndExtra = 0;
57 wc.hbrBackground = NULL;
58 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
59 wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
60 wc.hInstance = hInstance;
61 wc.lpfnWndProc = (WNDPROC) DefWindowProc;
62 wc.lpszClassName = TEXT("Griffin");
63 wc.lpszMenuName = NULL
    [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 150 size_t wcrtomb(char* s, wchar_t wc, mbstate_t* ps) {
155 return c32rtomb(s, static_cast<char32_t>(wc), state);
170 wchar_t wc = (*src)[i]; local
171 if (static_cast<uint32_t>(wc) < 0x80) {
173 if (wc == 0) {
178 r = wcrtomb(buf, wc, state);
188 wchar_t wc = (*src)[i]; local
189 if (static_cast<uint32_t>(wc) < 0x80) {
191 dst[o] = wc;
192 if (wc == 0)
    [all...]

Completed in 378 milliseconds

1 2 3 4 5