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

12

/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.cpp33 Comments.erase(Comments.begin() + Entries.back().CommentOffset,
34 Comments.end());
H A DByteStreamer.h77 SmallVectorImpl<std::string> &Comments; member in class:llvm::final
86 SmallVectorImpl<std::string> &Comments,
88 : Buffer(Buffer), Comments(Comments), GenerateComments(GenerateComments) {}
92 Comments.push_back(Comment.str());
98 Comments.push_back(Comment.str());
104 Comments.push_back(Comment.str());
85 BufferByteStreamer(SmallVectorImpl<char> &Buffer, SmallVectorImpl<std::string> &Comments, bool GenerateComments) argument
H A DDebugLocStream.h56 SmallVector<std::string, 32> Comments; member in class:llvm::DebugLocStream
97 Entries.emplace_back(BeginSym, EndSym, DWARFBytes.size(), Comments.size());
105 return BufferByteStreamer(DWARFBytes, Comments, GenerateComments);
121 return makeArrayRef(Comments)
148 return Comments.size() - Entries[EI].CommentOffset;
H A DDwarfDebug.cpp1389 auto &&Comments = DebugLocs.getComments(Entry); local
1390 auto Comment = Comments.begin();
1391 auto End = Comments.end();
/external/clang/lib/AST/
H A DRawCommentList.cpp278 while (!Comments.empty() &&
279 !SourceMgr.isBeforeInTranslationUnit(Comments.back()->getLocStart(),
283 Comments.pop_back();
292 if (Comments.empty()) {
293 Comments.push_back(new (Allocator) RawComment(RC));
297 const RawComment &C1 = *Comments.back();
320 *Comments.back() = RawComment(SourceMgr, MergedRange, true,
323 Comments.push_back(new (Allocator) RawComment(RC));
329 MergedComments.reserve(Comments.size() + DeserializedComments.size());
331 std::merge(Comments
[all...]
/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.java16 * Creates a Comments from an XML file. The Comments object is the internal
18 * All methods in this class for populating a Comments object are static.
23 public class Comments { class
30 /** The old Comments object which is populated from the file read in. */
31 private static Comments oldComments_ = null;
34 public Comments() { method in class:Comments
43 * the old API and new API is stored and create a Comments object for
44 * it. The Comments object may be null if no file exists.
46 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.java215 currentText = Comments.convertAtLinks(currentText, currentElement,
220 currentText.compareTo(Comments.placeHolderText) != 0) {
264 String ctOld = (String)(Comments.allPossibleComments.put(commentID, ct));
290 if (Comments.isMinimizedTag(currentHTMLTag)) {
308 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();
1832 possibleComment = (String)Comments.allPossibleComments.get(commentID);
1841 String comment = Comments
[all...]
H A DAPI.java397 if (Comments.isMinimizedTag(tag) &&
/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)
129 return CommentVerifier(Comments, PP);
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp128 StringRef Comments = DC->CommentsToEmit.str(); local
134 while (!Comments.empty()) {
139 size_t Position = Comments.find('\n');
140 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
142 Comments = Comments.substr(Position+1);
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXMCAsmStreamer.cpp208 StringRef Comments = CommentToEmit.str(); local
210 assert(Comments.back() == '\n' &&
215 size_t Position = Comments.find('\n');
216 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
218 Comments = Comments.substr(Position+1);
219 } while (!Comments.empty());
/external/clang/include/clang/AST/
H A DRawCommentList.h189 return Comments;
194 std::vector<RawComment *> Comments; member in class:clang::RawCommentList
H A DASTContext.h617 RawCommentList Comments;
679 /// Raw comments are owned by Comments list. This mapping is populated
693 return Comments;
699 Comments.addComment(RC, BumpAlloc);
/external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
H A DDisassembler.cpp154 StringRef Comments = DC->CommentsToEmit.str(); local
158 IP->printInst(&Inst, OS, Comments);
/external/boringssl/src/util/fipstools/testdata/x86_64-Basic/
H A Din.s39 movq %rax, %rbx # Comments can be on the same line as an instruction.
H A Dout.s42 movq %rax, %rbx # Comments can be on the same line as an instruction.
/external/clang/unittests/Format/
H A DSortImportsTestJS.cpp95 TEST_F(SortImportsTestJS, Comments) {
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCAsmStreamer.cpp284 StringRef Comments = CommentToEmit.str(); local
286 assert(Comments.back() == '\n' &&
291 size_t Position = Comments.find('\n');
292 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
294 Comments = Comments.substr(Position+1);
295 } while (!Comments.empty());
/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.cpp77 // Dump Explicit Comments here.
306 StringRef Comments = CommentToEmit; 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());
371 StringRef Comments = ExplicitCommentToEmit; local
372 if (!Comments
373 OS << Comments; local
[all...]
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1118 SmallString<40> Comments;
1119 raw_svector_ostream CommentStream(Comments);
1217 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 857 milliseconds

12