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

12

/external/clang/lib/AST/
H A DRawCommentList.cpp219 while (!Comments.empty() &&
220 !SourceMgr.isBeforeInTranslationUnit(Comments.back()->getLocStart(),
224 Comments.pop_back();
233 if (Comments.empty()) {
234 Comments.push_back(new (Allocator) RawComment(RC));
238 const RawComment &C1 = *Comments.back();
248 *Comments.back() = RawComment(SourceMgr, MergedRange, true,
251 Comments.push_back(new (Allocator) RawComment(RC));
257 MergedComments.reserve(Comments.size() + DeserializedComments.size());
259 std::merge(Comments
[all...]
/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/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/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp149 StringRef Comments = DC->CommentsToEmit.str(); local
155 while (!Comments.empty()) {
160 size_t Position = Comments.find('\n');
161 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
163 Comments = Comments.substr(Position+1);
/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/clang/include/clang/AST/
H A DRawCommentList.h189 return Comments;
194 std::vector<RawComment *> Comments; member in class:clang::RawCommentList
H A DASTContext.h518 RawCommentList Comments; member in class:clang::ASTContext
580 /// Raw comments are owned by Comments list. This mapping is populated
594 return Comments;
600 Comments.addComment(RC, BumpAlloc);
/external/chromium_org/tools/gn/
H A Dparse_tree.cc24 Comments::Comments() { function in class:Comments
27 Comments::~Comments() {
30 void Comments::ReverseSuffix() {
52 Comments* ParseNode::comments_mutable() {
54 comments_.reset(new Comments);
H A Dparse_tree.h29 class Comments { class
31 Comments();
32 virtual ~Comments();
64 DISALLOW_COPY_AND_ASSIGN(Comments);
100 const Comments* comments() const { return comments_.get(); }
101 Comments* comments_mutable();
105 scoped_ptr<Comments> comments_;
H A Dtokenizer_unittest.cc166 TEST(Tokenizer, Comments) {
/external/jhead/
H A Dexif.c761 if (ImageInfo.Comments[0]){ // We already have a jpeg comment.
769 memcpy(ImageInfo.Comments, ValuePtr, ByteCount);
775 if (ImageInfo.Comments[0]){ // We already have a jpeg comment.
806 strncpy(ImageInfo.Comments,
812 strncpy(ImageInfo.Comments, (char *)ValuePtr, msiz);
1923 if (ImageInfo.Comments[0]){
1928 c = ImageInfo.Comments[a];
1932 if (ImageInfo.Comments[a+1] != '\0'){
1943 printf("%.*ls\n", ImageInfo.CommentWidchars, (wchar_t *)ImageInfo.Comments);
H A Djhead.h120 char Comments[MAX_COMMENT_SIZE]; member in struct:__anon22666
H A Dmain.c741 if (ImageInfo.Comments[0]) {
742 bufLen = addKeyValueString(&buf, bufLen, "UserComment", ImageInfo.Comments);
H A Djpgfile.c76 strcpy(ImageInfo.Comments,Comment);
/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.cpp271 StringRef Comments = CommentToEmit.str(); local
273 assert(Comments.back() == '\n' &&
278 size_t Position = Comments.find('\n');
279 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
281 Comments = Comments.substr(Position+1);
282 } while (!Comments.empty());
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp477 SmallString<40> Comments; local
478 raw_svector_ostream CommentStream(Comments);
525 Comments.clear();
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...

Completed in 271 milliseconds

12