HomeSort by relevance Sort by last modified time
    Searched refs:Comments (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocStream.cpp 33 Comments.erase(Comments.begin() + Entries.back().CommentOffset,
34 Comments.end());
ByteStreamer.h 78 SmallVectorImpl<std::string> &Comments;
80 /// \brief Only verbose textual output needs comments. This will be set to
81 /// true for that case, and false otherwise. If false, comments passed in to
87 SmallVectorImpl<std::string> &Comments,
89 : Buffer(Buffer), Comments(Comments), GenerateComments(GenerateComments) {}
93 Comments.push_back(Comment.str());
99 Comments.push_back(Comment.str());
105 Comments.push_back(Comment.str());
DebugLocStream.h 56 SmallVector<std::string, 32> Comments;
58 /// \brief Only verbose textual output needs comments. This will be set to
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;
DwarfDebug.cpp     [all...]
  /external/clang/lib/AST/
RawCommentList.cpp 1 //===--- RawCommentList.cpp - Processing raw comments -----------*- C++ -*-===//
186 comments::Lexer L(Allocator, Context.getDiagnostics(),
190 comments::BriefParser P(L, Context.getCommentCommandTraits());
202 comments::FullComment *RawComment::parse(const ASTContext &Context,
208 comments::Lexer L(Context.getAllocator(), Context.getDiagnostics(),
212 comments::Sema S(Context.getAllocator(), Context.getSourceManager(),
217 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(),
277 // Check if the comments are not in source order.
278 while (!Comments.empty() &&
279 !SourceMgr.isBeforeInTranslationUnit(Comments.back()->getLocStart()
    [all...]
  /external/jdiff/src/jdiff/
CommentsHandler.java 14 * Handle the parsing of an XML file and the generation of a Comments object.
16 * All HTML written for the comments sections in the report must
28 /** The Comments object which is populated from the XML file. */
29 public Comments comments_ = null;
44 public CommentsHandler(Comments comments) {
45 comments_ = comments;
62 if (localName.compareTo("comments") == 0) {
66 System.out.println("Error: no identifier found in the comments XML file.");
75 System.out.println("Warning: API identifier in the comments XML file (" + filename2 + ") differs from the name of the file.")
    [all...]
Comments.java 16 * Creates a Comments from an XML file. The Comments object is the internal
17 * representation of the comments for the changes.
18 * All methods in this class for populating a Comments object are static.
23 public class Comments {
26 * All the possible comments known about, accessible by the commentID.
30 /** The old Comments object which is populated from the file read in. */
31 private static Comments oldComments_ = null;
34 public Comments() {
38 // The list of comments elements associated with this object
    [all...]
JDiff.java 85 // Read the file in, but do not add any text to the global comments
91 // Read the file in, and do add any text to the global comments
99 // Read the file where the XML for comments about the changes between
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.
112 System.out.println("JDiff: reading the comments in from file '" + commentsFileName + "'...");
113 Comments existingComments = Comments.readFile(commentsFileName);
115 System.out.println(" (the comments file will be created)");
121 // Emit messages about which comments are now unused an
    [all...]
APIHandler.java 42 /** If set, then create the global list of comments. */
215 currentText = Comments.convertAtLinks(currentText, currentElement,
220 currentText.compareTo(Comments.placeHolderText) != 0) {
225 // the format used in the report generator to look up comments in the
254 // Add to the list of possible comments for use when an
264 String ctOld = (String)(Comments.allPossibleComments.put(commentID, ct));
290 if (Comments.isMinimizedTag(currentHTMLTag)) {
308 if (!Comments.isMinimizedTag(currentHTMLTag))
HTMLReportGenerator.java 19 /** The Comments object for existing comments. */
20 private Comments existingComments_ = null;
23 * The Comments object for freshly regenerated comments.
25 * and should be like existingComments_ but with unused comments
27 * the new comments are written out to the comments file.
29 private Comments newComments_ = null;
32 * Accessor method for the freshly generated Comments object.
    [all...]
API.java 397 if (Comments.isMinimizedTag(tag) &&
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
ccs.s 2 ; Comments here
  /external/clang/unittests/Tooling/
CommentHandlerTest.cpp 52 Comments.push_back(Comment(C, CLine, CCol));
65 CommentList Comments;
96 CommentVerifier(const CommentList &Comments, Preprocessor *PP)
97 : Current(Comments.begin()), End(Comments.end()), PP(PP)
129 return CommentVerifier(Comments, PP);
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 123 /// \brief Emits the comments that are stored in \p DC comment stream.
128 StringRef Comments = DC->CommentsToEmit.str();
134 while (!Comments.empty()) {
137 // Emit a line of comments.
139 size_t Position = Comments.find('\n');
140 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
142 Comments = Comments.substr(Position+1);
  /external/clang/include/clang/AST/
RawCommentList.h 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
24 namespace comments { namespace in namespace:clang
26 } // end namespace comments
32 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
38 RCK_Merged ///< Two or more documentation comments merged together
95 /// Returns whether we are parsing all comments.
122 comments::FullComment *parse(const ASTContext &Context,
142 /// When true, ordinary comments starting with "//" and "/*" will be
143 /// considered as documentation comments.
163 /// \brief Compare comments' source locations
    [all...]
ASTContext.h 75 namespace comments { namespace in namespace:clang
606 /// \brief All comments in this translation unit.
607 RawCommentList Comments;
609 /// \brief True if comments are already loaded from ExternalASTSource.
630 /// comments.
666 /// \brief Mapping from declarations to comments attached to any
669 /// Raw comments are owned by Comments list. This mapping is populated
673 /// \brief Mapping from declarations to parsed comments attached to any
675 mutable llvm::DenseMap<const Decl *, comments::FullComment *> ParsedComments
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfStandardAttributes.h 139 // comments -- additional image information in human-readable
143 IMF_STD_ATTRIBUTE_DEF (comments, Comments, std::string)
ImfStandardAttributes.cpp 99 IMF_STD_ATTRIBUTE_IMP (comments, Comments, std::string)
  /external/jhead/
exif.c 761 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.
777 if (ShowTags) printf("Multiple comments in exif header\n");
    [all...]
jhead.h 120 char Comments[MAX_COMMENT_SIZE];
main.c 742 if (ImageInfo.Comments[0]) {
743 bufLen = addKeyValueString(&buf, bufLen, "UserComment", ImageInfo.Comments);
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 76 // If we don't have any comments, just emit a \n.
104 /// GetCommentOS - Return a raw_ostream that comments can be written to.
105 /// Unlike AddComment, you are required to terminate comments with \n if you
109 return nulls(); // Discard comments unless in verbose asm mode.
274 StringRef Comments = CommentToEmit;
276 assert(Comments.back() == '\n' &&
279 // Emit a line of comments.
281 size_t Position = Comments.find('\n');
282 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
284 Comments = Comments.substr(Position+1)
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/
location_info_mixin.js 157 //Comments
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
malis.s 25 ;; Section 8.2.3 Comments
27 ;; This file is full of comments
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp     [all...]

Completed in 688 milliseconds

1 2