Home
last modified time | relevance | path

Searched full:comment (Results 1 – 25 of 5547) sorted by relevance

12345678910>>...222

/external/libxml2/result/
Dcomment6.xml.rdr1 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
Dcomment6.xml.rde1 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
Dcomment6.xml3 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
Dcomment6.xml.sax3 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
Dcomment6.xml.sax23 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/
Dcomment6.xml2 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/
Dcomment6.xml3 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
Dcomment6.xml.sax23 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/
Dyoutube_v3.commentThreads.html79 <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 …]
Dyoutube_v3.comments.html79 <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/
Dcomment_parsing_scenarios.story9 // 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 …]
Dcomment_attribution_scenarios.story9 // 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/
DModifierVisitor.java26 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/
Ddsa_test.json28 "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 …]
Daes_siv_cmac_test.json16 "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 …]
Decdh_test.json27 "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 …]
Daes_cmac_test.json14 "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 …]
Dkwp_test.json13 "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 …]
Decdh_secp256r1_test.json25 "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 …]
Drsa_signature_2048_sha224_test.json22 "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 …]
Drsa_signature_2048_sha256_test.json23 "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 …]
Drsa_signature_3072_sha512_test.json23 "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 …]
Drsa_signature_3072_sha256_test.json23 "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 …]
Drsa_signature_2048_sha512_test.json23 "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/
DCloneVisitor.java46 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 …]

12345678910>>...222