Home
last modified time | relevance | path

Searched refs:Comments (Results 1 – 25 of 117) sorted by relevance

12345

/external/clang/lib/AST/
DRawCommentList.cpp219 while (!Comments.empty() && in addComment()
220 !SourceMgr.isBeforeInTranslationUnit(Comments.back()->getLocStart(), in addComment()
224 Comments.pop_back(); in addComment()
233 if (Comments.empty()) { in addComment()
234 Comments.push_back(new (Allocator) RawComment(RC)); in addComment()
238 const RawComment &C1 = *Comments.back(); in addComment()
248 *Comments.back() = RawComment(SourceMgr, MergedRange, true, in addComment()
251 Comments.push_back(new (Allocator) RawComment(RC)); in addComment()
257 MergedComments.reserve(Comments.size() + DeserializedComments.size()); in addDeserializedComments()
259 std::merge(Comments.begin(), Comments.end(), in addDeserializedComments()
[all …]
/external/clang/unittests/Tooling/
DCommentHandlerTest.cpp52 Comments.push_back(Comment(C, CLine, CCol)); in HandleComment()
65 CommentList Comments; member in clang::CommentHandlerVisitor
96 CommentVerifier(const CommentList &Comments, Preprocessor *PP) in CommentVerifier() argument
97 : Current(Comments.begin()), End(Comments.end()), PP(PP) in CommentVerifier()
125 return CommentVerifier(Comments, PP); in GetVerifier()
/external/jdiff/src/jdiff/
DCommentsHandler.java29 public Comments comments_ = null;
44 public CommentsHandler(Comments comments) { in CommentsHandler()
134 currentText.compareTo(Comments.placeHolderText) != 0) { in addTextToComments()
167 if (Comments.isMinimizedTag(currentHTMLTag)) { in addStartTagToText()
185 if (!Comments.isMinimizedTag(currentHTMLTag)) in addEndTagToText()
DJDiff.java113 Comments existingComments = Comments.readFile(commentsFileName); in startGeneration()
123 Comments newComments = reporter.getNewComments(); in startGeneration()
124 Comments.noteDifferences(existingComments, newComments); in startGeneration()
129 Comments.writeFile(commentsFileName, newComments); in startGeneration()
DComments.java22 public class Comments { class
30 private static Comments oldComments_ = null;
33 public Comments() { in Comments() method in Comments
45 public static Comments readFile(String filename) { in readFile()
58 oldComments_ = new Comments(); in readFile()
195 public static String getComment(Comments comments, String id) { in getComment()
382 Comments newComments) { in writeFile()
437 public static void noteDifferences(Comments oldComments, Comments newComments) { in noteDifferences()
DAPIHandler.java214 currentText = Comments.convertAtLinks(currentText, currentElement, in addTextToComments()
219 currentText.compareTo(Comments.placeHolderText) != 0) { in addTextToComments()
263 String ctOld = (String)(Comments.allPossibleComments.put(commentID, ct)); in addTextToComments()
289 if (Comments.isMinimizedTag(currentHTMLTag)) { in addStartTagToText()
307 if (!Comments.isMinimizedTag(currentHTMLTag)) in addEndTagToText()
/external/llvm/lib/MC/MCDisassembler/
DDisassembler.cpp149 StringRef Comments = DC->CommentsToEmit.str(); in emitComments() local
155 while (!Comments.empty()) { in emitComments()
160 size_t Position = Comments.find('\n'); in emitComments()
161 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position); in emitComments()
163 Comments = Comments.substr(Position+1); in emitComments()
/external/chromium_org/tools/gn/
Dparse_tree.h29 class Comments {
31 Comments();
32 virtual ~Comments();
64 DISALLOW_COPY_AND_ASSIGN(Comments);
100 const Comments* comments() const { return comments_.get(); } in comments()
101 Comments* comments_mutable();
105 scoped_ptr<Comments> comments_;
Dparse_tree.cc24 Comments::Comments() { in Comments() function in Comments
27 Comments::~Comments() { in ~Comments()
30 void Comments::ReverseSuffix() { in ReverseSuffix()
52 Comments* ParseNode::comments_mutable() { in comments_mutable()
54 comments_.reset(new Comments); in comments_mutable()
/external/chromium_org/third_party/lcov/contrib/galaxy/
DREADME13 3. Notes and Comments
45 3. Notes and Comments
/external/clang/include/clang/AST/
DRawCommentList.h189 return Comments; in getComments()
194 std::vector<RawComment *> Comments; variable
/external/llvm/test/YAMLParser/
Dspec-09-23.data4 # Comments:
/external/chromium_org/tools/json_comment_eater/
Deverything.json7 "comments": "yo", // Comments all have a // in them.
/external/jhead/
Dexif.c761 if (ImageInfo.Comments[0]){ // We already have a jpeg comment. in ProcessExifDir()
769 memcpy(ImageInfo.Comments, ValuePtr, ByteCount); in ProcessExifDir()
775 if (ImageInfo.Comments[0]){ // We already have a jpeg comment. in ProcessExifDir()
806 strncpy(ImageInfo.Comments, in ProcessExifDir()
812 strncpy(ImageInfo.Comments, (char *)ValuePtr, msiz); in ProcessExifDir()
1923 if (ImageInfo.Comments[0]){ in ShowImageInfo()
1928 c = ImageInfo.Comments[a]; in ShowImageInfo()
1932 if (ImageInfo.Comments[a+1] != '\0'){ in ShowImageInfo()
1943 printf("%.*ls\n", ImageInfo.CommentWidchars, (wchar_t *)ImageInfo.Comments); in ShowImageInfo()
/external/zlib/src/contrib/vstudio/vc9/
Dzlib.rc24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
/external/zlib/src/contrib/vstudio/vc11/
Dzlib.rc24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
/external/zlib/src/contrib/vstudio/vc10/
Dzlib.rc24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
/external/zlib/src/win32/
Dzlib1.rc33 VALUE "Comments", "For more information visit http://www.zlib.net/\0"
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
Derror_test.cpp55 TEST_F(ErrorTest, Comments) in TEST_F() argument
Dextension_test.cpp28 TEST_F(ExtensionTest, Comments) in TEST_F() argument
/external/llvm/lib/MC/
DMCAsmStreamer.cpp271 StringRef Comments = CommentToEmit.str(); in EmitCommentsAndEOL() local
273 assert(Comments.back() == '\n' && in EmitCommentsAndEOL()
278 size_t Position = Comments.find('\n'); in EmitCommentsAndEOL()
279 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n'; in EmitCommentsAndEOL()
281 Comments = Comments.substr(Position+1); in EmitCommentsAndEOL()
282 } while (!Comments.empty()); in EmitCommentsAndEOL()
/external/chromium_org/third_party/skia/tools/
Dtsan.supp3 # CAREFUL! Comments must go on their own line or your suppressions will silently fail.
/external/skia/tools/
Dtsan.supp3 # CAREFUL! Comments must go on their own line or your suppressions will silently fail.
/external/chromium_org/third_party/icu/source/data/misc/
Dicudata.rc48 VALUE "Comments", ICU_WEBSITE "\0"
/external/icu/icu4c/source/data/misc/
Dicudata.rc48 VALUE "Comments", ICU_WEBSITE "\0"

12345