Home
last modified time | relevance | path

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

12345678910>>...19

/freebsd-14.2/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-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DJSONNodeDumper.h118 public comments::ConstCommentVisitor<JSONNodeDumper, void,
131 const comments::CommandTraits *Traits;
137 comments::ConstCommentVisitor<JSONNodeDumper, void,
190 const comments::CommandTraits *Traits) in JSONNodeDumper()
201 void Visit(const comments::Comment *C, const comments::FullComment *FC);
347 void visitTextComment(const comments::TextComment *C,
348 const comments::FullComment *);
352 const comments::FullComment *);
354 const comments::FullComment *);
356 const comments::FullComment *);
[all …]
H A DTextNodeDumper.h129 public comments::ConstCommentVisitor<TextNodeDumper, void,
154 const comments::CommandTraits *Traits = nullptr;
169 void Visit(const comments::Comment *C, const comments::FullComment *FC);
213 void visitTextComment(const comments::TextComment *C,
214 const comments::FullComment *);
216 const comments::FullComment *);
218 const comments::FullComment *);
220 const comments::FullComment *);
222 const comments::FullComment *);
231 const comments::FullComment *);
[all …]
H A DASTNodeTraverser.h64 public comments::ConstCommentVisitor<Derived, void,
65 const comments::FullComment *>,
102 if (const comments::FullComment *Comment = in Visit()
263 void Visit(const comments::Comment *C, const comments::FullComment *FC) { in Visit()
269 comments::ConstCommentVisitor<Derived, void, in Visit()
270 const comments::FullComment *>::visit(C, in Visit()
272 for (comments::Comment::child_iterator I = C->child_begin(), in Visit()
H A DRawCommentList.h28 namespace comments {
169 comments::FullComment *parse(const ASTContext &Context,
/freebsd-14.2/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()
239 if (comments) { in main()
240 ucl_object_unref (comments); in main()
241 comments = NULL; in main()
261 func, comments); in main()
265 func, comments); in main()
270 func, comments); in main()
274 func, comments); in main()
295 if (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 assert (ucl_object_emit_full (obj, UCL_EMIT_CONFIG, fn, comments)); in main()
281 ucl_object_unref (comments); in main()
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp188 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()
388 comments::CommandTraits EmptyTraits(Allocator, DefOpts); in getFormattedLines()
414 comments::Token Tok; in getFormattedLines()
418 if (Tok.is(comments::tok::eof)) in getFormattedLines()
420 if (Tok.is(comments::tok::newline)) { in getFormattedLines()
460 for (L.lex(Tok); Tok.isNot(comments::tok::eof); L.lex(Tok)) { in getFormattedLines()
[all …]
H A DJSONNodeDumper.cpp1673 if (const comments::CommandInfo *Info = in getCommentCommandName()
1685 const comments::InlineCommandComment *C, const comments::FullComment *) { in visitInlineCommandComment()
1692 case comments::InlineCommandRenderKind::Bold: in visitInlineCommandComment()
1715 const comments::HTMLStartTagComment *C, const comments::FullComment *) { in visitHTMLStartTagComment()
1730 const comments::HTMLEndTagComment *C, const comments::FullComment *) { in visitHTMLEndTagComment()
1735 const comments::BlockCommandComment *C, const comments::FullComment *) { in visitBlockCommandComment()
1747 const comments::ParamCommandComment *C, const comments::FullComment *FC) { in visitParamCommandComment()
1770 const comments::TParamCommandComment *C, const comments::FullComment *FC) { in visitTParamCommandComment()
1785 const comments::VerbatimBlockComment *C, const comments::FullComment *) { in visitVerbatimBlockComment()
1792 const comments::FullComment *) { in visitVerbatimBlockLineComment()
[all …]
H A DTextNodeDumper.cpp842 const comments::CommandInfo *Info = in getCommandName()
862 const comments::InlineCommandComment *C, const comments::FullComment *) { in visitInlineCommandComment()
868 case comments::InlineCommandRenderKind::Bold: in visitInlineCommandComment()
887 const comments::HTMLStartTagComment *C, const comments::FullComment *) { in visitHTMLStartTagComment()
901 const comments::HTMLEndTagComment *C, const comments::FullComment *) { in visitHTMLEndTagComment()
906 const comments::BlockCommandComment *C, const comments::FullComment *) { in visitBlockCommandComment()
913 const comments::ParamCommandComment *C, const comments::FullComment *FC) { in visitParamCommandComment()
934 const comments::TParamCommandComment *C, const comments::FullComment *FC) { in visitTParamCommandComment()
954 const comments::VerbatimBlockComment *C, const comments::FullComment *) { in visitVerbatimBlockComment()
963 const comments::FullComment *) { in visitVerbatimBlockLineComment()
[all …]
/freebsd-14.2/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-14.2/contrib/libucl/tests/basic/
H A Dcomments.in1 # This test is intended to check various comments in ucl
10 # Nested comments
H A D14.in1 # Bad comments case
/freebsd-14.2/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-14.2/sys/contrib/device-tree/Bindings/
H A D.yamllint21 comments:
24 comments-indentation: disable
/freebsd-14.2/usr.bin/indent/tests/
H A DMakefile6 ${PACKAGE}FILES+= comments.0
7 ${PACKAGE}FILES+= comments.0.stdout
/freebsd-14.2/contrib/arm-optimized-routines/pl/
H A DREADME.contributors12 justification for inclusion should be stated in comments at the top of the
14 in comments.
/freebsd-14.2/contrib/unbound/validator/
H A Dval_anchor.c531 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-14.2/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-14.2/usr.bin/m4/tests/
H A DMakefile8 ${PACKAGE}FILES+= comments.m4
26 ${PACKAGE}FILES+= regress.comments.out
/freebsd-14.2/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-14.2/sys/contrib/device-tree/Bindings/regulator/
H A Drohm,bd71815-regulator.yaml57 comments below for bucks/LDOs which support this. 0 means
77 comments below for bucks/LDOs which support this. 0 means
86 comments below for bucks/LDOs which support this. 0 means
/freebsd-14.2/contrib/libucl/src/
H A Ducl_emitter.c383 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()

12345678910>>...19