/external/clang/include/clang-c/ |
D | Documentation.h | 213 CINDEX_LINKAGE enum CXCommentKind clang_Comment_getKind(CXComment Comment); 220 CINDEX_LINKAGE unsigned clang_Comment_getNumChildren(CXComment Comment); 230 CXComment clang_Comment_getChild(CXComment Comment, unsigned ChildIdx); 241 CINDEX_LINKAGE unsigned clang_Comment_isWhitespace(CXComment Comment); 249 unsigned clang_InlineContentComment_hasTrailingNewline(CXComment Comment); 256 CINDEX_LINKAGE CXString clang_TextComment_getText(CXComment Comment); 264 CXString clang_InlineCommandComment_getCommandName(CXComment Comment); 273 clang_InlineCommandComment_getRenderKind(CXComment Comment); 281 unsigned clang_InlineCommandComment_getNumArgs(CXComment Comment); 291 CXString clang_InlineCommandComment_getArgText(CXComment Comment, [all …]
|
/external/selinux/gui/ |
D | system-config-selinux.desktop | 31 Comment=Configure SELinux in a graphical setting 32 Comment[bn_IN]=গ্রাফিক্যাল পরিবেশে SELinux কনফিগার করুন 33 Comment[ca]=Configura SELinuc an mode de preferències gràfiques 34 Comment[da]=Konfigurér SELinux i et grafisk miljø 35 Comment[de]=SELinux in einer grafischen Einstellung konfigurieren 36 Comment[es]=Defina SELinux en una configuración de interfaz gráfica 37 Comment[fi]=Tee SELinuxin asetukset graafisesti 38 Comment[fr]=Configure SELinux dans un environnement graphique 39 Comment[gu]=ગ્રાફિકલ સુયોજનમાં SELinux ને રૂપરેખાંકિત કરો 40 Comment[hi]=SELinux को आलेखी सेटिंग में विन्यस्त करें [all …]
|
D | selinux-polgengui.desktop | 31 Comment=Generate SELinux policy modules 32 Comment[bn_IN]=SELinux নিয়মনীতির মডিউল নির্মাণ করুন 33 Comment[ca]=Genera els mòduls de les polítiques de SELinux 34 Comment[da]=Generér SELinux-regelsætmodul 35 Comment[de]=Tool zur Erstellung von SELinux-Richtlinien 36 Comment[es]=Generar módulos de política de SELinux 37 Comment[fi]=Generoi SELinuxin käytäntömoduuleja 38 Comment[fr]=Génére des modules de stratégie SELinux 39 Comment[gu]=SELinux પોલિસી મોડ્યુલોને ઉત્પન્ન કરો 40 Comment[hi]=नया पॉलिसी मॉड्यूल उत्पन्न करें [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
D | ModifierVisitor.java | 26 import com.github.javaparser.ast.comments.Comment; 58 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() 75 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() 91 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() 106 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() 120 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() 131 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() 145 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() 159 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() 174 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() [all …]
|
D | CloneVisitor.java | 45 Comment comment = cloneNode(n.getComment(), arg); in visit() 56 Comment comment = cloneNode(n.getComment(), arg); in visit() 68 Comment comment = cloneNode(n.getComment(), arg); in visit() 77 Comment comment = cloneNode(n.getComment(), arg); in visit() 86 Comment comment = cloneNode(n.getComment(), arg); in visit() 101 Comment comment = cloneNode(n.getComment(), arg); in visit() 115 Comment comment = cloneNode(n.getComment(), arg); in visit() 128 Comment comment = cloneNode(n.getComment(), arg); in visit() 140 Comment comment = cloneNode(n.getComment(), arg); in visit() 153 Comment comment = cloneNode(n.getComment(), arg); in visit() [all …]
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | ByteStreamer.h | 33 virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0; 34 virtual void EmitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0; 35 virtual void EmitULEB128(uint64_t DWord, const Twine &Comment = "") = 0; 44 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument 45 AP.OutStreamer->AddComment(Comment); in EmitInt8() 48 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override { in EmitSLEB128() argument 49 AP.OutStreamer->AddComment(Comment); in EmitSLEB128() 52 void EmitULEB128(uint64_t DWord, const Twine &Comment) override { in EmitULEB128() argument 53 AP.OutStreamer->AddComment(Comment); in EmitULEB128() 63 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument [all …]
|
/external/clang/lib/AST/ |
D | RawCommentList.cpp | 25 std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment, in getCommentKind() argument 28 if ((Comment.size() < MinCommentLength) || Comment[0] != '/') in getCommentKind() 32 if (Comment[1] == '/') { in getCommentKind() 33 if (Comment.size() < 3) in getCommentKind() 36 if (Comment[2] == '/') in getCommentKind() 38 else if (Comment[2] == '!') in getCommentKind() 43 assert(Comment.size() >= 4); in getCommentKind() 47 if (Comment[1] != '*' || in getCommentKind() 48 Comment[Comment.size() - 2] != '*' || in getCommentKind() 49 Comment[Comment.size() - 1] != '/') in getCommentKind() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ |
D | CommentsInserter.java | 26 import com.github.javaparser.ast.comments.Comment; 51 private void insertComments(CompilationUnit cu, TreeSet<Comment> comments) { in insertComments() 66 Comment firstComment = comments.iterator().next(); in insertComments() 79 void insertComments(Node node, TreeSet<Comment> commentsToAttribute) { in insertComments() 99 TreeSet<Comment> commentsInsideChild = new TreeSet<>(NODE_BY_BEGIN_POSITION); in insertComments() 100 for (Comment c : commentsToAttribute) { in insertComments() 112 List<Comment> attributedComments = new LinkedList<>(); in insertComments() 113 for (Comment comment : commentsToAttribute) { in insertComments() 127 Comment previousComment = null; in insertComments() 136 if (thing instanceof Comment) { in insertComments() [all …]
|
/external/clang/include/clang/Basic/ |
D | CommentNodes.td | 1 class Comment<bit abstract = 0> { 5 class DComment<Comment base, bit abstract = 0> : Comment<abstract> { 6 Comment Base = base; 9 def InlineContentComment : Comment<1>; 16 def BlockContentComment : Comment<1>; 24 def VerbatimBlockLineComment : Comment; 26 def FullComment : Comment;
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ |
D | CommentsInserter.java | 26 import com.github.javaparser.ast.comments.Comment; 55 private void insertComments(CompilationUnit cu, TreeSet<Comment> comments) { in insertComments() 69 Comment firstComment = comments.iterator().next(); in insertComments() 82 void insertComments(Node node, TreeSet<Comment> commentsToAttribute) { in insertComments() 101 TreeSet<Comment> commentsInsideChild = new TreeSet<>(NODE_BY_BEGIN_POSITION); in insertComments() 115 Comment previousComment = null; in insertComments() 116 final List<Comment> attributedComments = new LinkedList<>(); in insertComments() 127 if (thing instanceof Comment) { in insertComments() 128 previousComment = (Comment) thing; in insertComments() 147 for (Comment c : commentsToAttribute) { in insertComments() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/ |
D | com_github_javaparser_ast_visitor_CloneVisitor.txt | 16 …Line 76) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comment… 17 Line 76) cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comments.Comment 24 …Line 89) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comment… 25 Line 89) cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comments.Comment 36 …Line 108) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.commen… 37 Line 108) cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comments.Comment 54 …Line 131) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.commen… 55 Line 131) cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comments.Comment 70 …Line 148) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.commen… 71 Line 148) cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comments.Comment [all …]
|
D | com_github_javaparser_JavaParser.txt | 75 …Line 312) List<Comment> comments = commentsCollection.getAll() ==> java.util.List<com.github.javap… 76 …ine 312) commentsCollection.getAll() ==> java.util.List<com.github.javaparser.ast.comments.Comment> 83 Line 319) comments.remove(0) ==> com.github.javaparser.ast.comments.Comment 104 …Line 369) List<Comment> commentsInsideChild = new LinkedList<Comment>() ==> java.util.List<com.git… 105 …Line 369) new LinkedList<Comment>() ==> java.util.LinkedList<com.github.javaparser.ast.comments.Co… 106 Line 370) Comment c ==> com.github.javaparser.ast.comments.Comment 107 Line 370) commentsToAttribute ==> java.util.List<com.github.javaparser.ast.comments.Comment> 112 …Line 381) List<Comment> attributedComments = new LinkedList<Comment>() ==> java.util.List<com.gith… 113 …Line 381) new LinkedList<Comment>() ==> java.util.LinkedList<com.github.javaparser.ast.comments.Co… 114 Line 382) Comment comment ==> com.github.javaparser.ast.comments.Comment [all …]
|
D | com_github_javaparser_ast_comments_CommentsCollection.txt | 13 Line 60) Comment c ==> com.github.javaparser.ast.comments.Comment 14 Line 60) getAll() ==> java.util.List<com.github.javaparser.ast.comments.Comment> 18 …Line 74) List<Comment> comments = new LinkedList<Comment>() ==> java.util.List<com.github.javapars… 19 …Line 74) new LinkedList<Comment>() ==> java.util.LinkedList<com.github.javaparser.ast.comments.Com… 23 Line 78) comments ==> java.util.List<com.github.javaparser.ast.comments.Comment>
|
D | com_github_javaparser_ast_Node.txt | 6 …Line 53) new LinkedList<Comment>() ==> java.util.LinkedList<com.github.javaparser.ast.comments.Com… 13 Line 123) comment ==> com.github.javaparser.ast.comments.Comment 19 Line 179) comment != null && (this instanceof Comment) ==> boolean 23 Line 186) this.comment = comment ==> com.github.javaparser.ast.comments.Comment 55 Line 290) orphanComments ==> java.util.List<com.github.javaparser.ast.comments.Comment> 56 …Line 300) List<Comment> comments = new LinkedList<Comment>() ==> java.util.List<com.github.javapar… 57 …Line 300) new LinkedList<Comment>() ==> java.util.LinkedList<com.github.javaparser.ast.comments.Co… 64 Line 310) comments ==> java.util.List<com.github.javaparser.ast.comments.Comment>
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/ |
D | Node.java | 28 import com.github.javaparser.ast.comments.Comment; 53 private List<Comment> orphanComments = new LinkedList<Comment>(); 60 private Comment comment; 122 public final Comment getComment() { in getComment() 178 public final void setComment(final Comment comment) { in setComment() 179 if (comment != null && (this instanceof Comment)) { in setComment() 273 public void addOrphanComment(Comment comment) { in addOrphanComment() 289 public List<Comment> getOrphanComments() { in getOrphanComments() 299 public List<Comment> getAllContainedComments() { in getAllContainedComments() 300 List<Comment> comments = new LinkedList<Comment>(); in getAllContainedComments()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/ |
D | CloneVisitor.java | 46 import com.github.javaparser.ast.comments.Comment; 128 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 141 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 159 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 181 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 197 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 209 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 223 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 237 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 252 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/ |
D | CloneVisitor.java | 29 import com.github.javaparser.ast.comments.Comment; 76 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 89 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 108 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 131 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 148 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 161 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 176 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 191 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() 207 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/comments/ |
D | Comment.java | 35 public abstract class Comment extends Node { class 40 public Comment() { in Comment() method in Comment 43 public Comment(String content) { in Comment() method in Comment 47 public Comment(Range range, String content) { in Comment() method in Comment 67 public Comment setContent(String content) { in setContent() 90 public Comment setCommentedNode(Node commentedNode) in setCommentedNode() 99 if (commentedNode instanceof Comment) { in setCommentedNode()
|
/external/clang/tools/libclang/ |
D | CXComment.cpp | 46 const Comment *C = getASTNode(CXC); in clang_Comment_getKind() 51 case Comment::NoCommentKind: in clang_Comment_getKind() 54 case Comment::TextCommentKind: in clang_Comment_getKind() 57 case Comment::InlineCommandCommentKind: in clang_Comment_getKind() 60 case Comment::HTMLStartTagCommentKind: in clang_Comment_getKind() 63 case Comment::HTMLEndTagCommentKind: in clang_Comment_getKind() 66 case Comment::ParagraphCommentKind: in clang_Comment_getKind() 69 case Comment::BlockCommandCommentKind: in clang_Comment_getKind() 72 case Comment::ParamCommandCommentKind: in clang_Comment_getKind() 75 case Comment::TParamCommandCommentKind: in clang_Comment_getKind() [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/comments/ |
D | Comment.java | 45 public abstract class Comment extends Node { class 53 public Comment(String content) { in Comment() method in Comment 61 public Comment(TokenRange tokenRange, String content) { in Comment() method in Comment 83 public Comment setContent(final String content) { in setContent() 86 return (Comment) this; in setContent() 113 public Comment setCommentedNode(Node commentedNode) { in setCommentedNode() 122 if (commentedNode instanceof Comment) { in setCommentedNode() 156 public Comment clone() { in clone() 157 return (Comment) accept(new CloneVisitor(), null); in clone()
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/ |
D | CommentParsingSteps.java | 116 private <T extends Comment> T getCommentAt(Set<T> set, int index) { in getCommentAt() 151 Comment expectedLineComment = toComment(exampleRow, new LineComment()); in thenTheLineCommentsHaveTheFollowingPositions() 152 … Comment lineCommentUnderTest = getCommentAt(commentsCollection.getLineComments(), index); in thenTheLineCommentsHaveTheFollowingPositions() 169 Comment expectedLineComment = toComment(exampleRow, new BlockComment()); in thenTheBlockCommentsHaveTheFollowingPositions() 170 … Comment lineCommentUnderTest = getCommentAt(commentsCollection.getBlockComments(), index); in thenTheBlockCommentsHaveTheFollowingPositions() 187 Comment expectedLineComment = toComment(exampleRow, new BlockComment()); in thenTheJavadocCommentsHaveTheFollowingPositions() 188 … Comment lineCommentUnderTest = getCommentAt(commentsCollection.getJavadocComments(), index); in thenTheJavadocCommentsHaveTheFollowingPositions() 228 Comment commentUnderTest = compilationUnit.getOrphanComments().get(position - 1); in thenTheCompilationUnitOrphanCommentIs() 234 … Comment commentUnderTest = compilationUnit.getAllContainedComments().get(commentPosition - 1); in thenCommentInCompilationUnitIsNotAnOrphan() 240 … Comment commentUnderTest = compilationUnit.getAllContainedComments().get(commentPosition - 1); in thenCommentInCompilationUnitIsAnOrphan() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ |
D | JavaParser.java | 33 import com.github.javaparser.ast.comments.Comment; 312 List<Comment> comments = commentsCollection.getAll(); in insertCommentsInCu() 357 private static void insertCommentsInNode(Node node, List<Comment> commentsToAttribute){ in insertCommentsInNode() 369 List<Comment> commentsInsideChild = new LinkedList<Comment>(); in insertCommentsInNode() 370 for (Comment c : commentsToAttribute){ in insertCommentsInNode() 381 List<Comment> attributedComments = new LinkedList<Comment>(); in insertCommentsInNode() 382 for (Comment comment : commentsToAttribute) in insertCommentsInNode() 400 Comment previousComment = null; in insertCommentsInNode() 401 attributedComments = new LinkedList<Comment>(); in insertCommentsInNode() 408 if (thing instanceof Comment){ in insertCommentsInNode() [all …]
|
/external/clang/include/clang/AST/ |
D | Comment.h | 53 class Comment { 62 friend class Comment; variable 197 Comment(CommentKind K, in Comment() function 228 typedef Comment * const *child_iterator; 242 class InlineContentComment : public Comment { 247 Comment(K, LocBegin, LocEnd) { in InlineContentComment() 252 static bool classof(const Comment *C) { in classof() 279 static bool classof(const Comment *C) { in classof() 337 static bool classof(const Comment *C) { in classof() 396 static bool classof(const Comment *C) { in classof() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/ |
D | LocalVariableInParent.java.txt | 6 class Comment { 41 List<Comment> commentsInsideChild = new LinkedList<Comment>(); 42 for (Comment c : commentsToAttribute){ 51 List<Comment> commentsInsideChild; 52 Comment c;
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/ |
D | Node.java | 27 import com.github.javaparser.ast.comments.Comment; 53 private List<Comment> orphanComments = new LinkedList<>(); 57 private Comment comment; 99 public final Comment getComment() { in getComment() 153 public final Node setComment(final Comment comment) { in setComment() 154 if (comment != null && (this instanceof Comment)) { in setComment() 246 public void addOrphanComment(Comment comment) { in addOrphanComment() 263 public List<Comment> getOrphanComments() { in getOrphanComments() 274 public List<Comment> getAllContainedComments() { in getAllContainedComments() 275 List<Comment> comments = new LinkedList<>(); in getAllContainedComments()
|