/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DebugLocStream.cpp | 33 Comments.erase(Comments.begin() + Entries.back().CommentOffset, 34 Comments.end());
|
H A D | ByteStreamer.h | 77 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 D | DebugLocStream.h | 56 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 D | DwarfDebug.cpp | 1389 auto &&Comments = DebugLocs.getComments(Entry); local 1390 auto Comment = Comments.begin(); 1391 auto End = Comments.end();
|
/external/clang/lib/AST/ |
H A D | RawCommentList.cpp | 278 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 D | CommentsHandler.java | 14 * 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 D | Comments.java | 16 * 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 D | JDiff.java | 100 // 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 D | APIHandler.java | 215 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 D | HTMLReportGenerator.java | 19 /** 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 D | API.java | 397 if (Comments.isMinimizedTag(tag) &&
|
/external/clang/unittests/Tooling/ |
H A D | CommentHandlerTest.cpp | 52 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 D | Disassembler.cpp | 128 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 D | PTXMCAsmStreamer.cpp | 208 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 D | RawCommentList.h | 189 return Comments; 194 std::vector<RawComment *> Comments; member in class:clang::RawCommentList
|
H A D | ASTContext.h | 617 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 D | Disassembler.cpp | 154 StringRef Comments = DC->CommentsToEmit.str(); local 158 IP->printInst(&Inst, OS, Comments);
|
/external/clang/unittests/Format/ |
H A D | SortImportsTestJS.cpp | 95 TEST_F(SortImportsTestJS, Comments) {
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
H A D | MCAsmStreamer.cpp | 284 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 D | todo.cs | 37 <tr><th>Total Comments</th><td><?cs var:all.totalCount ?></td></tr>
|
/external/llvm/lib/MC/ |
H A D | MCAsmStreamer.cpp | 77 // 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 D | llvm-objdump.cpp | 1118 SmallString<40> Comments; 1119 raw_svector_ostream CommentStream(Comments); 1217 Comments.clear();
|
/external/guava/guava/lib/ |
H A D | jdiff.jar | META-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ... |
/external/guice/lib/build/jdiff/ |
H A D | jdiff.jar | META-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ... |
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | dumpICUrules.bat | 276 # Comments; change # to //
|