/external/libxml2/result/ |
D | comment6.xml.rde | 1 0 8 #comment 0 1 2 long comment long comment long comment long comment long comment long comment 3 long comment long comment long comment long comment long comment long comment 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment
|
D | comment6.xml.rdr | 1 0 8 #comment 0 1 2 long comment long comment long comment long comment long comment long comment 3 long comment long comment long comment long comment long comment long comment 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment
|
D | comment6.xml | 3 long comment long comment long comment long comment long comment long comment 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment 9 long comment long comment long comment long comment long comment long comment
|
D | comment6.xml.sax | 3 SAX.comment( 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment 9 long comment long comment long comment long comment long comment long comment 10 long comment long comment long comment long comment long comment long comment
|
D | comment6.xml.sax2 | 3 SAX.comment( 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment 9 long comment long comment long comment long comment long comment long comment 10 long comment long comment long comment long comment long comment long comment
|
/external/syslinux/mime/image/ |
D | x-lss16.xml | 4 <comment>LSS16 image</comment> 5 <comment xml:lang="be@latin">Vyjava LSS16</comment> 6 <comment xml:lang="bg">Изображение — LSS16</comment> 7 <comment xml:lang="ca">imatge LSS16</comment> 8 <comment xml:lang="cs">Obrázek LSS16</comment> 9 <comment xml:lang="de">LSS16-Bild</comment> 10 <comment xml:lang="en_GB">LSS16 image</comment> 11 <comment xml:lang="es">imagen LSS16</comment> 12 <comment xml:lang="eu">LSS16 irudia</comment> 13 <comment xml:lang="fi">LSS16-kuva</comment> [all …]
|
/external/libxml2/test/ |
D | comment6.xml | 2 long comment long comment long comment long comment long comment long comment 3 long comment long comment long comment long comment long comment long comment 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment
|
/external/libxml2/result/noent/ |
D | comment6.xml | 3 long comment long comment long comment long comment long comment long comment 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment 9 long comment long comment long comment long comment long comment long comment
|
D | comment6.xml.sax2 | 3 SAX.comment( 4 long comment long comment long comment long comment long comment long comment 5 long comment long comment long comment long comment long comment long comment 6 long comment long comment long comment long comment long comment long comment 7 long comment long comment long comment long comment long comment long comment 8 long comment long comment long comment long comment long comment long comment 9 long comment long comment long comment long comment long comment long comment 10 long comment long comment long comment long comment long comment long comment
|
/external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/bdd/ |
D | comment_parsing_scenarios.story | 9 // first comment 10 int a=0; // second comment 11 // third comment 12 // fourth comment 15 When the class is parsed by the comment parser 17 Then line comment 1 is " first comment" 18 Then line comment 2 is " second comment" 19 Then line comment 3 is " third comment" 20 Then line comment 4 is " fourth comment" 33 /* comment which is not attributed to the class, it floats around as an orphan */ [all …]
|
D | comment_attribution_scenarios.story | 9 // first comment 10 int a=0; // second comment 11 // third comment 12 // fourth comment 33 //a first comment floating in the class 35 //comment associated to the method 37 /*comment floating inside the method*/ 40 //a second comment floating in the class 43 //Orphan comment inside the CompilationUnit 47 Then the compilation unit orphan comment 1 is "Orphan comment inside the CompilationUnit" [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() local 64 n.setComment(comment); in visit() 75 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() local 82 n.setComment(comment); in visit() 91 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() local 96 n.setComment(comment); in visit() 106 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() local 112 n.setComment(comment); in visit() 120 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit() local [all …]
|
D | CloneVisitor.java | 45 Comment comment = cloneNode(n.getComment(), arg); in visit() local 47 r.setComment(comment); in visit() 56 Comment comment = cloneNode(n.getComment(), arg); in visit() local 58 r.setComment(comment); in visit() 68 Comment comment = cloneNode(n.getComment(), arg); in visit() local 70 r.setComment(comment); in visit() 77 Comment comment = cloneNode(n.getComment(), arg); in visit() local 79 r.setComment(comment); in visit() 86 Comment comment = cloneNode(n.getComment(), arg); in visit() local 88 r.setComment(comment); in visit() [all …]
|
/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() local 134 r.setComment(comment); in visit() 141 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() local 147 r.setComment(comment); in visit() 159 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() local 160 r.setComment(comment); in visit() 181 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() local 187 r.setComment(comment); in visit() 197 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() local [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() local 82 r.setComment(comment); in visit() 89 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() local 95 r.setComment(comment); in visit() 108 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() local 109 r.setComment(comment); in visit() 131 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() local 137 r.setComment(comment); in visit() 148 Comment comment = cloneNodes(_n.getComment(), _arg); in visit() local [all …]
|
/external/clang/test/Preprocessor/ |
D | pragma_ps4.c | 4 // #pragma comment lib 6 #pragma comment(lib) 7 #pragma comment(lib,"foo") 8 __pragma(comment(lib, "bar")) 10 #pragma comment(linker) // expected-warning {{'#pragma comment linker' ignored}} 11 #pragma comment(linker,"foo") // expected-warning {{'#pragma comment linker' ignored}} 12 __pragma(comment(linker, " bar=" "2")) // expected-warning {{'#pragma comment linker' ignored}} 14 #pragma comment(user) // expected-warning {{'#pragma comment user' ignored}} 15 #pragma comment(user, "Compiled on " __DATE__ " at " __TIME__ ) // expected-warning {{'#pragma comm… 16 __pragma(comment(user, "foo")) // expected-warning {{'#pragma comment user' ignored}} [all …]
|
/external/clang/include/clang-c/ |
D | Documentation.h | 1 /*==-- clang-c/Documentation.h - Utilities for comment processing -*- C -*-===*\ 25 * \defgroup CINDEX_COMMENT Comment introspection 35 * \brief A parsed comment. 44 * declaration), return the associated parsed comment as a 50 * \brief Describes the type of the comment AST node (\c CXComment). A comment 56 * \brief Null comment. No AST node is constructed at the requested location 95 * \brief A paragraph, contains inline comment. The paragraph itself is 156 * \brief A full comment attached to a declaration, contains block content. 209 * \param Comment AST node of any kind. 213 CINDEX_LINKAGE enum CXCommentKind clang_Comment_getKind(CXComment Comment); [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_methodcalls_expected_output/ |
D | com_github_javaparser_ast_comments_CommentsCollection.txt | 2 …Line 45) comments.stream().filter(comment -> comment instanceof LineComment).map(comment -> (LineC… 3 …Line 45) comments.stream().filter(comment -> comment instanceof LineComment).map(comment -> (LineC… 4 …Line 45) comments.stream().filter(comment -> comment instanceof LineComment) ==> java.util.stream.… 7 …Line 52) comments.stream().filter(comment -> comment instanceof BlockComment).map(comment -> (Bloc… 8 …Line 52) comments.stream().filter(comment -> comment instanceof BlockComment).map(comment -> (Bloc… 9 …Line 52) comments.stream().filter(comment -> comment instanceof BlockComment) ==> java.util.stream… 12 …Line 59) comments.stream().filter(comment -> comment instanceof JavadocComment).map(comment -> (Ja… 13 …Line 59) comments.stream().filter(comment -> comment instanceof JavadocComment).map(comment -> (Ja… 14 …Line 59) comments.stream().filter(comment -> comment instanceof JavadocComment) ==> java.util.stre… 17 Line 66) comments.add(comment) ==> java.util.TreeSet.add(E) [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-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 20 Line 82) r.setComment(comment) ==> void 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 28 Line 95) r.setComment(comment) ==> void 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 38 Line 109) r.setComment(comment) ==> void 54 …Line 131) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.commen… [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/comments/ |
D | CommentsCollection.java | 35 private final TreeSet<Comment> comments = new TreeSet<>(NODE_BY_BEGIN_POSITION); 40 public CommentsCollection(Collection<Comment> commentsToCopy) { in CommentsCollection() 46 .filter(comment -> comment instanceof LineComment) in getLineComments() 47 .map(comment -> (LineComment) comment) in getLineComments() 53 .filter(comment -> comment instanceof BlockComment) in getBlockComments() 54 .map(comment -> (BlockComment) comment) in getBlockComments() 60 .filter(comment -> comment instanceof JavadocComment) in getJavadocComments() 61 .map(comment -> (JavadocComment) comment) in getJavadocComments() 65 public void addComment(Comment comment) { in addComment() argument 66 comments.add(comment); in addComment() [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/comments/ |
D | CommentsCollection.java | 37 private final TreeSet<Comment> comments = new TreeSet<>(NODE_BY_BEGIN_POSITION); 42 public CommentsCollection(Collection<Comment> commentsToCopy) { in CommentsCollection() 48 .filter(comment -> comment instanceof LineComment) in getLineComments() 49 .map(comment -> (LineComment) comment) in getLineComments() 55 .filter(comment -> comment instanceof BlockComment) in getBlockComments() 56 .map(comment -> (BlockComment) comment) in getBlockComments() 62 .filter(comment -> comment instanceof JavadocComment) in getJavadocComments() 63 .map(comment -> (JavadocComment) comment) in getJavadocComments() 67 public void addComment(Comment comment) { in addComment() argument 68 comments.add(comment); in addComment() [all …]
|
/external/iptables/extensions/ |
D | libxt_comment.c | 1 /* Shared library add-on to iptables to add comment match support. 5 * Initial comment match 20 "comment match options:\n" in comment_help() 21 "--comment COMMENT Attach a comment to a rule\n"); in comment_help() 25 {.name = "comment", .id = O_COMMENT, .type = XTTYPE_STRING, 27 XTOPT_POINTER(struct xt_comment_info, comment)}, 36 commentinfo->comment[XT_MAX_COMMENT_LEN-1] = '\0'; in comment_print() 37 printf(" /* %s */", commentinfo->comment); in comment_print() 46 commentinfo->comment[XT_MAX_COMMENT_LEN-1] = '\0'; in comment_save() 47 printf(" --comment"); in comment_save() [all …]
|
/external/clang/test/Index/ |
D | comment-xml-schema.c | 3 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 5 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 6 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 7 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 8 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 9 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 10 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 11 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 12 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 13 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… [all …]
|