Searched defs:Comments (Results 1 - 15 of 15) sorted by relevance

/external/llvm/lib/CodeGen/AsmPrinter/
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/include/clang/AST/
H A DRawCommentList.h189 return Comments;
194 std::vector<RawComment *> Comments; member in class:clang::RawCommentList
/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/jdiff/src/jdiff/
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...]
/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/MC/MCDisassembler/
H A DDisassembler.cpp154 StringRef Comments = DC->CommentsToEmit.str(); local
158 IP->printInst(&Inst, OS, Comments);
/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/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/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/clang/lib/Sema/
H A DSemaDecl.cpp10775 ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments(); local
10776 if (!Comments.empty() &&
10777 !Comments.back()->isAttached()) {
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp6388 StringRef Comments = CommentsToEmit.str(); local
6393 while (!Comments.empty()) {
6398 size_t Position = Comments.find('\n');
6399 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
6401 Comments = Comments.substr(Position + 1);
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/guice/lib/build/jdiff/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...

Completed in 515 milliseconds