/external/libxml2/result/ |
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.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 | 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/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/python/google-api-python-client/docs/dyn/ |
D | youtube_v3.commentThreads.html | 79 <p class="firstline">Creates a new top-level comment. To add a reply to an existing comment, use th… 82 <p class="firstline">Returns a list of comment threads that match the API request parameters.</p> 88 <p class="firstline">Modifies the top-level comment in a comment thread.</p> 92 …<pre>Creates a new top-level comment. To add a reply to an existing comment, use the comments.inse… 99 { # A comment thread represents information that applies to a top level comment and all its replies… 100 …ic details about a comment thread. # The snippet object contains basic details about the comment t… 103 …he ID of the video the comments refer to, if any. No video_id implies a channel discussion comment. 105 "totalReplyCount": 42, # The total number of replies (not including the top level comment). 106 …"topLevelComment": { # A comment represents a single YouTube comment. # The top level comment of t… 107 … { # Basic details about a comment, such as its author and text. # The snippet object contains bas… [all …]
|
D | youtube_v3.comments.html | 79 <p class="firstline">Deletes a comment.</p> 82 <p class="firstline">Creates a reply to an existing comment. Note: To create a top-level comment, u… 97 <p class="firstline">Modifies a comment.</p> 101 <pre>Deletes a comment. 104 …id: string, The id parameter specifies the comment ID for the resource that is being deleted. (req… 110 …<pre>Creates a reply to an existing comment. Note: To create a top-level comment, use the commentT… 117 { # A comment represents a single YouTube comment. 118 … { # Basic details about a comment, such as its author and text. # The snippet object contains bas… 120 …"viewerRating": "A String", # The rating the viewer has given to this comment. For the time being … 121 "authorDisplayName": "A String", # The name of the user who posted the comment. [all …]
|
/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 …]
|
/external/boringssl/src/third_party/wycheproof_testvectors/ |
D | dsa_test.json | 28 "comment" : "Legacy:ASN encoding of r misses leading 0", string 38 "comment" : "valid", string 46 "comment" : "long form encoding of length", string 54 "comment" : "long form encoding of length", string 62 "comment" : "long form encoding of length", string 70 "comment" : "length contains leading 0", string 78 "comment" : "length contains leading 0", string 86 "comment" : "length contains leading 0", string 94 "comment" : "wrong length", string 102 "comment" : "wrong length", string [all …]
|
D | aes_siv_cmac_test.json | 16 "comment" : "RFC 5297", string 25 "comment" : "empty message", string 35 "comment" : "empty message", string 45 "comment" : "empty message", string 55 "comment" : "empty message", string 65 "comment" : "empty message", string 75 "comment" : "empty message", string 85 "comment" : "message size divisible by block size", string 95 "comment" : "message size divisible by block size", string 105 "comment" : "message size divisible by block size", string [all …]
|
D | ecdh_test.json | 27 "comment" : "normal case", string 36 "comment" : "compressed public key", string 47 "comment" : "edge case for shared secret", string 56 "comment" : "edge case for shared secret", string 65 "comment" : "edge case for shared secret", string 74 "comment" : "edge case for shared secret", string 83 "comment" : "edge case for shared secret", string 92 "comment" : "edge case for shared secret", string 101 "comment" : "edge case for shared secret", string 110 "comment" : "edge case for shared secret", string [all …]
|
D | aes_cmac_test.json | 14 "comment" : "empty message", string 23 "comment" : "truncated mac", string 32 "comment" : "truncated mac", string 41 "comment" : "truncated mac", string 50 "comment" : "truncated mac", string 59 "comment" : "truncated mac", string 68 "comment" : "truncated mac", string 84 "comment" : "empty message", string 93 "comment" : "full length mac", string 102 "comment" : "full length mac", string [all …]
|
D | kwp_test.json | 13 "comment" : "", string 22 "comment" : "", string 31 "comment" : "", string 40 "comment" : "wrapped key is longer than wrapping key", string 49 "comment" : "wrapped key is longer than wrapping key", string 58 "comment" : "wrapped key is longer than wrapping key", string 67 "comment" : "wrapped key is longer than wrapping key", string 76 "comment" : "wrapped key is longer than wrapping key", string 85 "comment" : "wrapped key is longer than wrapping key", string 94 "comment" : "Round counter overflows 256", string [all …]
|
D | ecdh_secp256r1_test.json | 25 "comment" : "normal case", string 34 "comment" : "compressed public key", string 45 "comment" : "edge case for shared secret", string 54 "comment" : "edge case for shared secret", string 63 "comment" : "edge case for shared secret", string 72 "comment" : "edge case for shared secret", string 81 "comment" : "edge case for shared secret", string 90 "comment" : "edge case for shared secret", string 99 "comment" : "edge case for shared secret", string 108 "comment" : "edge case for shared secret", string [all …]
|
D | rsa_signature_2048_sha224_test.json | 22 "comment" : "", string 31 "comment" : "", string 40 "comment" : "", string 49 "comment" : "", string 58 "comment" : "", string 67 "comment" : "", string 76 "comment" : "", string 85 "comment" : "Legacy:missing NULL", string 96 "comment" : "long form encoding of length", string 105 "comment" : "long form encoding of length", string [all …]
|
D | rsa_signature_2048_sha256_test.json | 23 "comment" : "", string 32 "comment" : "", string 41 "comment" : "", string 50 "comment" : "", string 59 "comment" : "", string 68 "comment" : "", string 77 "comment" : "", string 86 "comment" : "Legacy:missing NULL", string 97 "comment" : "long form encoding of length", string 106 "comment" : "long form encoding of length", string [all …]
|
D | rsa_signature_3072_sha512_test.json | 23 "comment" : "", string 32 "comment" : "", string 41 "comment" : "", string 50 "comment" : "", string 59 "comment" : "", string 68 "comment" : "", string 77 "comment" : "", string 86 "comment" : "Legacy:missing NULL", string 97 "comment" : "long form encoding of length", string 106 "comment" : "long form encoding of length", string [all …]
|
D | rsa_signature_3072_sha256_test.json | 23 "comment" : "", string 32 "comment" : "", string 41 "comment" : "", string 50 "comment" : "", string 59 "comment" : "", string 68 "comment" : "", string 77 "comment" : "", string 86 "comment" : "Legacy:missing NULL", string 97 "comment" : "long form encoding of length", string 106 "comment" : "long form encoding of length", string [all …]
|
D | rsa_signature_2048_sha512_test.json | 23 "comment" : "", string 32 "comment" : "", string 41 "comment" : "", string 50 "comment" : "", string 59 "comment" : "", string 68 "comment" : "", string 77 "comment" : "", string 86 "comment" : "Legacy:missing NULL", string 97 "comment" : "long form encoding of length", string 106 "comment" : "long form encoding of length", string [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 …]
|