Home
last modified time | relevance | path

Searched refs:CodeComment (Results 1 – 25 of 105) sorted by relevance

12345

/dports/devel/umbrello/umbrello-21.12.3/umbrello/codegenerators/
H A Dcodecomment.cpp12 CodeComment::CodeComment(CodeDocument * doc, const QString & comment) in CodeComment() function in CodeComment
20 CodeComment::~CodeComment() in ~CodeComment()
27 void CodeComment::saveToXMI1(QXmlStreamWriter& writer) in saveToXMI1()
38 void CodeComment::loadFromXMI1(QDomElement & root) in loadFromXMI1()
H A Dcodecomment.h19 class CodeComment : public TextBlock
23 explicit CodeComment(CodeDocument * doc, const QString & comment = QString());
24 virtual ~CodeComment();
H A Dcodeblockwithcomments.h30 void setComment (CodeComment * object);
32 CodeComment * getComment () const;
52 CodeComment * m_comment;
H A Dcodedocument.h19 class CodeComment; variable
55 void setHeader (CodeComment * comment);
56 CodeComment * getHeader () const;
113 CodeComment * m_header;
H A Dcodeblockwithcomments.cpp25 CodeComment * codecomment = CodeGenFactory::newCodeComment(parent); in CodeBlockWithComments()
38 void CodeBlockWithComments::setComment (CodeComment * object) in setComment()
46 CodeComment * CodeBlockWithComments::getComment () const in getComment()
144 CodeComment* codeComment = getComment(); in toString()
H A Dcodeparameter.h47 void setComment(CodeComment* comment);
48 CodeComment* getComment();
64 CodeComment* m_comment;
H A Dcodegenobjectwithtextblocks.h19 class CodeComment; variable
51CodeComment * addOrUpdateTaggedCodeComment(const QString &tag = QString(), const QString &text = Q…
H A Dcodegenobjectwithtextblocks.cpp239 CodeComment * CodeGenObjectWithTextBlocks::addOrUpdateTaggedCodeComment (const QString &tag, const … in addOrUpdateTaggedCodeComment()
242 CodeComment * codeComment = dynamic_cast<CodeComment*>(tBlock); in addOrUpdateTaggedCodeComment()
413 CodeComment * block = CodeGenFactory::newCodeComment(m_pCodeDoc); in loadChildTextBlocksFromNode()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeObjects/
H A DCodeCommentTests.cs10 public class CodeCommentTests : CodeObjectTestBase<CodeComment>
15 var comment = new CodeComment(); in Ctor_Default()
24 var comment = new CodeComment(text); in Ctor_String()
40 var comment = new CodeComment(text, docComment); in Ctor_String_Bool()
49 var comment = new CodeComment(); in Text_Set_Get_ReturnsExpected()
59 var comment = new CodeComment(); in DocComment_Set_Get_ReturnsExpected()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/
H A DCodeCommentStatement.cs26 private CodeComment comment;
39 public CodeCommentStatement(CodeComment comment) { in CodeCommentStatement()
50 comment = new CodeComment(text); in CodeCommentStatement()
57 comment = new CodeComment(text, docComment); in CodeCommentStatement()
63 public CodeComment Comment {
H A DCodeComment.cs25 public class CodeComment : CodeObject { class
34 public CodeComment() { in CodeComment() method in System.CodeDom.CodeComment
43 public CodeComment(string text) { in CodeComment() method in System.CodeDom.CodeComment
50 public CodeComment(string text, bool docComment) { in CodeComment() method in System.CodeDom.CodeComment
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/
H A DCodeComment.cs8 public class CodeComment : CodeObject class
12 public CodeComment() { } in CodeComment() method in System.CodeDom.CodeComment
14 public CodeComment(string text) in CodeComment() method in System.CodeDom.CodeComment
19 public CodeComment(string text, bool docComment) in CodeComment() method in System.CodeDom.CodeComment
H A DCodeCommentStatement.cs12 public CodeCommentStatement(CodeComment comment) in CodeCommentStatement()
19 Comment = new CodeComment(text); in CodeCommentStatement()
24 Comment = new CodeComment(text, docComment); in CodeCommentStatement()
27 public CodeComment Comment { get; set; }
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeStatements/
H A DCodeCommentStatementTests.cs49 CodeComment codeComment = new CodeComment(text, docComment); in Ctor_CodeComment()
57 CodeCommentStatement comment = new CodeCommentStatement((CodeComment)null); in Ctor_CodeComment_Null()
65 CodeComment codeComment = new CodeComment(text, docComment); in Comment_Set_Get_ReturnsExpected()
/dports/devel/umbrello/umbrello-21.12.3/umbrello/codegenerators/ruby/
H A Drubyclassifiercodedocument.cpp181 CodeComment * block = new RubyCodeComment(this); in loadChildTextBlocksFromNode()
437 CodeComment * pubMethodsComment = pubMethodsBlock->getComment(); in updateContent()
447 CodeComment * protMethodsComment = protMethodsBlock->getComment(); in updateContent()
456 CodeComment * privMethodsComment = privMethodsBlock->getComment(); in updateContent()
470 CodeComment * pubConstComment = pubConstructorBlock->getComment(); in updateContent()
500 CodeComment * pubAccessComment = pubAccessorBlock->getComment(); in updateContent()
509 CodeComment * protAccessComment = protAccessorBlock->getComment(); in updateContent()
518 CodeComment * privAccessComment = privAccessorBlock->getComment(); in updateContent()
571 CodeComment * pubOcomment = pubOperationsBlock->getComment(); in updateContent()
580 CodeComment * protOcomment = protOperationsBlock->getComment(); in updateContent()
[all …]
/dports/devel/umbrello/umbrello-21.12.3/umbrello/codegenerators/cpp/
H A Dcppheadercodedocument.cpp100 CodeComment * block = new CPPCodeDocumentation(this); in loadChildTextBlocksFromNode()
547 CodeComment * pubFcomment = publicFieldDeclBlock->getComment(); in updateContent()
563 CodeComment * privFcomment = privateFieldDeclBlock->getComment(); in updateContent()
602 CodeComment * pubMethodsComment = pubMethodsBlock->getComment(); in updateContent()
611 CodeComment * protMethodsComment = protMethodsBlock->getComment(); in updateContent()
620 CodeComment * privMethodsComment = privMethodsBlock->getComment(); in updateContent()
693 CodeComment * pubAccessComment = pubAccessorBlock->getComment(); in updateContent()
702 CodeComment * protAccessComment = protAccessorBlock->getComment(); in updateContent()
783 CodeComment * pubOcomment = m_pubOperationsBlock->getComment(); in updateContent()
792 CodeComment * protOcomment = m_protOperationsBlock->getComment(); in updateContent()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/codegen/
H A Dassembler.h339 class CodeComment {
341 explicit CodeComment(Assembler* assembler, const std::string& comment) in CodeComment() function
345 ~CodeComment() { in ~CodeComment()
357 class CodeComment {
358 explicit CodeComment(Assembler* assembler, std::string comment) {} in CodeComment() function
499 AssemblerBase::CodeComment asm_code_comment(asm, comment)
/dports/devel/umbrello/umbrello-21.12.3/umbrello/codegenerators/d/
H A Ddclassifiercodedocument.cpp149 CodeComment * block = new DCodeComment(this); in loadChildTextBlocksFromNode()
435 CodeComment * fcomment = fieldDeclBlock->getComment(); in updateContent()
456 CodeComment * methodsComment = methodsBlock->getComment(); in updateContent()
472 CodeComment * constComment = constBlock->getComment(); in updateContent()
498 CodeComment * accessComment = accessorBlock->getComment(); in updateContent()
525 CodeComment * ocomment = operationsBlock->getComment(); in updateContent()
/dports/devel/umbrello/umbrello-21.12.3/umbrello/codegenerators/java/
H A Djavaclassifiercodedocument.cpp144 CodeComment * block = new JavaCodeComment(this); in loadChildTextBlocksFromNode()
426 CodeComment * fcomment = fieldDeclBlock->getComment(); in updateContent()
447 CodeComment * methodsComment = methodsBlock->getComment(); in updateContent()
463 CodeComment * constComment = constBlock->getComment(); in updateContent()
489 CodeComment * accessComment = accessorBlock->getComment(); in updateContent()
516 CodeComment * ocomment = operationsBlock->getComment(); in updateContent()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom/
H A DCodeCommentStatementCas.cs63 CodeComment cc = new CodeComment ("mono"); in Constructor1_Deny_Unrestricted()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/
H A DCompilationResult.java95 public static final class CodeComment extends CodeAnnotation { class in CompilationResult
99 public CodeComment(int position, String comment) { in CodeComment() method in CompilationResult.CodeComment
109 if (obj instanceof CodeComment) { in equals()
110 CodeComment that = (CodeComment) obj; in equals()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/
H A DCompilationResult.java95 public static final class CodeComment extends CodeAnnotation { class in CompilationResult
99 public CodeComment(int position, String comment) { in CodeComment() method in CompilationResult.CodeComment
109 if (obj instanceof CodeComment) { in equals()
110 CodeComment that = (CodeComment) obj; in equals()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/
H A DCompilationResult.java95 public static final class CodeComment extends CodeAnnotation { class in CompilationResult
99 public CodeComment(int position, String comment) { in CodeComment() method in CompilationResult.CodeComment
109 if (obj instanceof CodeComment) { in equals()
110 CodeComment that = (CodeComment) obj; in equals()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/
H A DCompilationResult.java96 public static final class CodeComment extends CodeAnnotation { class in CompilationResult
100 public CodeComment(int position, String comment) { in CodeComment() method in CompilationResult.CodeComment
110 if (obj instanceof CodeComment) { in equals()
111 CodeComment that = (CodeComment) obj; in equals()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/
H A DCompilationResult.java96 public static final class CodeComment extends CodeAnnotation { class in CompilationResult
100 public CodeComment(int position, String comment) { in CodeComment() method in CompilationResult.CodeComment
110 if (obj instanceof CodeComment) { in equals()
111 CodeComment that = (CodeComment) obj; in equals()

12345