Home
last modified time | relevance | path

Searched refs:comments (Results 1 – 25 of 489) sorted by relevance

12345678910>>...20

/freebsd/tools/test/stress2/
H A Dload.cfg6 ###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/contrib/llvm-project/clang/include/clang/AST/
H A DJSONNodeDumper.h118 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);
357 void visitTextComment(const comments::TextComment *C,
358 const comments::FullComment *);
359 void visitInlineCommandComment(const comments::InlineCommandComment *C,
[all …]
H A DTextNodeDumper.h130 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::HTMLStartTagComment *C,
227 const comments::FullComment *);
[all …]
H A DASTNodeTraverser.h68 public comments::ConstCommentVisitor<Derived, void,
69 const comments::FullComment *>,
118 if (const comments::FullComment *Comment =
298 void Visit(const comments::Comment *C, const comments::FullComment *FC) { in Visit()
304 comments::ConstCommentVisitor<Derived, void, in Visit()
305 const comments::FullComment *>::visit(C, in Visit()
307 for (comments::Comment::child_iterator I = C->child_begin(), in Visit()
/freebsd/contrib/libucl/tests/
H A Dtest_basic.c36 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 Dtest_generate.c44 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 ucl_object_emit_full (obj, UCL_EMIT_CONFIG, fn, comments); in main()
281 ucl_object_unref (comments); in main()
/freebsd/contrib/pkgconf/doc/
H A Dextract.py67 comments = []
78 comments.append(comment)
79 return comments
101 comments.append(comment)
119 comments.append(comment)
147 comments = [comment for comment in extract_comments(sys.argv[1]) if comment.doc_text] variable
148 for comment in comments:
/freebsd/contrib/llvm-project/clang/include/clang/Index/
H A DCommentToXML.h17 namespace comments {
28 void convertCommentToHTML(const comments::FullComment *FC,
32 void convertHTMLTagNodeToText(const comments::HTMLTagComment *HTC,
36 void convertCommentToXML(const comments::FullComment *FC,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp186 comments::Lexer L(Allocator, Context.getDiagnostics(), in extractBriefText()
190 comments::BriefParser P(L, Context.getCommentCommandTraits()); in extractBriefText()
202 comments::FullComment *RawComment::parse(const ASTContext &Context, in parse()
208 comments::Lexer L(Context.getAllocator(), Context.getDiagnostics(), in parse()
212 comments::Sema S(Context.getAllocator(), Context.getSourceManager(), in parse()
217 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(), in parse()
385 comments::CommandTraits EmptyTraits(Allocator, DefOpts); in getFormattedLines()
386 comments::Lexer L(Allocator, Diags, EmptyTraits, getSourceRange().getBegin(), in getFormattedLines()
411 comments::Token Tok; in getFormattedLines()
415 if (Tok.is(comments::tok::eof)) in getFormattedLines()
[all …]
H A DJSONNodeDumper.cpp148 void JSONNodeDumper::Visit(const comments::Comment *C, in Visit()
149 const comments::FullComment *FC) { in Visit()
1736 if (const comments::CommandInfo *Info = in getCommentCommandName()
1737 comments::CommandTraits::getBuiltinCommandInfo(CommandID)) in getCommentCommandName()
1742 void JSONNodeDumper::visitTextComment(const comments::TextComment *C, in visitTextComment()
1743 const comments::FullComment *) { in visitTextComment()
1748 const comments::InlineCommandComment *C, const comments::FullComment *) { in visitInlineCommandComment()
1752 case comments::InlineCommandRenderKind::Normal: in visitInlineCommandComment()
1755 case comments::InlineCommandRenderKind::Bold: in visitInlineCommandComment()
1758 case comments::InlineCommandRenderKind::Emphasized: in visitInlineCommandComment()
[all …]
H A DTextNodeDumper.cpp73 void TextNodeDumper::Visit(const comments::Comment *C, in Visit()
74 const comments::FullComment *FC) { in Visit()
89 const comments::FullComment *>::visit(C, FC); in Visit()
1110 const comments::CommandInfo *Info = in getCommandName()
1111 comments::CommandTraits::getBuiltinCommandInfo(CommandID); in getCommandName()
1124 void TextNodeDumper::visitTextComment(const comments::TextComment *C, in visitTextComment()
1125 const comments::FullComment *) { in visitTextComment()
1130 const comments::InlineCommandComment *C, const comments::FullComment *) { in visitInlineCommandComment()
1133 case comments::InlineCommandRenderKind::Normal: in visitInlineCommandComment()
1136 case comments::InlineCommandRenderKind::Bold: in visitInlineCommandComment()
[all …]
/freebsd/contrib/tzdata/
H A Dchecktab.awk77 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/contrib/libucl/tests/basic/
H A Dcomments.in1 # This test is intended to check various comments in ucl
14 # Nested comments
/freebsd/contrib/byacc/
H A DNEW_FEATURES26 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/sys/contrib/device-tree/Bindings/
H A D.yamllint26 comments:
29 comments-indentation: disable
/freebsd/contrib/arm-optimized-routines/math/aarch64/experimental/
H A DREADME.contributors11 justification for inclusion should be stated in comments at the top of the
13 in comments.
/freebsd/usr.bin/indent/tests/
H A DMakefile5 ${PACKAGE}FILES+= comments.0
6 ${PACKAGE}FILES+= comments.0.stdout
/freebsd/contrib/unbound/validator/
H A Dval_anchor.c509 * Read a keyword skipping bind comments; spaces, specials, restkeywords.
514 * * comments are skipped if desired
522 * @param comments: if 0, comments are not possible and become text.
523 * if 1, comments are skipped entirely.
530 readkeyword_bindfile(FILE* in, sldns_buffer* buf, int* line, int comments)
535 if(comments && c == '#') { /* # blabla */ in readkeyword_bindfile()
540 } else if(comments && c=='/' && numdone>0 && /* /_/ bla*/ in readkeyword_bindfile()
549 } else if(comments && c=='*' && numdone>0 && /* /_* bla *_/ */ in readkeyword_bindfile()
646 /* comments valu in process_bind_contents() local
531 readkeyword_bindfile(FILE * in,sldns_buffer * buf,int * line,int comments) readkeyword_bindfile() argument
[all...]
/freebsd/crypto/openssh/
H A Dauthfd.c308 (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/usr.bin/m4/tests/
H A Dm4_test.sh70 m4_test comments
229 atf_add_test_case comments
H A DMakefile7 ${PACKAGE}FILES+= comments.m4
30 ${PACKAGE}FILES+= regress.comments.out
/freebsd/contrib/pkgconf/tests/
H A Dparser.sh6 comments \
50 pkgconf --libs comments
58 pkgconf --libs comments-in-fields
/freebsd/usr.sbin/lpr/chkprintcap/
H A Dskimprintcap.c140 skinf->comments++; in skim_printcap()
258 skinf->lines, skinf->comments, skinf->entries, pcap_fname); in skim_printcap()
H A Dskimprintcap.h38 int comments; member
/freebsd/contrib/libucl/include/
H A Ducl.h1280 UCL_EXTERN const ucl_object_t *ucl_comments_find(const ucl_object_t *comments,
1290 UCL_EXTERN bool ucl_comments_move(ucl_object_t *comments,
1299 UCL_EXTERN void ucl_comments_add(ucl_object_t *comments,
1455 const ucl_object_t *comments; member
1491 const ucl_object_t *comments);

12345678910>>...20