Home
last modified time | relevance | path

Searched full:comments (Results 1 – 25 of 1578) sorted by relevance

12345678910>>...64

/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/llvm/lib/CodeGen/AsmPrinter/
H A DByteStreamer.h63 // Return how many comments to skip in DwarfDebug::emitDebugLocEntry to keep in emitDIERef()
64 // comments aligned with debug loc entries. in emitDIERef()
93 std::vector<std::string> &Comments; variable
96 /// Only verbose textual output needs comments. This will be set to
97 /// true for that case, and false otherwise. If false, comments passed in to
102 std::vector<std::string> &Comments, bool GenerateComments) in BufferByteStreamer() argument
103 : Buffer(Buffer), Comments(Comments), GenerateComments(GenerateComments) { in BufferByteStreamer()
108 Comments.push_back(Comment.str()); in emitInt8()
114 Comments.push_back(Comment.str()); in emitSLEB128()
115 // Add some empty comments to keep the Buffer and Comments vectors aligned in emitSLEB128()
[all …]
H A DDebugLocStream.h50 std::vector<std::string> Comments;
53 /// Only verbose textual output needs comments. This will be set to
98 Entries.push_back({BeginSym, EndSym, DWARFBytes.size(), Comments.size()}); in startEntry()
106 return BufferByteStreamer(DWARFBytes, Comments, GenerateComments); in getStreamer()
121 return ArrayRef(Comments).slice(Entries[EI].CommentOffset, in getComments()
148 return Comments.size() - Entries[EI].CommentOffset; in getNumComments()
51 std::vector<std::string> Comments; global() variable
H A DDebugLocStream.cpp32 Comments.erase(Comments.begin() + Entries.back().CommentOffset, in finalizeEntry()
33 Comments.end()); in finalizeEntry()
/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);
352 void visitTextComment(const comments::TextComment *C,
353 const comments::FullComment *);
354 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 DRawCommentList.h1 //===--- 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 in \p File.
/freebsd/usr.bin/indent/
H A Dindent.1206 The column in which comments on code start.
209 The column in which comments on declarations start.
211 is for these comments to start in the same column as those on code.
215 this option enabled, comments look like this:
227 This only affects block comments, not comments to the right of
267 Controls the placement of comments which are not to the
271 means that such comments are placed one indentation level to the
275 lines up these comments with the code.
320 Enables (disables) the formatting of comments that start in column 1.
321 Often, comments whose leading `/' is in column 1 have been carefully
[all …]
H A Dindent_globs.h114 extern char *combuf; /* buffer for comments */
116 extern char *e_com; /* ... and end of stored comments */
162 int decl_com_ind; /* the column in which comments after
169 int com_ind; /* the column in which comments to the right
174 int unindent_displace; /* comments not to the right of code
187 int format_col1_comments; /* If comments which start in column 1
189 * like comments that begin in later columns) */
190 int format_block_comments; /* true if comments beginning with
274 int com_lines; /* the number of lines with comments, set by
291 int out_coms; /* the number of comments processed, set by
/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
203 /* Comments */ in main()
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()
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dcomment.mk3 # Demonstrate how comments are written in makefiles.
15 # Comments can be indented with spaces, but that is rather unusual.
17 # Comments can be indented with a tab.
19 # they are just makefile comments. Before that commit, these comments
22 .if 1 # There can be comments after conditions.
H A Ddirective-endif.mk23 # Comments are allowed after an '.endif'.
27 # Only whitespace and comments are allowed after an '.endif', but nothing
34 # Only whitespace and comments are allowed after an '.endif', but nothing
/freebsd/contrib/llvm-project/clang/include/clang/Index/
H A DCommentToXML.h1 //===--- CommentToXML.h - Convert comments to XML representation ----------===//
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/share/man/man9/
H A Dstyle.950 * VERY important single-line comments look like this.
53 /* Most single-line comments look like this. */
58 * Multi-line comments look like this. Make them real sentences. Fill
63 C++ comments may be used in C and C++ code.
64 Single-line comments should be consistently either C or C++ within a file.
65 Multi-line comments should also be consistently either C or C++, but may differ
66 from single-line comments.
77 Comments starting in columns other than the first are never
270 In the comments, the subexpression
274 For the purposes of comments,
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCommentOptions.h1 //===- CommentOptions.h - Options for parsing comments ----------*- C++ -*-===//
26 /// Command names to treat as block commands in comments.
30 /// Treat ordinary comments as documentation 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/crypto/openssl/util/
H A Dlang-compress.pl6 # - removes comments (not in strings)
41 # Remove comments while preserving strings
104 # Because we use C++ style comments in our .S files, all we can do
148 # Remove comments while preserving strings
152 \#.*?(\n|$) # Perl comments
/freebsd/lib/libc/regex/grot/
H A Dmkh10 # of backslashed newlines, and some fudging of comments. The first is done
12 # Getting comments into the output is tricky; we turn C++-style // comments
13 # into /* */ comments, after altering any existing */'s to avoid trouble.
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentLexer.cpp19 namespace comments { namespace
22 llvm::errs() << "comments::Token Kind=" << Kind << " "; in dump()
91 // This function should be called only for C comments in skipLineStartingDecorations()
219 /// Return the one past end pointer for BCPL comments.
245 /// Return the one past end pointer for C comments.
352 // exact syntax in AST for comments. in lexCommentText()
763 // merged this non-Doxygen comment into a bunch of Doxygen comments in lex()
770 // Skip less-than symbol that marks trailing comments. in lex()
790 // Skip less-than symbol that marks trailing comments. in lex()
804 // Consecutive comments are extracted only if there is only whitespace in lex()
[all …]
H A DJSONNodeDumper.cpp149 void JSONNodeDumper::Visit(const comments::Comment *C, in Visit()
150 const comments::FullComment *FC) { in Visit()
1716 if (const comments::CommandInfo *Info = in getCommentCommandName()
1717 comments::CommandTraits::getBuiltinCommandInfo(CommandID)) in getCommentCommandName()
1722 void JSONNodeDumper::visitTextComment(const comments::TextComment *C, in visitTextComment()
1723 const comments::FullComment *) { in visitTextComment()
1728 const comments::InlineCommandComment *C, const comments::FullComment *) { in visitInlineCommandComment()
1732 case comments::InlineCommandRenderKind::Normal: in visitInlineCommandComment()
1735 case comments::InlineCommandRenderKind::Bold: in visitInlineCommandComment()
1738 case comments::InlineCommandRenderKind::Emphasized: in visitInlineCommandComment()
[all …]
/freebsd/sys/contrib/dev/acpica/compiler/
H A Dcvcompiler.c321 * will allow us to support comments that come after code on the in CvProcessCommentType2()
332 * Name(A,"") //comment1 //comment2 ... more comments here. in CvProcessCommentType2()
378 * PARAMETERS: Op - Calculate all comments of this Op
380 * RETURN: TotalCommentLength - Length of all comments within this op.
383 * Comments look like the following: [0xA9 OptionBtye comment 0x00]
480 * DESCRIPTION: Write all comments for a particular definition block.
481 * For definition blocks, the comments need to come after the
482 * definition block header. The regular comments above the
484 * STD_DEFBLK_COMMENT and comments after the closing brace
506 CvDbgPrint ("Printing comments for a definition block..\n"); in CgWriteAmlDefBlockComment()
[all …]
/freebsd/contrib/unbound/sldns/
H A Dparse.c65 /* this only counts for non-comments */ in sldns_fget_token_l()
74 /* this only counts for non-comments */ in sldns_fget_token_l()
88 /* do something with comments ; */ in sldns_fget_token_l()
99 /* comments */ in sldns_fget_token_l()
319 /* this only counts for non-comments */ in sldns_bget_token_par()
329 /* this only counts for non-comments */ in sldns_bget_token_par()
344 /* do something with comments ; */ in sldns_bget_token_par()
355 /* comments */ in sldns_bget_token_par()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp137 /// Emits the comments that are stored in \p DC comment stream.
142 StringRef Comments = DC->CommentsToEmit.str(); in emitComments() local
148 while (!Comments.empty()) { in emitComments()
151 // Emit a line of comments. in emitComments()
153 size_t Position = Comments.find('\n'); in emitComments()
154 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position); in emitComments()
156 Comments = Comments.substr(Position+1); in emitComments()
/freebsd/contrib/ldns/
H A Dparse.c81 /* this only counts for non-comments */ in ldns_fget_token_l_st_file_type()
90 /* this only counts for non-comments */ in ldns_fget_token_l_st_file_type()
105 /* do something with comments ; */ in ldns_fget_token_l_st_file_type()
118 /* comments */ in ldns_fget_token_l_st_file_type()
333 /* this only counts for non-comments */ in ldns_bget_token()
342 /* this only counts for non-comments */ in ldns_bget_token()
356 /* do something with comments ; */ in ldns_bget_token()
367 /* comments */ in ldns_bget_token()

12345678910>>...64