Home
last modified time | relevance | path

Searched full:comment (Results 1 – 25 of 119) sorted by relevance

12345

/qemu/tests/qapi-schema/
H A Dcomments.json1 # Unindented comment
2 { 'enum': 'Status', # Comment to the right of code
3 # Indented comment
H A Ddoc-invalid-end.json4 # An invalid comment
H A Ddoc-invalid-end.err1 doc-invalid-end.json:5:2: documentation comment must end with '##'
H A Ddoc-invalid-end2.err1 doc-invalid-end2.json:5:1: junk after '##' at end of documentation comment
H A Ddoc-missing.err2 doc-missing.json:5: documentation comment required
H A Ddoc-invalid-start.err1 doc-invalid-start.json:3:1: junk after '##' at start of documentation comment
H A Ddoc-non-first-section.err1 doc-non-first-section.json:5:1: '=' heading must come first in a comment block
H A Ddoc-bad-symbol.err2 doc-bad-symbol.json:6: documentation comment is for 'food'
H A Ddoc-bad-event-arg.json1 # Arguments listed in the doc comment must exist in the actual schema
H A Ddoc-bad-feature.json1 # Features listed in the doc comment must exist in the actual schema
H A Ddoc-before-pragma.json1 # Doc comment separated from defining expression by non-defining expression
H A Ddoc-before-include.json1 # Doc comment separated from defining expression by non-defining expression
H A Ddoc-undoc-feature.json1 # Doc comment must cover all features
H A Ddoc-bad-enum-member.json1 # Members listed in the doc comment must exist in the actual schema
H A Ddoc-bad-command-arg.json1 # Arguments listed in the doc comment must exist in the actual schema
H A Ddoc-bad-section.json1 # = section within an expression comment
H A Ddoc-bad-alternate-member.json1 # Arguments listed in the doc comment must exist in the actual schema
H A Ddoc-good.json4 # Positive QAPI doc comment tests
62 # Not a doc comment
H A Ddoc-bad-union-member.json1 # Arguments listed in the doc comment must exist in the actual schema
/qemu/scripts/
H A Dpython_qmp_updater.py16 (\n*{padding}(?P<comment>\#.*$))?
29 (\n*{padding}(?P<comment>\#.*$))?
94 if m.group('comment'):
95 result += f'{padding}{m.group("comment")}\n'
/qemu/scripts/qapi/
H A Dintrospect.py92 comment: Optional[str] = None variable in Annotated
119 if obj.comment:
120 ret += indent(level) + f"/* {obj.comment} */\n"
268 comment: Optional[str] = None
271 # Output a comment to make it easy to map masked names
273 comment = f'"{self._name(name)}" = {name}'
279 self._trees.append(Annotated(obj, ifcond, comment))
H A Dparser.py254 When false, return COMMENT tokens ("#").
273 * COMMENT:
302 # Start of doc comment
421 self, "documentation comment must end with '##'")
424 # End of doc comment
427 self, "junk after '##' at end of documentation comment")
484 self, "junk after '##' at start of documentation comment")
611 "'=' heading must come first in a comment block")
624 A documentation comment block, either definition or free-form
692 # info points to the doc comment block's first line
/qemu/.github/workflows/
H A Dlockdown.yml18 pr-comment: |
/qemu/scripts/oss-fuzz/
H A Doutput_reproducer.py44 """ Return a multi-line C comment. Assume the text is already wrapped """
122 as a comment in the C reproducers",
/qemu/docs/sphinx/
H A Dqmp_lexer.py27 (r'\.{3}( .* \.{3})?', token.Comment.Multiline),

12345