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

1 2 3 4

  /bionic/libc/wchar/
wcswidth.c 46 wchar_t wc; local
50 while (n-- > 0 && (wc = *pwcs++) != L'\0') {
51 if ((l = wcwidth(wc)) < 0)
  /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;
mbrtowc.c 348 wchar_t wc; local
349 size_t ret = mbrtowc (&wc, s, 1, ps);
358 *pwc = wc;
359 return (wc == 0 ? 0 : count);
369 wchar_t wc; local
370 size_t ret = mbrtowc (&wc, s, n, ps);
375 *pwc = wc;
376 if (wc == 0)
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
WordComposerTests.java 28 final WordComposer wc = new WordComposer(); local
30 wc.setComposingWord(STR_WITHIN_BMP, null);
31 assertEquals(wc.size(),
33 assertFalse(wc.isCursorFrontOrMiddleOfComposingWord());
34 wc.setCursorPositionWithinWord(2);
35 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord());
37 assertTrue(wc.moveCursorByAndReturnIfInsideComposingWord(2));
38 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord());
40 assertTrue(wc.moveCursorByAndReturnIfInsideComposingWord(1));
41 assertTrue(wc.isCursorFrontOrMiddleOfComposingWord())
    [all...]
  /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...]
  /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/chromium_org/chrome/browser/ui/views/location_bar/
generated_credit_card_view.cc 47 content::WebContents* wc = delegate_->GetWebContents(); local
48 if (!wc || toolbar_model_->GetInputInProgress())
51 return autofill::GeneratedCreditCardBubbleController::FromWebContents(wc);
  /external/clang/test/CodeGen/
string-literal-short-wstring.c 31 wchar_t wc = L'\uF00B'; local
  /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/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/chrome/browser/ui/views/status_icons/
status_tray_win.cc 18 WNDCLASSEX wc = {0}; local
19 wc.cbSize = sizeof(wc);
20 wc.lpfnWndProc = base::win::WrappedWindowProc<StatusTrayWin::WndProcStatic>;
21 wc.hInstance = hinst;
22 wc.lpszClassName = chrome::kStatusTrayWindowClass;
23 ATOM clazz = RegisterClassEx(&wc);
  /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/tab_contents/
render_view_context_menu_unittest.cc 258 content::WebContents* wc = web_contents(); local
260 wc, params);
  /external/chromium_org/content/browser/web_contents/
web_contents_impl_browsertest.cc 158 WebContentsImpl* wc = static_cast<WebContentsImpl*>(shell()->web_contents()); local
160 wc->GetRenderViewHost());
161 FrameTreeNode* root = wc->GetFrameTreeRootForTesting();
183 root = wc->GetFrameTreeRootForTesting();
  /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();
  /external/chromium_org/content/browser/renderer_host/media/
web_contents_tracker.cc 49 WebContents* const wc = web_contents(); local
50 RenderViewHost* const rvh = wc ? wc->GetRenderViewHost() : NULL;
  /external/chromium_org/ash/wm/workspace/
multi_window_resize_controller_unittest.cc 31 WorkspaceController* wc = variable
34 WorkspaceControllerTestHelper(wc).GetEventHandler();
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_ext_pbuffer.c 134 WNDCLASS wc; local
135 memset(&wc, 0, sizeof wc);
136 wc.hbrBackground = (HBRUSH) (COLOR_BTNFACE + 1);
137 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
138 wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
139 wc.lpfnWndProc = WndProc;
140 wc.lpszClassName = "wglpbuffer";
141 wc.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW;
142 RegisterClass(&wc);
    [all...]
  /external/chromium_org/third_party/npapi/npspy/windows/
loggerw.cpp 68 WNDCLASS wc; local
69 wc.style = 0;
70 wc.lpfnWndProc = DefDlgProc;
71 wc.cbClsExtra = 0;
72 wc.cbWndExtra = DLGWINDOWEXTRA;
73 wc.hInstance = hInst;
74 wc.hIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_ICON_APP));
75 wc.hCursor = LoadCursor(0, IDC_ARROW);
76 wc.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
77 wc.lpszMenuName = NULL;
    [all...]

Completed in 841 milliseconds

1 2 3 4