Searched refs:Comments (Results 1 - 25 of 39) sorted by relevance

12

/external/clang/include/clang/AST/
H A DRawCommentList.h185 return Comments;
190 std::vector<RawComment *> Comments; member in class:clang::RawCommentList
195 size_t OldSize = Comments.size();
196 Comments.resize(C.size() + OldSize);
197 std::copy_backward(Comments.begin(), Comments.begin() + OldSize,
198 Comments.end());
199 std::copy(C.begin(), C.end(), Comments.begin());
/external/clang/unittests/Tooling/
H A DCommentHandlerTest.cpp52 Comments.push_back(Comment(C, CLine, CCol));
65 CommentList Comments; member in class:clang::CommentHandlerVisitor
96 CommentVerifier(const CommentList &Comments, Preprocessor *PP) argument
97 : Current(Comments.begin()), End(Comments.end()), PP(PP)
125 return CommentVerifier(Comments, PP);
/external/clang/lib/AST/
H A DRawCommentList.cpp210 while (!Comments.empty() &&
212 Comments.back()->getSourceRange().getBegin(),
216 Comments.pop_back();
234 if (Comments.empty()) {
235 Comments.push_back(new (Allocator) RawComment(RC));
240 const RawComment &C1 = *Comments.back();
254 *Comments.back() = RawComment(SourceMgr, MergedRange, true);
259 Comments.push_back(new (Allocator) RawComment(RC));
/external/jdiff/src/jdiff/
H A DCommentsHandler.java14 * Handle the parsing of an XML file and the generation of a Comments object.
28 /** The Comments object which is populated from the XML file. */
29 public Comments comments_ = null;
44 public CommentsHandler(Comments comments) {
134 currentText.compareTo(Comments.placeHolderText) != 0) {
167 if (Comments.isMinimizedTag(currentHTMLTag)) {
185 if (!Comments.isMinimizedTag(currentHTMLTag))
H A DComments.java15 * Creates a Comments from an XML file. The Comments object is the internal
17 * All methods in this class for populating a Comments object are static.
22 public class Comments { class
29 /** The old Comments object which is populated from the file read in. */
30 private static Comments oldComments_ = null;
33 public Comments() { method in class:Comments
42 * the old API and new API is stored and create a Comments object for
43 * it. The Comments object may be null if no file exists.
45 public static Comments readFil
[all...]
H A DJDiff.java100 // the old API and new API is stored and create a Comments object for
101 // it. The Comments object may be null if no file exists.
113 Comments existingComments = Comments.readFile(commentsFileName);
123 Comments newComments = reporter.getNewComments();
124 Comments.noteDifferences(existingComments, newComments);
129 Comments.writeFile(commentsFileName, newComments);
H A DAPIHandler.java214 currentText = Comments.convertAtLinks(currentText, currentElement,
219 currentText.compareTo(Comments.placeHolderText) != 0) {
263 String ctOld = (String)(Comments.allPossibleComments.put(commentID, ct));
289 if (Comments.isMinimizedTag(currentHTMLTag)) {
307 if (!Comments.isMinimizedTag(currentHTMLTag))
H A DHTMLReportGenerator.java19 /** The Comments object for existing comments. */
20 private Comments existingComments_ = null;
23 * The Comments object for freshly regenerated comments.
29 private Comments newComments_ = null;
32 * Accessor method for the freshly generated Comments object.
35 public Comments getNewComments() {
41 public void generate(APIComparator comp, Comments existingComments) {
49 newComments_ = new Comments();
2011 possibleComment = (String)Comments.allPossibleComments.get(commentID);
2020 String comment = Comments
[all...]
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp166 StringRef Comments = DC->CommentsToEmit.str(); local
170 IP->printInst(&Inst, OS, Comments);
/external/libvpx/examples/includes/geshi/geshi/
H A Dfortran.php48 //Fortran Comments
H A Dprovidex.php46 // Single-Line Comments using REM command
H A Dqbasic.php57 //Single-Line Comments using REM command
H A Dvb.php52 // Comments (either single or multiline with _
H A Dlatex.php19 * - Comments are now colored and the only green. The reason for coloring the comments
H A Dobjc.php55 //Single line C-Comments
/external/llvm/lib/MC/
H A DMCAsmStreamer.cpp294 StringRef Comments = CommentToEmit.str(); local
296 assert(Comments.back() == '\n' &&
301 size_t Position = Comments.find('\n');
302 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
304 Comments = Comments.substr(Position+1);
305 } while (!Comments.empty());
/external/jhead/
H A Dexif.c736 if (ImageInfo.Comments[0]){ // We already have a jpeg comment.
744 memcpy(ImageInfo.Comments, ValuePtr, ByteCount);
750 if (ImageInfo.Comments[0]){ // We already have a jpeg comment.
781 strncpy(ImageInfo.Comments,
787 strncpy(ImageInfo.Comments, (char *)ValuePtr, msiz);
1898 if (ImageInfo.Comments[0]){
1903 c = ImageInfo.Comments[a];
1907 if (ImageInfo.Comments[a+1] != '\0'){
1918 printf("%.*ls\n", ImageInfo.CommentWidchars, (wchar_t *)ImageInfo.Comments);
/external/doclava/res/assets/templates/
H A Dtodo.cs37 <tr><th>Total Comments</th><td><?cs var:all.totalCount ?></td></tr>
/external/expat/bcb5/
H A Delements.mak80 Comments= macro
H A Dexpat.mak81 Comments= macro
H A Dexpat_static.mak81 Comments= macro
H A Dexpatw.mak81 Comments= macro
H A Dexpatw_static.mak82 Comments= macro
H A Doutline.mak80 Comments= macro
H A Dxmlwf.mak81 Comments= macro

Completed in 367 milliseconds

12