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

1 2 3 4 5 6

  /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;
wcrtomb.c 28 wcrtomb (char *s, wchar_t wc, mbstate_t *ps)
43 int ret = wctomb (s, 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 );
  /cts/tools/dx-tests/etc/morescripts/
countTests.sh 20 egrep -R 'public void testN[0-9][0-9]?' * | grep ".java" | sed -e '/.svn/d' | sort | wc -l
23 egrep -R 'public void testB[0-9][0-9]?' * | grep ".java" | sed -e '/.svn/d' | sort | wc -l
26 egrep -R 'public void testE[0-9][0-9]?' * | grep ".java" | sed -e '/.svn/d' | sort | wc -l
29 egrep -R 'public void testVFE[0-9][0-9]?' * | grep ".java" | sed -e '/.svn/d' | sort | wc -l
  /bionic/libc/wchar/
wcswidth.c 46 wchar_t wc; local
50 while (n-- > 0 && (wc = *pwcs++) != L'\0') {
51 if ((l = wcwidth(wc)) < 0)
  /development/tools/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...]
  /bionic/libc/stdlib/
wchar.c 113 int iswalnum(wint_t wc) { return isalnum(wc); }
114 int iswalpha(wint_t wc) { return isalpha(wc); }
115 int iswcntrl(wint_t wc) { return iscntrl(wc); }
116 int iswdigit(wint_t wc) { return isdigit(wc); }
117 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/llvm/utils/
countloc.sh 12 # (excluding certain things), runs "wc -l" on them to get the number of lines in
34 ./utils/llvmdo -topdir "$TOPDIR" -dirs "include lib tools test utils examples" -code-only wc -l | awk '\
  /external/valgrind/main/auxprogs/
gsl16test 102 echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)
103 echo -n " Native passes: " && (grep PASS: out-REF | wc -l)
104 echo -n " Valgrind fails: " && (grep FAIL: out-V | wc -l)
105 echo -n " Valgrind passes: " && (grep PASS: out-V | wc -l)
107 (echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)) >> summary.txt
108 (echo -n " Native passes: " && (grep PASS: out-REF | wc -l)) >> summary.txt
109 (echo -n " Valgrind fails: " && (grep FAIL: out-V | wc -l)) >> summary.txt
110 (echo -n " Valgrind passes: " && (grep PASS: out-V | wc -l)) >> summary.txt
gsl19test 107 echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)
108 echo -n " Native passes: " && (grep PASS: out-REF | wc -l)
109 echo -n " Valgrind fails: " && (grep FAIL: out-V | wc -l)
110 echo -n " Valgrind passes: " && (grep PASS: out-V | wc -l)
112 (echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)) >> summary.txt
113 (echo -n " Native passes: " && (grep PASS: out-REF | wc -l)) >> summary.txt
114 (echo -n " Valgrind fails: " && (grep FAIL: out-V | wc -l)) >> summary.txt
115 (echo -n " Valgrind passes: " && (grep PASS: out-V | wc -l)) >> summary.txt
  /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/bluetooth/glib/glib/
gutf8.c 709 gunichar wc = (guchar) *p; local
711 if (wc < 0x80)
713 return wc;
715 else if (wc < 0xc0)
719 else if (wc < 0xe0)
722 wc &= 0x1f;
724 else if (wc < 0xf0)
727 wc &= 0x0f;
729 else if (wc < 0xf8)
732 wc &= 0x07
869 gunichar wc = ((unsigned char *)p)[0]; local
963 gunichar wc = g_utf8_get_char_extended (in, len < 0 ? 6 : str + len - in); local
1132 gunichar wc; local
1191 gunichar wc; local
1273 gunichar wc; local
1332 gunichar wc; local
1412 gunichar wc = g_utf8_get_char_extended (in, len < 0 ? 6 : str + len - in); local
1459 gunichar wc = g_utf8_get_char (in); local
1524 gunichar wc = str[i]; local
1554 gunichar wc = str[i]; local
    [all...]
  /dalvik/tools/
dexcheck 60 errcount=`echo $errout | wc -w` > /dev/null
  /external/clang/utils/ABITest/
build-and-summarize.sh 14 wc -l fails-x.txt
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_i18n.c 44 static int32_t wcToLatin1(uint16_t wc, uint8_t * mbs, int32_t bufSize);
56 static int32_t wcToUtf8(uint16_t wc, uint8_t * mbs, int32_t bufSize);
68 static int32_t wcToUtf16be(uint16_t wc, uint8_t * mbs, int32_t bufSize);
80 static int32_t wcToUtf16le(uint16_t wc, uint8_t * mbs, int32_t bufSize);
239 int32_t wcToLatin1(uint16_t wc, uint8_t * mbs, int32_t bufSize)
243 if (wc < 0x100) {
244 ch = (uint8_t)(wc & 0xff);
352 int32_t wcToUtf8(uint16_t wc, uint8_t * mbs, int32_t bufSize)
354 if (wc <= 0x7f) {
356 *mbs = (uint8_t)wc;
    [all...]
  /dalvik/dx/tests/120-disable-extended-ops/
run 25 --dump-method=Blort.test Blort.class | grep "iget/jumbo" | wc -l`
32 --dump-method=Blort.test Blort.class | grep "iget/jumbo" | wc -l`

Completed in 326 milliseconds

1 2 3 4 5 6