Home
last modified time | relevance | path

Searched refs:wc (Results 1 – 25 of 49) sorted by relevance

12

/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/fastwc/
Dwc4.l9 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;
25 printf( "%8d %8d %8d\n", lc, wc, cc );
Dwc5.l9 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 );
Dwc3.l9 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 );
Dwc2.l8 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 );
DREADME3 version of the Unix "wc" tool: read text from stdin and print the number of
7 figures, with the following "wc" counts:
28 The different versions of "wc":
33 wc1.l a naive flex "wc" implementation
51 /bin/wc 5.8 Sun's standard "wc" tool
Dwc1.l7 int cc = 0, wc = 0, lc = 0;
9 {nonws}+ cc += yyleng; ++wc;
16 printf( "%8d %8d %8d\n", lc, wc, cc );
Dmywc.c8 register int c, cc = 0, wc = 0, lc = 0; in main() local
14 ++wc; in main()
25 done: printf( "%8d%8d%8d\n", lc, wc, cc ); in main()
/external/bison/lib/
Dmbswidth.c51 # define iswprint(wc) 1 argument
54 # define iswcntrl(wc) 0 argument
74 # define wcwidth(wc) ((wc) == 0 ? 0 : iswprint (wc) ? 1 : -1) argument
152 wchar_t wc; in mbsnwidth() local
156 bytes = mbrtowc (&wc, p, plimit - p, &mbstate); in mbsnwidth()
188 w = wcwidth (wc); in mbsnwidth()
195 width += (iswcntrl (wc) ? 0 : 1); in mbsnwidth()
Dquotearg.c57 # define iswprint(wc) isprint ((unsigned char) (wc)) argument
70 # define iswprint(wc) 1 argument
/external/dbus/
Dcleanup-man-pages.sh53 LINES=`wc -l "$I" | cut -d ' ' -f 1`
73 NUKE_COUNT=`find nuke -type f -name "*" | wc -l`
74 KEEP_COUNT=`find keep -type f -name "*" | wc -l`
75 MISSING_COUNT=`find . -maxdepth 1 -type f -name "*" | wc -l`
/external/opencore/protocols/sdp/parser/src/
Dsdp_parsing_utils.cpp357 oscl_wchar wc = (uint16)(firstbyte << 8 | (uint16) secondbyte); in pvSDPParserParse3GPPAssetInfoLocation() local
358 bool nextChar = (wc == 0) ? false : true; in pvSDPParserParse3GPPAssetInfoLocation()
363 wc = (uint16)(firstbyte << 8 | (uint16) secondbyte); in pvSDPParserParse3GPPAssetInfoLocation()
364 nextChar = (wc == 0) ? false : true; in pvSDPParserParse3GPPAssetInfoLocation()
414 oscl_wchar wc = (uint16)(firstbyte << 8 | (uint16) secondbyte); in pvSDPParserParse3GPPAssetInfoLocation() local
415 bool nextChar = (wc == 0) ? false : true; in pvSDPParserParse3GPPAssetInfoLocation()
420 wc = (uint16)(firstbyte << 8 | (uint16) secondbyte); in pvSDPParserParse3GPPAssetInfoLocation()
421 nextChar = (wc == 0) ? false : true; in pvSDPParserParse3GPPAssetInfoLocation()
454 oscl_wchar wc = (uint16)(firstbyte << 8 | (uint16) secondbyte); in pvSDPParserParse3GPPAssetInfoLocation() local
455 bool nextChar = (wc == 0) ? false : true; in pvSDPParserParse3GPPAssetInfoLocation()
[all …]
/external/e2fsprogs/tests/
Dtest_script.in69 num_ok=`ls *.ok 2>/dev/null | wc -l`
70 num_failed=`ls *.failed 2>/dev/null | wc -l`
/external/bison/m4/
Dmbrtowc.m420 [[wchar_t wc;
24 return ! (sizeof state && (mbrtowc) (&wc, s, n, &state));]])],
/external/webkit/WebCore/platform/graphics/gtk/
DGlyphPageTreeNodePango.cpp40 static PangoGlyph pango_font_get_glyph(PangoFont* font, PangoContext* context, gunichar wc) in pango_font_get_glyph() argument
45 gint length = g_unichar_to_utf8(wc, buffer); in pango_font_get_glyph()
/external/e2fsprogs/lib/blkid/
Dtest_probe.in35 num_ok=`ls tests/*.ok 2>/dev/null | wc -l`
36 num_failed=`ls tests/*.failed 2>/dev/null | wc -l`
/external/genext2fs/
DMakefile.in418 test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
424 test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
547 && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
559 @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
DConfig.mk11 num_inodes=`find $(1) | wc -l` ; num_inodes=`expr $$num_inodes + 500`; \
Dmkbootimg_ext2.sh102 num_inodes=`find $TMPDIR | wc -l`
/external/e2fsprogs/lib/ext2fs/tdb/
Dbuild-tdb23 if [ `tail -n 1 tdb.c | wc -c` -gt 1 ]; then
/external/bison/
DMakefile.maint220 | wc --max-line-length); \
222 |tr -d '"' | wc --max-line-length); \
/external/dbus/test/name-test/
DMakefile.in487 test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
493 test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
/external/grub/util/
Dgrub-image.in76 tarsize=`zcat $bootdir.tar.gz | wc -c`
Dgrub-image76 tarsize=`zcat $bootdir.tar.gz | wc -c`
/external/webkit/JavaScriptCore/wtf/
Ddtoa.cpp462 int k, wa, wb, wc; in mult() local
479 wc = wa + wb; in mult()
480 if (wc > a->maxwds) in mult()
483 for (x = c->x, xa = x + wc; x < xa; x++) in mult()
551 for (xc0 = c->x, xc = xc0 + wc; wc > 0 && !*--xc; --wc) { } in mult()
552 c->wds = wc; in mult()
/external/dbus/test/
DMakefile.in681 test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
687 test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \

12