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

1 2 3 4 5 6 7 8 91011>>

  /external/curl/lib/
wildcard.c 33 CURLcode Curl_wildcard_init(struct WildcardData *wc)
35 Curl_llist_init(&wc->filelist, Curl_fileinfo_dtor);
36 wc->state = CURLWC_INIT;
41 void Curl_wildcard_dtor(struct WildcardData *wc)
43 if(!wc)
46 if(wc->tmp_dtor) {
47 wc->tmp_dtor(wc->tmp);
48 wc->tmp_dtor = ZERO_NULL;
49 wc->tmp = NULL
    [all...]
  /bionic/libc/bionic/
wcwidth.cpp 33 int wcwidth(wchar_t wc) {
35 if (wc >= 0x20 && wc < 0x7f) return 1;
38 if (wc == 0) return 0;
41 if (wc < ' ' || (wc >= 0x7f && wc <= 0xa0)) return -1;
47 switch (__icu_charType(wc)) {
58 if (__icu_hasBinaryProperty(wc, UCHAR_DEFAULT_IGNORABLE_CODE_POINT, nullptr)) return 0;
61 switch (__icu_getIntPropertyValue(wc, UCHAR_HANGUL_SYLLABLE_TYPE))
    [all...]
icu_wrappers.cpp 31 int8_t __icu_charType(wint_t wc) {
34 return u_charType ? u_charType(wc) : -1;
37 int32_t __icu_getIntPropertyValue(wint_t wc, UProperty property) {
41 return u_getIntPropertyValue ? u_getIntPropertyValue(wc, property) : 0;
44 bool __icu_hasBinaryProperty(wint_t wc, UProperty property, int (*fallback)(int)) {
48 return u_hasBinaryProperty ? u_hasBinaryProperty(wc, property) : fallback(wc);
wctype.cpp 56 int iswalnum(wint_t wc) { return __icu_hasBinaryProperty(wc, UCHAR_POSIX_ALNUM, isalnum); }
57 int iswalpha(wint_t wc) { return __icu_hasBinaryProperty(wc, UCHAR_ALPHABETIC, isalpha); }
58 int iswblank(wint_t wc) { return __icu_hasBinaryProperty(wc, UCHAR_POSIX_BLANK, isblank); }
59 int iswgraph(wint_t wc) { return __icu_hasBinaryProperty(wc, UCHAR_POSIX_GRAPH, isgraph); }
60 int iswlower(wint_t wc) { return __icu_hasBinaryProperty(wc, UCHAR_LOWERCASE, islower);
    [all...]
  /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...]
  /external/linux-kselftest/tools/testing/selftests/splice/
default_file_splice_read.sh 3 n=`./default_file_splice_read </dev/null | wc -c`
  /bionic/libc/upstream-openbsd/lib/libc/locale/
_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...]
btowc.c 38 wchar_t wc; local
49 if (mbrtowc(&wc, &cc, 1, &mbs) > 1)
51 return (wc);
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
_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...]
_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...]
  /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...]
  /external/compiler-rt/lib/tsan/
analyze_libtsan.sh 40 tot=$(wc -l < $file)
42 rsp=$(grep '(%rsp)' $file | wc -l)
43 push=$(grep 'push' $file | wc -l)
44 pop=$(grep 'pop' $file | wc -l)
45 call=$(grep 'call' $file | wc -l)
46 load=$(egrep 'mov .*\,.*\(.*\)|cmp .*\,.*\(.*\)' $file | wc -l)
47 store=$(egrep 'mov .*\(.*\),' $file | wc -l)
48 mov=$(grep 'mov' $file | wc -l)
49 lea=$(grep 'lea' $file | wc -l)
50 sh=$(grep 'shr\|shl' $file | wc -l
    [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...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
ungetwc.c 38 __ungetwc(wint_t wc, FILE *fp)
42 if (wc == WEOF)
62 wcio->wcio_ungetwc_buf[wcio->wcio_ungetwc_inbuf++] = wc;
65 return wc;
69 ungetwc(wint_t wc, FILE *fp)
74 r = __ungetwc(wc, fp);
  /external/tensorflow/tensorflow/tools/dist_test/scripts/
utils.sh 39 NPODS=$("${KUBECTL_BIN}" "${NS_FLAG}" get pods | tail -n +2 | wc -l)
41 grep "Running" | wc -l)
43 grep "Err" | wc -l)
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
ungetwc.c 41 ungetwc(wint_t wc, FILE *fp)
47 if (wc == WEOF)
70 wcio->wcio_ungetwc_buf[wcio->wcio_ungetwc_inbuf++] = (wchar_t)wc;
74 return wc;
putwc.c 45 putwc(wchar_t wc, FILE *fp)
48 return fputwc(wc, fp);
putwchar.c 45 putwchar(wchar_t wc)
48 return fputwc(wc, stdout);
  /external/clang/test/Misc/
ast-dump-wchar.cpp 12 wchar_t wc[] = L"test\0\\\"\t\a\b\234\u1234\xffffffff"; // \ variable
  /external/e2fsprogs/tests/
test_post 4 num_ok=`ls *.ok 2>/dev/null | wc -l`
5 num_failed=`ls *.failed 2>/dev/null | wc -l`
  /external/ltp/tools/pounder21/test_scripts/
time_consistency 25 OLD_ERRORS=`grep ^--- $LOGFILE | wc -l`
29 NEW_ERRORS=`grep ^--- $LOGFILE | wc -l`
  /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...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
merge_string_literals.sh 32 number_of_occurrence=`grep $2 ./$1 -o| wc -l`
  /external/mesa3d/src/glx/windows/
windowsgl.c 79 WNDCLASSEX wc; local
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.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH)
140 WNDCLASSEX wc; local
292 WNDCLASSEX wc; local
    [all...]

Completed in 451 milliseconds

1 2 3 4 5 6 7 8 91011>>