| /freebsd-src/tools/test/stress2/ |
| H A D | load.cfg | 6 ###export TESTPROGS="" # Remove comments for test 7 ###export HOG=1 # Remove comments for test 9 ###export LOAD=100 # Remove comments for test 10 ###export swapLOAD=100 # Remove comments for test 11 ###export rwLOAD=100 # Remove comments for test 12 ###export mkdirLOAD=100 # Remove comments for test 13 ###export creatLOAD=100 # Remove comments for test 14 ###export symlinkLOAD=100 # Remove comments for test 15 ###export swapLOAD=100 # Remove comments for test 16 ###export linkLOAD=100 # Remove comments for test
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | JSONNodeDumper.h | 118 public comments::ConstCommentVisitor<JSONNodeDumper, void, 119 const comments::FullComment *>, 131 const comments::CommandTraits *Traits; 137 comments::ConstCommentVisitor<JSONNodeDumper, void, 138 const comments::FullComment *>; 190 const comments::CommandTraits *Traits) in JSONNodeDumper() 202 void Visit(const comments::Comment *C, const comments::FullComment *FC); 352 void visitTextComment(const comments::TextComment *C, 353 const comments [all...] |
| H A D | TextNodeDumper.h | 130 public comments::ConstCommentVisitor<TextNodeDumper, void, 131 const comments::FullComment *>, 156 const comments::CommandTraits *Traits = nullptr; 171 void Visit(const comments::Comment *C, const comments::FullComment *FC); 222 void visitTextComment(const comments::TextComment *C, 223 const comments::FullComment *); 224 void visitInlineCommandComment(const comments::InlineCommandComment *C, 225 const comments::FullComment *); 226 void visitHTMLStartTagComment(const comments [all...] |
| H A D | ASTNodeTraverser.h | 46 void Visit(const comments::Comment *C, const comments::FullComment *FC); 68 public comments::ConstCommentVisitor<Derived, void, 69 const comments::FullComment *>, 118 if (const comments::FullComment *Comment = in Visit() 298 void Visit(const comments::Comment *C, const comments::FullComment *FC) { 304 comments::ConstCommentVisitor<Derived, void, in dumpDeclContext() 305 const comments::FullComment *>::visit(C, in dumpDeclContext() 307 for (comments [all...] |
| H A D | RawCommentList.h | 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===// 28 namespace comments { 30 } // end namespace comments 36 RCK_OrdinaryBCPL, ///< Any normal BCPL comments 42 RCK_Merged ///< Two or more documentation comments merged together 133 /// /* The comments styles might be mixed. */ 137 /// "The comments styles might be mixed." 169 comments::FullComment *parse(const ASTContext &Context, 210 /// This class represents all comments included in the translation unit, 220 /// comment itself, or nullptr in case there are no comments i [all...] |
| /freebsd-src/contrib/libucl/tests/ |
| H A D | test_basic.c | 36 ucl_object_t *obj, *comments = NULL; in main() local 195 comments = ucl_object_ref (ucl_parser_get_comments (parser)); in main() 214 ucl_object_emit_full (obj, UCL_EMIT_CONFIG, func, comments); in main() 239 if (comments) { in main() 240 ucl_object_unref (comments); in main() 241 comments = NULL; in main() 245 comments = ucl_object_ref (ucl_parser_get_comments (parser2)); in main() 261 func, comments); in main() 265 func, comments); in main() 270 func, comments); in main() [all …]
|
| H A D | test_generate.c | 44 ucl_object_t *obj, *cur, *ar, *ar1, *ref, *test_obj, *comments; in main() local 205 comments = ucl_object_typed_new (UCL_OBJECT); in main() 208 ucl_comments_add (comments, found, "# test comment"); in main() 209 assert (ucl_comments_find (comments, found) != NULL); in main() 210 assert (ucl_comments_find (comments, test) == NULL); in main() 211 ucl_comments_move (comments, found, test); in main() 212 assert (ucl_comments_find (comments, found) == NULL); in main() 213 assert (ucl_comments_find (comments, test) != NULL); in main() 277 assert (ucl_object_emit_full (obj, UCL_EMIT_CONFIG, fn, comments)); in main() 281 ucl_object_unref (comments); in main()
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/Index/ |
| H A D | CommentToXML.h | 17 namespace comments { 28 void convertCommentToHTML(const comments::FullComment *FC, 32 void convertHTMLTagNodeToText(const comments::HTMLTagComment *HTC, 36 void convertCommentToXML(const comments::FullComment *FC,
|
| /freebsd-src/contrib/llvm-project/clang/lib/AST/ |
| H A D | RawCommentList.cpp | 188 comments::Lexer L(Allocator, Context.getDiagnostics(), in extractBriefText() 192 comments::BriefParser P(L, Context.getCommentCommandTraits()); in extractBriefText() 204 comments::FullComment *RawComment::parse(const ASTContext &Context, in parse() 210 comments::Lexer L(Context.getAllocator(), Context.getDiagnostics(), in parse() 214 comments::Sema S(Context.getAllocator(), Context.getSourceManager(), in parse() 219 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(), in parse() 388 comments::CommandTraits EmptyTraits(Allocator, DefOpts); in getFormattedLines() 389 comments::Lexer L(Allocator, Diags, EmptyTraits, getSourceRange().getBegin(), in getFormattedLines() 414 comments::Token Tok; in getFormattedLines() 418 if (Tok.is(comments::tok::eof)) in getFormattedLines() [all …]
|
| H A D | JSONNodeDumper.cpp | 149 void JSONNodeDumper::Visit(const comments::Comment *C, in Visit() 150 const comments::FullComment *FC) { in Visit() 1716 if (const comments::CommandInfo *Info = in visitHTMLStartTagComment() 1717 comments::CommandTraits::getBuiltinCommandInfo(CommandID)) in visitHTMLStartTagComment() 1722 void JSONNodeDumper::visitTextComment(const comments::TextComment *C, in visitHTMLStartTagComment() 1723 const comments::FullComment *) { in visitHTMLStartTagComment() 1728 const comments::InlineCommandComment *C, const comments::FullComment *) { 1732 case comments::InlineCommandRenderKind::Normal: in visitHTMLEndTagComment() 1735 case comments in visitBlockCommandComment() [all...] |
| H A D | TextNodeDumper.cpp | 72 void TextNodeDumper::Visit(const comments::Comment *C, in Visit() 73 const comments::FullComment *FC) { in Visit() 88 const comments::FullComment *>::visit(C, FC); in Visit() 979 const comments::CommandInfo *Info = in VisitTypeTemplateArgument() 980 comments::CommandTraits::getBuiltinCommandInfo(CommandID); 993 void TextNodeDumper::visitTextComment(const comments::TextComment *C, in VisitIntegralTemplateArgument() 994 const comments::FullComment *) { 999 const comments::InlineCommandComment *C, const comments::FullComment *) { in VisitTemplateTemplateArgument() 1002 case comments [all...] |
| /freebsd-src/contrib/tzdata/ |
| H A D | checktab.awk | 77 comments = input_comments[zone_NR] = $4 122 comments = input_comments[i] 132 if (used_max <= 1 && comments && zone_table != "zonenow.tab") { 134 zone_table, i, comments \ 137 } else if (1 < used_max && !comments) {
|
| /freebsd-src/contrib/libucl/tests/basic/ |
| H A D | comments.in | 1 # This test is intended to check various comments in ucl 10 # Nested comments
|
| H A D | 14.in | 1 # Bad comments case
|
| /freebsd-src/contrib/byacc/ |
| H A D | NEW_FEATURES | 26 Line-end comments, as in BCPL, are permitted. Line-end comments 27 begin with // and end at the next end-of-line. Line-end comments are 28 permitted in C code; they are converted to C comments on output.
|
| /freebsd-src/sys/contrib/device-tree/Bindings/ |
| H A D | .yamllint | 26 comments: 29 comments-indentation: disable
|
| /freebsd-src/usr.bin/indent/tests/ |
| H A D | Makefile | 5 ${PACKAGE}FILES+= comments.0 6 ${PACKAGE}FILES+= comments.0.stdout
|
| /freebsd-src/contrib/arm-optimized-routines/pl/ |
| H A D | README.contributors | |
| /freebsd-src/contrib/unbound/validator/ |
| H A D | val_anchor.c | 531 readkeyword_bindfile(FILE* in, sldns_buffer* buf, int* line, int comments) in readkeyword_bindfile() argument 536 if(comments && c == '#') { /* # blabla */ in readkeyword_bindfile() 540 } else if(comments && c=='/' && numdone>0 && /* /_/ bla*/ in readkeyword_bindfile() 548 } else if(comments && c=='*' && numdone>0 && /* /_* bla *_/ */ in readkeyword_bindfile() 646 int comments = 1; in process_bind_contents() local 650 while((rdlen=readkeyword_bindfile(in, buf, line, comments))) { in process_bind_contents() 660 comments = 0; in process_bind_contents() 670 comments = 1; in process_bind_contents() 672 comments = !comments; in process_bind_contents() 697 comments = 1; in process_bind_contents()
|
| /freebsd-src/crypto/openssh/ |
| H A D | authfd.c | 308 (idl->comments = calloc(num, sizeof(*idl->comments))) == NULL) { in ssh_fetch_identitylist() 314 &(idl->comments[i]))) != 0) { in ssh_fetch_identitylist() 345 if (idl->comments != NULL) in ssh_free_identitylist() 346 free(idl->comments[i]); in ssh_free_identitylist() 349 free(idl->comments); in ssh_free_identitylist()
|
| /freebsd-src/usr.bin/m4/tests/ |
| H A D | Makefile | 7 ${PACKAGE}FILES+= comments.m4 25 ${PACKAGE}FILES+= regress.comments.out
|
| /freebsd-src/usr.sbin/lpr/chkprintcap/ |
| H A D | skimprintcap.c | 140 skinf->comments++; in skim_printcap() 258 skinf->lines, skinf->comments, skinf->entries, pcap_fname); in skim_printcap()
|
| H A D | skimprintcap.h | 38 int comments; member
|
| /freebsd-src/contrib/libucl/src/ |
| H A D | ucl_emitter.c | 383 if (ctx->comments && ctx->id == UCL_EMIT_CONFIG) { in ucl_emitter_common_elt() 384 comment = ucl_object_lookup_len (ctx->comments, (const char *)&obj, in ucl_emitter_common_elt() 667 const ucl_object_t *comments) in ucl_object_emit_full() argument 679 my_ctx.comments = comments; in ucl_object_emit_full()
|
| /freebsd-src/contrib/libucl/include/ |
| H A D | ucl.h | 1267 UCL_EXTERN const ucl_object_t * ucl_comments_find (const ucl_object_t *comments, 1277 UCL_EXTERN bool ucl_comments_move (ucl_object_t *comments, 1286 UCL_EXTERN void ucl_comments_add (ucl_object_t *comments, 1442 const ucl_object_t *comments; member 1478 const ucl_object_t *comments);
|