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

12

/external/clang/include/clang/AST/
H A DRawCommentList.h200 return Comments;
205 std::vector<RawComment *> Comments; member in class:clang::RawCommentList
210 size_t OldSize = Comments.size();
211 Comments.resize(C.size() + OldSize);
212 std::copy_backward(Comments.begin(), Comments.begin() + OldSize,
213 Comments.end());
214 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.cpp217 while (!Comments.empty() &&
219 Comments.back()->getSourceRange().getBegin(),
223 Comments.pop_back();
241 if (Comments.empty()) {
242 Comments.push_back(new (Allocator) RawComment(RC));
247 const RawComment &C1 = *Comments.back();
261 *Comments.back() = RawComment(SourceMgr, MergedRange, true,
267 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...]
H A DAPI.java397 if (Comments.isMinimizedTag(tag) &&
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A Derror_test.cpp55 TEST_F(ErrorTest, Comments)
H A Dextension_test.cpp28 TEST_F(ExtensionTest, Comments)
H A Dpragma_test.cpp56 TEST_F(PragmaTest, Comments)
/external/libvpx/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/MCDisassembler/
H A DDisassembler.cpp180 StringRef Comments = DC->CommentsToEmit.str(); local
184 IP->printInst(&Inst, OS, Comments);
/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);
H A Djhead.h107 char Comments[MAX_COMMENT_SIZE]; member in struct:__anon19914
H A Dmain.c724 if (ImageInfo.Comments[0]) {
725 bufLen = addKeyValueString(&buf, bufLen, "UserComment", ImageInfo.Comments);
/external/doclava/res/assets/templates/
H A Dtodo.cs37 <tr><th>Total Comments</th><td><?cs var:all.totalCount ?></td></tr>
/external/llvm/lib/MC/
H A DMCAsmStreamer.cpp306 StringRef Comments = CommentToEmit.str(); local
308 assert(Comments.back() == '\n' &&
313 size_t Position = Comments.find('\n');
314 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
316 Comments = Comments.substr(Position+1);
317 } while (!Comments.empty());
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp431 SmallString<40> Comments; local
432 raw_svector_ostream CommentStream(Comments);
480 Comments.clear();

Completed in 483 milliseconds

12