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

1 2 3 4 5 6 7

  /external/bison/lib/
iswblank.c 23 iswblank (wint_t wc)
25 return wc == ' ' || wc == '\t';
wcwidth.c 30 wcwidth (wchar_t wc)
39 return uc_width (wc, encoding);
45 return wcwidth (wc);
47 return wc == 0 ? 0 : iswprint (wc) ? 1 : -1;
wctype.in.h 162 (wint_t wc)
164 return ((wc >= '0' && wc <= '9')
165 || ((wc & ~0x20) >= 'A' && (wc & ~0x20) <= 'Z'));
174 (wint_t wc)
176 return (wc & ~0x20) >= 'A' && (wc & ~0x20) <= 'Z';
185 (wint_t wc)
187 return wc == ' ' || wc == '\t'
    [all...]
mbchar.h 170 bool wc_valid; /* true if wc is a valid wide character */
171 wchar_t wc; /* if wc_valid: the current character */ member in struct:mbchar
185 #define mb_iseq(mbc, sc) ((mbc).wc_valid && (mbc).wc == (sc))
186 #define mb_isnul(mbc) ((mbc).wc_valid && (mbc).wc == 0)
190 ? (int) (mbc1).wc - (int) (mbc2).wc \
202 ? (int) towlower ((mbc1).wc) - (int) towlower ((mbc2).wc) \
213 ? (mbc1).wc == (mbc2).wc \
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
wctype.in.h 107 iswalnum (wint_t wc)
109 return ((wc >= '0' && wc <= '9')
110 || ((wc & ~0x20) >= 'A' && (wc & ~0x20) <= 'Z'));
114 iswalpha (wint_t wc)
116 return (wc & ~0x20) >= 'A' && (wc & ~0x20) <= 'Z';
120 iswblank (wint_t wc)
122 return wc == ' ' || wc == '\t'
    [all...]
wctob.c 27 wctob (wint_t wc)
33 if (wctomb (buf, wc) == 1)
btowc.c 31 wchar_t wc; local
34 if (mbtowc (&wc, buf, 1) >= 0)
35 return wc;
  /ndk/sources/host-tools/make-3.81/
amiga.h 19 extern char * wildcard_expansion PARAMS ((char * wc, char * o));
  /external/webkit/Tools/android/flex-2.5.4a/MISC/fastwc/
wc4.l 1 /* Fastest version of wc: add rules to pick up newlines, too */
9 int cc = 0, wc = 0, lc = 0;
11 {word}{ws}* ++wc; cc += yyleng;
12 {word}{ws}*\n ++wc; cc += yyleng; ++lc;
13 {words}{word}{ws}* wc += 2; cc += yyleng;
14 {words}{word}{ws}*\n wc += 2; cc += yyleng; ++lc;
15 {words}{2}{word}{ws}* wc += 3; cc += yyleng;
16 {words}{2}{word}{ws}*\n wc += 3; cc += yyleng; ++lc;
17 {words}{3}{word}{ws}* wc += 4; cc += yyleng;
18 {words}{3}{word}{ws}*\n wc += 4; cc += yyleng; ++lc
    [all...]
wc3.l 9 int cc = 0, wc = 0, lc = 0;
11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {words}{word}{ws}* cc += yyleng; wc += 2;
14 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
15 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
22 printf( "%8d %8d %8d\n", lc, wc, cc );
wc5.l 9 int cc = 0, wc = 0, lc = 0;
11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {words}{word} cc += yyleng; wc += 2; /* oops */
14 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
15 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
22 printf( "%8d %8d %8d\n", lc, wc, cc );
wc1.l 1 /* First cut at a flex-based "wc" tool. */
7 int cc = 0, wc = 0, lc = 0;
9 {nonws}+ cc += yyleng; ++wc;
16 printf( "%8d %8d %8d\n", lc, wc, cc );
wc2.l 1 /* Somewhat faster "wc" tool: match more text with each rule */
8 int cc = 0, wc = 0, lc = 0;
10 {word}{ws}* cc += yyleng; ++wc;
11 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
18 printf( "%8d %8d %8d\n", lc, wc, cc );
mywc.c 1 /* A simple but fairly efficient C version of the Unix "wc" tool */
8 register int c, cc = 0, wc = 0, lc = 0; local
14 ++wc;
25 done: printf( "%8d%8d%8d\n", lc, wc, cc );
  /external/bison/darwin-lib/
wctype.h 464 (wint_t wc)
466 return ((wc >= '0' && wc <= '9')
467 || ((wc & ~0x20) >= 'A' && (wc & ~0x20) <= 'Z'));
476 (wint_t wc)
478 return (wc & ~0x20) >= 'A' && (wc & ~0x20) <= 'Z';
487 (wint_t wc)
489 return wc == ' ' || wc == '\t'
    [all...]
  /external/bison/linux-lib/
wctype.h 464 (wint_t wc)
466 return ((wc >= '0' && wc <= '9')
467 || ((wc & ~0x20) >= 'A' && (wc & ~0x20) <= 'Z'));
476 (wint_t wc)
478 return (wc & ~0x20) >= 'A' && (wc & ~0x20) <= 'Z';
487 (wint_t wc)
489 return wc == ' ' || wc == '\t'
    [all...]
  /bionic/libc/wchar/
wcswidth.c 46 wchar_t wc; local
50 while (n-- > 0 && (wc = *pwcs++) != L'\0') {
51 if ((l = wcwidth(wc)) < 0)
  /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/compiler-rt/lib/tsan/
analyze_libtsan.sh 29 tot=$(wc -l < $file)
31 rsp=$(grep '(%rsp)' $file | wc -l)
32 push=$(grep 'push' $file | wc -l)
33 pop=$(grep 'pop' $file | wc -l)
34 call=$(grep 'call' $file | wc -l)
35 load=$(egrep 'mov .*\,.*\(.*\)|cmp .*\,.*\(.*\)' $file | wc -l)
36 store=$(egrep 'mov .*\(.*\),' $file | wc -l)
37 mov=$(grep 'mov' $file | wc -l)
38 lea=$(grep 'lea' $file | wc -l)
39 sh=$(grep 'shr\|shl' $file | wc -l
    [all...]
  /bionic/libc/bionic/
wchar.cpp 97 int iswalnum(wint_t wc) { return isalnum(wc); }
98 int iswalpha(wint_t wc) { return isalpha(wc); }
99 int iswcntrl(wint_t wc) { return iscntrl(wc); }
100 int iswdigit(wint_t wc) { return isdigit(wc); }
101 int iswgraph(wint_t wc) { return isgraph(wc); }
    [all...]
  /external/webkit/Tools/WinCELauncher/
main.cpp 87 WNDCLASSW wc; local
88 wc.style = CS_HREDRAW | CS_VREDRAW;
89 wc.lpfnWndProc = WndProc;
90 wc.cbClsExtra = 0;
91 wc.cbWndExtra = 0;
92 wc.hInstance = hInstance;
93 wc.hIcon = 0;
94 wc.hCursor = 0;
95 wc.hbrBackground = static_cast<HBRUSH>(GetStockObject(WHITE_BRUSH));
96 wc.lpszMenuName = 0
    [all...]
  /external/clang/test/Misc/
ast-dump-wchar.cpp 12 wchar_t wc[] = L"test\0\\\"\t\a\b\234\u1234\xffffffff"; // \ variable
  /external/skia/src/gpu/gl/win/
SkNativeGLContext_win.cpp 53 WNDCLASS wc; local
54 wc.cbClsExtra = 0;
55 wc.cbWndExtra = 0;
56 wc.hbrBackground = NULL;
57 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
58 wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
59 wc.hInstance = hInstance;
60 wc.lpfnWndProc = (WNDPROC) DefWindowProc;
61 wc.lpszClassName = TEXT("Griffin");
62 wc.lpszMenuName = NULL
    [all...]
  /external/clang/test/CodeGen/
string-literal-short-wstring.c 31 wchar_t wc = L'\uF00B'; local
  /ndk/sources/cxx-stl/llvm-libc++/src/support/android/
wchar_support.c 15 // Returns 1 if 'wc' is in the 'delim' string, 0 otherwise.
16 static int _wc_indelim(wchar_t wc, const wchar_t* delim) {
18 if (wc == *delim)
28 wchar_t wc = from[n]; local
29 to[n] = wc;
30 if (wc == L'\0')
40 wchar_t wc = src[i]; local
41 dst[i] = wc;
42 if (wc == L'\0')
72 wchar_t wc = s2[i] local
129 wchar_t wc = s[n]; local
155 wchar_t wc = s2[i]; local
166 wchar_t wc = s1[i]; local
179 wchar_t wc = src[i]; local
203 wchar_t wc = s[n]; local
216 wchar_t wc = s[n]; local
229 wchar_t wc = s[n]; local
271 wchar_t wc; local
312 wchar_t wc = str[i]; local
    [all...]

Completed in 547 milliseconds

1 2 3 4 5 6 7