Searched refs:comments (Results 1 - 25 of 78) sorted by relevance

1234

/freebsd-11-stable/usr.sbin/lpr/chkprintcap/
H A Dskimprintcap.h39 int comments; member in struct:skiminfo
H A Dskimprintcap.c140 skinf->comments++;
257 warnx("%4d lines (%d comments), %d entries for %s",
258 skinf->lines, skinf->comments, skinf->entries, pcap_fname);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/
H A DCommentToXML.h1 //===--- CommentToXML.h - Convert comments to XML representation ----------===//
18 namespace comments { namespace in namespace:clang
29 void convertCommentToHTML(const comments::FullComment *FC,
33 void convertHTMLTagNodeToText(const comments::HTMLTagComment *HTC,
37 void convertCommentToXML(const comments::FullComment *FC,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DJSONNodeDumper.h115 public comments::ConstCommentVisitor<JSONNodeDumper, void,
116 const comments::FullComment *>,
128 const comments::CommandTraits *Traits;
134 comments::ConstCommentVisitor<JSONNodeDumper, void,
135 const comments::FullComment *>;
186 const comments::CommandTraits *Traits)
197 void Visit(const comments::Comment *C, const comments::FullComment *FC);
323 void visitTextComment(const comments::TextComment *C,
324 const comments
[all...]
H A DTextNodeDumper.h127 public comments::ConstCommentVisitor<TextNodeDumper, void,
128 const comments::FullComment *>,
147 const comments::CommandTraits *Traits;
154 const comments::CommandTraits *Traits);
156 void Visit(const comments::Comment *C, const comments::FullComment *FC);
190 void visitTextComment(const comments::TextComment *C,
191 const comments::FullComment *);
192 void visitInlineCommandComment(const comments::InlineCommandComment *C,
193 const comments
[all...]
H A DCommentBriefParser.h20 namespace comments { namespace in namespace:clang
50 } // end namespace comments
H A DASTDumper.h26 ASTDumper(raw_ostream &OS, const comments::CommandTraits *Traits,
30 ASTDumper(raw_ostream &OS, const comments::CommandTraits *Traits,
33 ASTDumper(raw_ostream &OS, const comments::CommandTraits *Traits,
H A DCommentCommandTraits.h26 namespace comments { namespace in namespace:clang
126 /// in comments.
184 } // end namespace comments
H A DRawCommentList.h1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
26 namespace comments { namespace in namespace:clang
28 } // end namespace comments
34 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
40 RCK_Merged ///< Two or more documentation comments merged together
120 /// /* The comments styles might be mixed. */
124 /// "The comments styles might be mixed."
141 comments::FullComment *parse(const ASTContext &Context,
176 /// Compare comments' source locations.
193 /// This class represents all comments include
[all...]
H A DASTNodeTraverser.h40 void Visit(const comments::Comment *C, const comments::FullComment *FC);
58 public comments::ConstCommentVisitor<Derived, void,
59 const comments::FullComment *>,
93 if (const comments::FullComment *Comment =
215 void Visit(const comments::Comment *C, const comments::FullComment *FC) {
221 comments::ConstCommentVisitor<Derived, void,
222 const comments::FullComment *>::visit(C,
224 for (comments
[all...]
H A DCommentParser.h25 namespace comments { namespace in namespace:clang
118 } // end namespace comments
H A DCommentVisitor.h17 namespace comments { namespace in namespace:clang
66 } // namespace comments
/freebsd-11-stable/etc/rc.d/
H A Drctl21 while read var comments
/freebsd-11-stable/contrib/libucl/tests/
H A Dtest_basic.c36 ucl_object_t *obj, *comments = NULL; local
190 comments = ucl_object_ref (ucl_parser_get_comments (parser));
209 ucl_object_emit_full (obj, UCL_EMIT_CONFIG, func, comments);
234 if (comments) {
235 ucl_object_unref (comments);
236 comments = NULL;
240 comments = ucl_object_ref (ucl_parser_get_comments (parser2));
256 func, comments);
260 func, comments);
265 func, comments);
[all...]
H A Dtest_generate.c44 ucl_object_t *obj, *cur, *ar, *ar1, *ref, *test_obj, *comments; local
205 comments = ucl_object_typed_new (UCL_OBJECT);
208 ucl_comments_add (comments, found, "# test comment");
209 assert (ucl_comments_find (comments, found) != NULL);
210 assert (ucl_comments_find (comments, test) == NULL);
211 ucl_comments_move (comments, found, test);
212 assert (ucl_comments_find (comments, found) == NULL);
213 assert (ucl_comments_find (comments, test) != NULL);
268 assert (ucl_object_emit_full (obj, UCL_EMIT_CONFIG, fn, comments));
272 ucl_object_unref (comments);
[all...]
/freebsd-11-stable/usr.bin/indent/tests/
H A DMakefile7 ${PACKAGE}FILES+= comments.0
8 ${PACKAGE}FILES+= comments.0.stdout
/freebsd-11-stable/usr.bin/m4/tests/
H A Dregress.sh13 REGRESSION_TEST(`comments', `test_m4 ${SRCDIR}/comments.m4')
H A DMakefile9 ${PACKAGE}FILES+= comments.m4
27 ${PACKAGE}FILES+= regress.comments.out
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp1 //===--- RawCommentList.cpp - Processing raw comments -----------*- C++ -*-===//
186 comments::Lexer L(Allocator, Context.getDiagnostics(),
190 comments::BriefParser P(L, Context.getCommentCommandTraits());
202 comments::FullComment *RawComment::parse(const ASTContext &Context,
208 comments::Lexer L(Context.getAllocator(), Context.getDiagnostics(),
212 comments::Sema S(Context.getAllocator(), Context.getSourceManager(),
217 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(),
278 // Ordinary comments are not interesting for us.
299 // Merge comments only if there is only whitespace between them.
300 // Can't merge trailing and non-trailing comments unles
[all...]
H A DJSONNodeDumper.cpp127 void JSONNodeDumper::Visit(const comments::Comment *C,
128 const comments::FullComment *FC) {
1493 if (const comments::CommandInfo *Info =
1494 comments::CommandTraits::getBuiltinCommandInfo(CommandID))
1499 void JSONNodeDumper::visitTextComment(const comments::TextComment *C,
1500 const comments::FullComment *) {
1505 const comments::InlineCommandComment *C, const comments::FullComment *) {
1509 case comments::InlineCommandComment::RenderNormal:
1512 case comments
[all...]
/freebsd-11-stable/usr.sbin/pw/
H A Dpw_conf.c113 static char const *comments[_UC_FIELDS] = variable
528 if (comments[i])
529 fputs(comments[i], fp);
/freebsd-11-stable/contrib/binutils/binutils/
H A Dmcparse.y63 %type<ustr> alias_name token lines comments
76 | comments
297 comments: MCCOMMENT { $$ = $1; } label
298 | comments MCCOMMENT
/freebsd-11-stable/crypto/openssh/
H A Dauthfd.h23 char **comments; member in struct:ssh_identitylist
/freebsd-11-stable/contrib/tzdata/
H A Dchecktab.awk65 comments = $4
80 tz2comments[tz] = comments
/freebsd-11-stable/contrib/gcc/
H A Dc-ppoutput.c368 const cpp_token **comments)
376 if (comments != NULL)
378 while (*comments != NULL)
380 if ((*comments)->flags & PREV_WHITE)
382 cpp_output_token (*comments, print.outf);
383 ++comments;
366 cb_include(cpp_reader *pfile ATTRIBUTE_UNUSED, source_location line, const unsigned char *dir, const char *header, int angle_brackets, const cpp_token **comments) argument

Completed in 148 milliseconds

1234