HomeSort by relevance Sort by last modified time
    Searched refs:comments (Results 26 - 50 of 1165) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/comments/
CommentsCollection.java 22 package com.github.javaparser.ast.comments;
34 * The comments contained in a certain parsed piece of source code.
37 private final TreeSet<Comment> comments = new TreeSet<>(NODE_BY_BEGIN_POSITION); field in class:CommentsCollection
43 comments.addAll(commentsToCopy);
47 return comments.stream()
54 return comments.stream()
61 return comments.stream()
68 comments.add(comment);
93 return comments;
97 return comments.size()
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/metamodel/
BlockCommentMetaModel.java 8 super(superBaseNodeMetaModel, com.github.javaparser.ast.comments.BlockComment.class, "BlockComment", "com.github.javaparser.ast.comments", false, false);
JavadocCommentMetaModel.java 8 super(superBaseNodeMetaModel, com.github.javaparser.ast.comments.JavadocComment.class, "JavadocComment", "com.github.javaparser.ast.comments", false, false);
LineCommentMetaModel.java 8 super(superBaseNodeMetaModel, com.github.javaparser.ast.comments.LineComment.class, "LineComment", "com.github.javaparser.ast.comments", false, false);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/
DocumentableNode.java 24 import com.github.javaparser.ast.comments.JavadocComment;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/all/
comment.s 1 # This test file is to see whether comments get written into listings
3 /* C comments too! */
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_doc_comment.cc 44 // Functions to create C# XML documentation comments.
45 // Currently this only includes documentation comments containing text specified as comments
46 // in the .proto file; documentation comments generated just from field/message/enum/proto names
50 string comments = location.leading_comments.empty() ? local
52 if (comments.empty()) {
57 comments = StringReplace(comments, "&", "&amp;", true);
58 comments = StringReplace(comments, "<", "&lt;", true)
    [all...]
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
CastInsertion.java 58 protected String getText(boolean comments, boolean abbreviate) {
60 ? "((new " + typeToString(type, comments, abbreviate) + " "
61 : "((" + typeToString(type, comments, abbreviate) + ") (";
CloseParenthesisInsertion.java 17 protected String getText(boolean comments, boolean abbreviate) {
ReceiverInsertion.java 75 protected String getText(boolean comments, boolean abbreviate) {
85 getSeparateLine()).getText(comments, abbreviate);
88 boolean commentAnnotation = (comments && baseType.getName().isEmpty());
102 if (comments) {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/comments/
CommentsCollection.java 22 package com.github.javaparser.ast.comments;
28 * Set of comments produced by CommentsParser.
74 List<Comment> comments = new LinkedList<Comment>(); local
75 comments.addAll(lineComments);
76 comments.addAll(blockComments);
77 comments.addAll(javadocComments);
78 return comments;
  /external/llvm/utils/vim/ftplugin/
llvm.vim 12 setlocal comments+=:;
  /prebuilts/go/darwin-x86/src/runtime/
fastlog2table.go 3 // See mkfastlog2table.go for comments.
  /prebuilts/go/linux-x86/src/runtime/
fastlog2table.go 3 // See mkfastlog2table.go for comments.
  /external/clang/include/clang/AST/
CommentBriefParser.h 21 namespace comments { namespace in namespace:clang
51 } // end namespace comments
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmComment.java 25 import com.github.javaparser.ast.comments.BlockComment;
26 import com.github.javaparser.ast.comments.Comment;
27 import com.github.javaparser.ast.comments.JavadocComment;
28 import com.github.javaparser.ast.comments.LineComment;
  /external/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/
GeneratedJavaParserTokenManagerBase.java 3 import com.github.javaparser.ast.comments.BlockComment;
4 import com.github.javaparser.ast.comments.Comment;
5 import com.github.javaparser.ast.comments.JavadocComment;
6 import com.github.javaparser.ast.comments.LineComment;
24 * Since comments are completely captured in a single token, including their delimiters, deconstruct them here so we
34 // line comments have their end of line character(s) included, and we don't want that.
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/nodeTypes/
NodeWithJavaDoc.java 25 import com.github.javaparser.ast.comments.JavadocComment;
  /external/llvm/test/MC/ARM/
preserve-comments-arm.s 1 @RUN: llvm-mc -preserve-comments -n -triple arm-eabi < %s > %t
  /external/llvm/test/MC/AsmParser/
preserve-comments.s 1 #RUN: llvm-mc -preserve-comments -n -triple i386-linux-gnu < %s > %t
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Invoice.java 28 public String comments; field in class:Invoice
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
CommentBriefParser.h 21 namespace comments { namespace in namespace:clang
51 } // end namespace comments
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
CommentBriefParser.h 21 namespace comments { namespace in namespace:clang
51 } // end namespace comments
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
CommentBriefParser.h 21 namespace comments { namespace in namespace:clang
51 } // end namespace comments
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
CommentBriefParser.h 21 namespace comments { namespace in namespace:clang
51 } // end namespace comments

Completed in 1041 milliseconds

12 3 4 5 6 7 8 91011>>