Searched full:comment (Results 1 – 25 of 119) sorted by relevance
12345
/qemu/tests/qapi-schema/ |
H A D | comments.json | 1 # Unindented comment 2 { 'enum': 'Status', # Comment to the right of code 3 # Indented comment
|
H A D | doc-invalid-end.json | 4 # An invalid comment
|
H A D | doc-invalid-end.err | 1 doc-invalid-end.json:5:2: documentation comment must end with '##'
|
H A D | doc-invalid-end2.err | 1 doc-invalid-end2.json:5:1: junk after '##' at end of documentation comment
|
H A D | doc-missing.err | 2 doc-missing.json:5: documentation comment required
|
H A D | doc-invalid-start.err | 1 doc-invalid-start.json:3:1: junk after '##' at start of documentation comment
|
H A D | doc-non-first-section.err | 1 doc-non-first-section.json:5:1: '=' heading must come first in a comment block
|
H A D | doc-bad-symbol.err | 2 doc-bad-symbol.json:6: documentation comment is for 'food'
|
H A D | doc-bad-event-arg.json | 1 # Arguments listed in the doc comment must exist in the actual schema
|
H A D | doc-bad-feature.json | 1 # Features listed in the doc comment must exist in the actual schema
|
H A D | doc-before-pragma.json | 1 # Doc comment separated from defining expression by non-defining expression
|
H A D | doc-before-include.json | 1 # Doc comment separated from defining expression by non-defining expression
|
H A D | doc-undoc-feature.json | 1 # Doc comment must cover all features
|
H A D | doc-bad-enum-member.json | 1 # Members listed in the doc comment must exist in the actual schema
|
H A D | doc-bad-command-arg.json | 1 # Arguments listed in the doc comment must exist in the actual schema
|
H A D | doc-bad-section.json | 1 # = section within an expression comment
|
H A D | doc-bad-alternate-member.json | 1 # Arguments listed in the doc comment must exist in the actual schema
|
H A D | doc-good.json | 4 # Positive QAPI doc comment tests 62 # Not a doc comment
|
H A D | doc-bad-union-member.json | 1 # Arguments listed in the doc comment must exist in the actual schema
|
/qemu/scripts/ |
H A D | python_qmp_updater.py | 16 (\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 D | introspect.py | 92 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 D | parser.py | 254 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 D | lockdown.yml | 18 pr-comment: |
|
/qemu/scripts/oss-fuzz/ |
H A D | output_reproducer.py | 44 """ 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 D | qmp_lexer.py | 27 (r'\.{3}( .* \.{3})?', token.Comment.Multiline),
|
12345