Home
last modified time | relevance | path

Searched refs:COMMENT (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/netbsd-src/external/mit/lua/dist/src/
H A Dluac.c335 #define COMMENT "\t; " macro
374 printf(COMMENT); PrintConstant(f,bx); in PrintCode()
378 printf(COMMENT); PrintConstant(f,EXTRAARG); in PrintCode()
391 printf(COMMENT "%d out",b+1); in PrintCode()
395 printf(COMMENT "%s",UPVALNAME(b)); in PrintCode()
399 printf(COMMENT "%s",UPVALNAME(b)); in PrintCode()
403 printf(COMMENT "%s",UPVALNAME(b)); in PrintCode()
414 printf(COMMENT); PrintConstant(f,c); in PrintCode()
418 printf(COMMENT "%s",UPVALNAME(a)); in PrintCode()
424 if (isk) { printf(COMMENT); PrintConstant(f,c); } in PrintCode()
[all …]
/netbsd-src/external/bsd/flex/dist/examples/manual/
H A Dpas_include.lex17 %x COMMENT
22 "{" BEGIN(COMMENT);
24 <COMMENT>"}" BEGIN(INITIAL);
25 <COMMENT>"$include"[ \t]*"(" BEGIN(INCLUDE);
26 <COMMENT>[ \t]* /* skip whitespace */
28 <INCLUDE>")" BEGIN(COMMENT);
53 <COMMENT><<EOF>>
/netbsd-src/usr.bin/msgc/
H A Dmsgscan.l54 %x COMMENT
74 "/*" { level = 1; BEGIN COMMENT; } variable
76 <COMMENT>"/*" { level++; }
78 <COMMENT>"*/" { if (level-- == 1) BEGIN 0; }
80 <COMMENT>"\n" { line_no++; }
82 <COMMENT><<EOF>> { yyerror ("EOF inside a comment."); exit (1); }
84 <COMMENT>. {/* eat character */}
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DComment.cpp23 #define ABSTRACT_COMMENT(COMMENT) argument
24 #define COMMENT(CLASS, PARENT) \ macro
28 #undef COMMENT
38 #define ABSTRACT_COMMENT(COMMENT) in getCommentKindName() argument
39 #define COMMENT(CLASS, PARENT) \ in getCommentKindName() macro
43 #undef COMMENT in getCommentKindName()
69 #define ABSTRACT_COMMENT(COMMENT) in CheckCommentASTNodes() argument
70 #define COMMENT(CLASS, PARENT) \ in CheckCommentASTNodes() macro
74 #undef COMMENT in CheckCommentASTNodes()
85 #define ABSTRACT_COMMENT(COMMENT) in child_begin() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DCommentVisitor.h33 #define ABSTRACT_COMMENT(COMMENT) in visit() argument
34 #define COMMENT(CLASS, PARENT) \ in visit() macro
38 #undef COMMENT in visit()
44 #define ABSTRACT_COMMENT(COMMENT) COMMENT argument
45 #define COMMENT(CLASS, PARENT) \ macro
49 #undef COMMENT
/netbsd-src/usr.bin/mkesdb/
H A Dlex.l56 %x COMMENT
63 "/*" { BEGIN COMMENT; } variable
64 <COMMENT>"*/" { BEGIN 0; }
65 <COMMENT>[\n] { line_number++; }
66 <COMMENT>. { }
67 <COMMENT><<EOF>> {
/netbsd-src/usr.bin/mkcsmapper/
H A Dlex.l57 %x COMMENT
64 "/*" { BEGIN COMMENT; } variable
65 <COMMENT>"*/" { BEGIN 0; }
66 <COMMENT>[\n] { line_number++; }
67 <COMMENT>. { }
68 <COMMENT><<EOF>> {
/netbsd-src/sys/dev/microcode/aic7xxx/
H A Daicasm_scan.l85 %x COMMENT
96 "/*" { BEGIN COMMENT; /* Enter comment eating state */ } variable
97 <COMMENT>"/*" { fprintf(stderr, "Warning! Comment within comment."); }
98 <COMMENT>\n { ++yylineno; }
99 <COMMENT>[^*/\n]* ;
100 <COMMENT>"*"+[^*/\n]* ;
101 <COMMENT>"/"+[^*/\n]* ;
102 <COMMENT>"*"+"/" { BEGIN INITIAL; }
/netbsd-src/external/bsd/ekermit/dist/
H A Dkermit.h46 #ifdef COMMENT /* COMMENT must not be defined */
47 #undef COMMENT /* (e.g. in a platform header file) */
117 #ifdef COMMENT /* None of the following ... */
355 #ifdef COMMENT
409 #ifdef COMMENT
/netbsd-src/external/apache2/llvm/dist/clang/utils/perf-training/
H A DCMakeLists.txt27 COMMENT "Clearing old profraw data")
38 COMMENT "Merging profdata"
59 COMMENT "Clearing old dtrace data")
67 COMMENT "Generating order file"
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/conf/
H A Dkeysets.pl24 my $COMMENT = 0x0080;
43 $v |= $COMMENT if $c =~ /\#/;
83 #define CONF_COMMENT $COMMENT
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/conf/
H A Dkeysets.pl24 my $COMMENT = 0x0080;
44 $v |= $COMMENT if $c =~ /\#/;
86 #define CONF_COMMENT $COMMENT
/netbsd-src/external/bsd/openldap/dist/tests/data/
H A Dtest-modify.ldif3 # LEADING COMMENT AND WHITE SPACE
6 # EMBEDDED COMMENT
25 # EMBEDDED COMMENT
97 # TRAILING COMMENT AND WHITE SPACE
H A Dtest-dirsync-cp.ldif1 #LEAD COMMENT
4 #EMBEDDED COMMENT
H A Dtest-ordered-cp.ldif1 #LEAD COMMENT
4 #EMBEDDED COMMENT
/netbsd-src/external/apache2/llvm/dist/llvm/cmake/modules/
H A DAddOCaml.cmake126 COMMENT "Copying ${source} to build area")
136 COMMENT "Building OCaml stub object file ${basename}${CMAKE_C_OUTPUT_EXTENSION}"
157 COMMENT "Building OCaml library ${name}"
168 COMMENT "Building OCaml documentation for ${name}"
218 COMMENT "Copying OCaml library component ${filename} to intermediate area"
H A DCrossCompile.cmake44 COMMENT "Creating ${${project_name}_${target_name}_BUILD}...")
86 COMMENT "Configuring ${target_name} ${project_name}...")
113 COMMENT "Building native ${target}..."
/netbsd-src/external/gpl3/binutils/dist/bfd/doc/
H A Ddoc.str48 : COMMENT
129 COMMENT ;
132 COMMENT ;
/netbsd-src/external/bsd/flex/dist/src/
H A Dscan.l131 %x FIRSTCCL CCL ACTION RECOVER COMMENT ACTION_STRING PERCENT_BRACE_ACTION
174 ^"/*" add_action("/*[""["); yy_push_state( COMMENT );
232 <COMMENT,CODE_COMMENT>{ /* */
238 <COMMENT>{
975 <COMMENT,CODE_COMMENT,COMMENT_DISCARD,ACTION,ACTION_STRING,CHARACTER_CONSTANT><<EOF>> {
/netbsd-src/distrib/syspkg/mk/
H A Dbsd.syspkg.mk80 COMMENT?= ${PKGDIR}/COMMENT
164 PKG_ARGS_COMMON= -v -c ${COMMENT} -d ${DESCR} -f ${PLIST} -l
547 if [ ! -f ${PLIST} -o ! -f ${COMMENT} -o ! -f ${DESCR} ]; then \
587 ${CP} ${COMMENT} ${PKG_DBDIR}/${PKGNAME}/+COMMENT; \
/netbsd-src/external/bsd/libevent/dist/cmake/
H A DCodeCoverage.cmake122COMMENT "Resetting code coverage counters to zero.\nProcessing code coverage counters and generati…
128 COMMENT "Open ./${_outputname}/index.html in your browser to view the coverage report."
156 COMMENT "Running gcovr to produce Cobertura code coverage report."
162 COMMENT "Cobertura code coverage report saved in ${_outputname}.xml."
/netbsd-src/external/gpl2/dtc/dist/
H A Dconvert-dtsv0-lexer.l18 COMMENT "/*"([^*]|\*+[^*/])*\*+"/"
20 GAP ({WS}|{COMMENT}|{LINECOMMENT})*
/netbsd-src/external/apache2/llvm/dist/libcxx/lib/abi/
H A DCMakeLists.txt62 COMMENT "Testing libc++'s exported symbols against the ABI list")
72 COMMENT "Generating the ABI list file for configuration ${abi_list_identifier}")
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/src/
H A Dpo-gram-gen.y127 %token COMMENT
154 %type <string> STRING PREV_STRING COMMENT NAME
179 : COMMENT
/netbsd-src/sys/rump/fs/lib/libnofifovfs/
H A DMakefile5 COMMENT=File system null FIFO support macro

12345678910>>...14