Searched refs:COMMENT (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-10.3-release/usr.bin/mkcsmapper/
H A Dlex.l51 %x COMMENT
58 "/*" { BEGIN COMMENT; }
59 <COMMENT>"*/" { BEGIN 0; }
60 <COMMENT>[\n] { linenumber++; }
61 <COMMENT>. { }
62 <COMMENT><<EOF>> {
/freebsd-10.3-release/usr.bin/mkesdb/
H A Dlex.l53 %x COMMENT
60 "/*" { BEGIN COMMENT; }
61 <COMMENT>"*/" { BEGIN 0; }
62 <COMMENT>[\n] { linenumber++; }
63 <COMMENT>. { }
64 <COMMENT><<EOF>> {
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DCommentVisitor.h35 #define ABSTRACT_COMMENT(COMMENT)
36 #define COMMENT(CLASS, PARENT) \ macro
40 #undef COMMENT macro
46 #define ABSTRACT_COMMENT(COMMENT) COMMENT
47 #define COMMENT(CLASS, PARENT) \ macro
51 #undef COMMENT macro
/freebsd-10.3-release/sys/dev/aic7xxx/aicasm/
H A Daicasm_scan.l83 %x COMMENT
95 "/*" { BEGIN COMMENT; /* Enter comment eating state */ }
96 <COMMENT>"/*" { fprintf(stderr, "Warning! Comment within comment."); }
97 <COMMENT>\n { ++yylineno; }
98 <COMMENT>[^*/\n]* ;
99 <COMMENT>"*"+[^*/\n]* ;
100 <COMMENT>"/"+[^*/\n]* ;
101 <COMMENT>"*"+"/" { BEGIN INITIAL; }
/freebsd-10.3-release/contrib/byacc/package/pkgsrc/
H A DMakefile12 COMMENT= Berkeley Yacc macro
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DComment.cpp25 #define ABSTRACT_COMMENT(COMMENT)
26 #define COMMENT(CLASS, PARENT) \ macro
30 #undef COMMENT macro
56 #define ABSTRACT_COMMENT(COMMENT)
57 #define COMMENT(CLASS, PARENT) \ macro
61 #undef COMMENT macro
72 #define ABSTRACT_COMMENT(COMMENT)
73 #define COMMENT(CLASS, PARENT) \ macro
77 #undef COMMENT macro
86 #define ABSTRACT_COMMENT(COMMENT)
87 #define COMMENT macro
91 #undef COMMENT macro
[all...]
/freebsd-10.3-release/lib/libutil/
H A Dproperty.c78 enum { LOOK, COMMENT, NAME, VALUE, MVALUE, COMMIT, FILL, STOP } state, last_state; enumerator in enum:__anon6134
119 state = COMMENT;
125 state = COMMENT;
133 state = COMMENT; /* Ignore the rest of the line */
136 case COMMENT:
178 state = COMMENT;
191 state = COMMENT;
/freebsd-10.3-release/usr.bin/sed/tests/
H A Dmulti_test.sh95 echo "ok $MARK $TESTNAME # $TODO$COMMENT"
97 echo "not ok $MARK $TESTNAME # $TODO$COMMENT"
113 COMMENT='Argument parsing - first type'
120 COMMENT='Argument parsing - second type'
159 COMMENT='Address ranges'
188 COMMENT='Brace and other grouping'
216 COMMENT='Commands a c d and i'
260 COMMENT='Labels and branching'
331 COMMENT='Pattern space commands'
360 COMMENT
[all...]
/freebsd-10.3-release/lib/libz/
H A Dinflate.h28 COMMENT, /* i: waiting for end of comment (gzip) */ enumerator in enum:__anon6144
62 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->
/freebsd-10.3-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinflate.h30 COMMENT, /* i: waiting for end of comment (gzip) */ enumerator in enum:__anon6968
63 NAME -> COMMENT -> HCRC -> TYPE
/freebsd-10.3-release/contrib/dialog/package/freebsd/
H A DMakefile18 COMMENT= An enhanced version of 'dialog' to work with ncurses macro
/freebsd-10.3-release/usr.bin/sed/
H A Ddefs.h116 COMMENT, /* # */ enumerator in enum:e_args
H A Dcompile.c120 {'#', 0, COMMENT},
122 {'\0', 0, COMMENT},
276 case COMMENT: /* \0 # */
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_ra_serf/
H A Dgetlocks.c59 COMMENT,
94 { LOCK, S_, "comment", COMMENT,
197 else if (leaving_state == COMMENT)
57 COMMENT, enumerator in enum:__anon4609
H A Dlog.c60 COMMENT,
121 { ITEM, D_, "comment", COMMENT,
351 else if (leaving_state == COMMENT)
58 COMMENT, enumerator in enum:__anon4611
/freebsd-10.3-release/contrib/flex/
H A Dscan.l102 %x FIRSTCCL CCL ACTION RECOVER COMMENT ACTION_STRING PERCENT_BRACE_ACTION
143 ^"/*" ACTION_ECHO; yy_push_state( COMMENT );
206 <COMMENT>{
216 /* This is the same as COMMENT, but is discarded rather than output. */
873 <ACTION>"/*" ACTION_ECHO; yy_push_state( COMMENT );
939 <COMMENT,COMMENT_DISCARD,ACTION,ACTION_STRING><<EOF>> {
/freebsd-10.3-release/lib/libstand/
H A Dgzipfs.c111 #define COMMENT 0x10 /* bit 4 set: file comment present */ macro
148 if ((flags & COMMENT) != 0) { /* skip the .gz file comment */
/freebsd-10.3-release/crypto/openssl/crypto/conf/
H A Dkeysets.pl12 $COMMENT=0x80;
29 $v|=$COMMENT if ($c =~ /\#/);
125 #define CONF_COMMENT $COMMENT
/freebsd-10.3-release/contrib/tcsh/
H A Dsh.print.c250 #ifdef COMMENT
/freebsd-10.3-release/contrib/texinfo/makeinfo/
H A Dxml.h97 BOOKINFO, ABSTRACT, REPLACEABLE, ENVAR, COMMENT, FUNCTION, LEGALNOTICE, enumerator in enum:xml_element
/freebsd-10.3-release/contrib/dtc/
H A Ddtc-lexer.l34 COMMENT "/*"([^*]|\*+[^*/])*\*+"/"
233 <*>{COMMENT}+ /* eat C-style comments */
/freebsd-10.3-release/contrib/ofed/management/opensm/opensm/
H A Dosm_qos_parser_l.l196 COMMENT \#.*\n
204 {COMMENT} { SAVE_POS; RESET_NEW_LINE_FLAGS; } /* swallow comment */
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnosticIDs.cpp134 CATEGORY(COMMENT, AST)
135 CATEGORY(SEMA, COMMENT)
/freebsd-10.3-release/contrib/gcclibs/libcpp/include/
H A Dcpplib.h133 TK(COMMENT, LITERAL) /* Only if output comments. */ \
160 /* Payload of a NUMBER, STRING, CHAR or COMMENT token. */
/freebsd-10.3-release/sys/kern/
H A Dkern_gzio.c52 #define COMMENT 0x10 /* bit 4 set: file comment present */ macro

Completed in 229 milliseconds

12