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

1 2

  /external/clang/include/clang/AST/
RawCommentList.h 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
23 namespace comments { namespace in namespace:clang
25 } // end namespace comments
31 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
37 RCK_Merged ///< Two or more documentation comments merged together
118 comments::FullComment *parse(const ASTContext &Context,
159 /// \brief Compare comments' source locations.
177 /// \brief This class represents all comments included in the translation unit,
187 return Comments;
192 std::vector<RawComment *> Comments;
    [all...]
ASTContext.h 71 namespace comments { namespace in namespace:clang
481 /// \brief All comments in this translation unit.
482 RawCommentList Comments;
484 /// \brief True if comments are already loaded from ExternalASTSource.
505 /// comments.
541 /// \brief Mapping from declarations to comments attached to any
544 /// Raw comments are owned by Comments list. This mapping is populated
548 /// \brief Mapping from declarations to parsed comments attached to any
550 mutable llvm::DenseMap<const Decl *, comments::FullComment *> ParsedComments
    [all...]
  /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)
125 return CommentVerifier(Comments, PP);
  /external/clang/lib/AST/
RawCommentList.cpp 1 //===--- RawCommentList.cpp - Processing raw comments -----------*- C++ -*-===//
146 comments::Lexer L(Allocator, Context.getCommentCommandTraits(),
149 comments::BriefParser P(L, Context.getCommentCommandTraits());
161 comments::FullComment *RawComment::parse(const ASTContext &Context,
167 comments::Lexer L(Context.getAllocator(), Context.getCommentCommandTraits(),
170 comments::Sema S(Context.getAllocator(), Context.getSourceManager(),
175 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(),
211 // Check if the comments are not in source order.
212 while (!Comments.empty() &&
214 Comments.back()->getSourceRange().getBegin()
    [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 15 * Creates a Comments from an XML file. The Comments object is the internal
16 * representation of the comments for the changes.
17 * All methods in this class for populating a Comments object are static.
22 public class Comments {
25 * All the possible comments known about, accessible by the commentID.
29 /** The old Comments object which is populated from the file read in. */
30 private static Comments oldComments_ = null;
33 public Comments() {
37 // 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. */
214 currentText = Comments.convertAtLinks(currentText, currentElement,
219 currentText.compareTo(Comments.placeHolderText) != 0) {
224 // the format used in the report generator to look up comments in the
253 // Add to the list of possible comments for use when an
263 String ctOld = (String)(Comments.allPossibleComments.put(commentID, ct));
289 if (Comments.isMinimizedTag(currentHTMLTag)) {
307 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...]
  /external/webkit/Source/WebKit/chromium/scripts/
jsmin.py 113 """ get the next character, excluding comments. peek() is used to see
183 insignificant to JavaScript. Comments will be removed. Tabs will be
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 167 StringRef Comments = DC->CommentsToEmit.str();
171 IP->printInst(&Inst, OS, Comments);
  /external/jhead/
exif.c 736 if (ImageInfo.Comments[0]){ // We already have a jpeg comment.
744 memcpy(ImageInfo.Comments, ValuePtr, ByteCount);
750 if (ImageInfo.Comments[0]){ // We already have a jpeg comment.
752 if (ShowTags) printf("Multiple comments in exif header\n");
781 strncpy(ImageInfo.Comments,
787 strncpy(ImageInfo.Comments, (char *)ValuePtr, msiz);
    [all...]
jhead.h 106 char Comments[MAX_COMMENT_SIZE];
main.c 695 if (ImageInfo.Comments[0]) {
696 bufLen = addKeyValueString(&buf, bufLen, "UserComment", ImageInfo.Comments);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodegettextcontent12.js 79 is the Comments data.
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 85 // If we don't have any comments, just emit a \n.
110 /// GetCommentOS - Return a raw_ostream that comments can be written to.
111 /// Unlike AddComment, you are required to terminate comments with \n if you
115 return nulls(); // Discard comments unless in verbose asm mode.
313 StringRef Comments = CommentToEmit.str();
315 assert(Comments.back() == '\n' &&
318 // Emit a line of comments.
320 size_t Position = Comments.find('\n');
321 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
323 Comments = Comments.substr(Position+1)
    [all...]
  /external/expat/bcb5/
elements.mak 80 Comments=
expat.mak 81 Comments=
expat_static.mak 81 Comments=
expatw.mak 81 Comments=
expatw_static.mak 82 Comments=
outline.mak 80 Comments=
xmlwf.mak 81 Comments=
  /external/libvpx/libvpx/examples/includes/geshi/contrib/
cssgen.php 313 <tr><th>Comments (//, <!-- --> etc)</th><td><input type="text" name="comments" value="color: #808080;" /></td></tr>
409 $comments = get_var('comments'); variable
411 if ( $comments != '' )
413 $stylesheet .= "\n$comment_selector {{$comments}}";
  /external/clang/lib/Format/
Format.cpp 103 /// trailing line comments.
117 // Align line comments if they are trailing or if they continue other
118 // trailing comments.
127 // Align comment with other comments.
128 if (Tok.Parent != NULL || !Comments.empty()) {
138 Comments.push_back(Comment);
144 // If this line does not have a trailing comment, align the stored comments.
254 SmallVector<StoredComment, 16> Comments;
257 /// \brief Try to align all stashed comments.
261 comment_iterator Start = Comments.begin()
    [all...]

Completed in 503 milliseconds

1 2