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

1 2 3 4 5 6 7

  /external/clang/tools/libclang/
CXComment.h 25 namespace comments { namespace in namespace:clang
31 static inline CXComment createCXComment(const comments::Comment *C,
39 static inline const comments::Comment *getASTNode(CXComment CXC) {
40 return static_cast<const comments::Comment *>(CXC.ASTNode);
45 const comments::Comment *C = getASTNode(CXC);
56 static inline comments::CommandTraits &getCommandTraits(CXComment CXC) {
  /external/clang/include/clang/Index/
CommentToXML.h 1 //===--- CommentToXML.h - Convert comments to XML representation ----------===//
19 namespace comments { namespace in namespace:clang
35 void convertCommentToHTML(const comments::FullComment *FC,
39 void convertHTMLTagNodeToText(const comments::HTMLTagComment *HTC,
43 void convertCommentToXML(const comments::FullComment *FC,
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
063-comments.c 17 comments */
18 are not treated like comments.
  /external/mesa3d/src/glsl/glcpp/tests/
063-comments.c 17 comments */
18 are not treated like comments.
  /external/chromium_org/third_party/closure_linter/closure_linter/
testutil.py 64 """Run the tokenizer and tracker and return comments and functions found.
70 The functions and comments as a tuple.
77 comments = []
86 if comment and comment not in comments:
87 comments.append(comment)
91 return functions, comments
statetracker_test.py 117 _, comments = testutil.ParseFunctionsAndComments(script)
118 self.assertEquals(1, len(comments))
119 return comments[0]
javascriptstatetracker_test.py 268 _, comments = testutil.ParseFunctionsAndComments(script)
269 self.assertEquals(1, len(comments))
270 return comments[0]
  /external/clang/include/clang/AST/
CommentBriefParser.h 21 namespace comments { namespace in namespace:clang
51 } // end namespace comments
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...]
  /external/chromium_org/tools/gn/
command_format.cc 68 // End the current line, flushing end of line comments.
85 std::vector<Token> comments_; // Pending end-of-line comments.
150 if (block->comments()) {
151 for (const auto& c : block->comments()->before()) {
161 if (stmt->comments()) {
167 for (const auto& c : stmt->comments()->after()) {
177 if (block->comments()) {
178 for (const auto& c : block->comments()->after()) {
187 if (root->comments()) {
188 if (!root->comments()->before().empty())
    [all...]
  /external/clang/test/Parser/
ms-inline-asm.c 13 int 0x2c ; } asm comments are fun! }{
18 __asm int 3 ; } comments for single-line asm
  /external/libutf/
NOTICE 17 Please send comments about the packaging
  /external/chromium_org/tools/idl_parser/
idl_parser_test.py 16 comments = comment.split(None, 1)
17 return comments[0], comments[1]
26 comments = node.GetListOf('Comment')
27 for comment in comments:
67 comments = node.GetListOf('Comment')
68 for comment in comments:
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_doc_comment.cc 109 string comments = location.leading_comments.empty() ? local
111 if (!comments.empty()) {
118 comments = EscapeJavadoc(comments);
121 SplitStringAllowEmpty(comments, "\n", &lines);
178 // In theory we should have slightly different comments for setters, getters,
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
remap_helper.py 95 comments = "will be remapped"
97 comments = "offset %d" % f.offset
99 comments = "dynamic"
102 % (index, f.name, comments)
  /external/mesa3d/src/mapi/glapi/gen/
remap_helper.py 95 comments = "will be remapped"
97 comments = "offset %d" % f.offset
99 comments = "dynamic"
102 % (index, f.name, comments)
  /external/clang/lib/AST/
RawCommentList.cpp 1 //===--- RawCommentList.cpp - Processing raw comments -----------*- C++ -*-===//
127 comments::Lexer L(Allocator, Context.getDiagnostics(),
131 comments::BriefParser P(L, Context.getCommentCommandTraits());
143 comments::FullComment *RawComment::parse(const ASTContext &Context,
149 comments::Lexer L(Context.getAllocator(), Context.getDiagnostics(),
153 comments::Sema S(Context.getAllocator(), Context.getSourceManager(),
158 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(),
218 // Check if the comments are not in source order.
219 while (!Comments.empty() &&
220 !SourceMgr.isBeforeInTranslationUnit(Comments.back()->getLocStart()
    [all...]
  /external/libvorbis/lib/
info.c 67 (vc->comments+2)*sizeof(*vc->user_comments));
69 (vc->comments+2)*sizeof(*vc->comment_lengths));
70 vc->comment_lengths[vc->comments]=strlen(comment);
71 vc->user_comments[vc->comments]=_ogg_malloc(vc->comment_lengths[vc->comments]+1);
72 strcpy(vc->user_comments[vc->comments], comment);
73 vc->comments++;
74 vc->user_comments[vc->comments]=NULL;
106 for(i=0;i<vc->comments;i++){
125 for(i=0;i<vc->comments;i++)
    [all...]
  /external/chromium_org/tools/imagediff/
image_diff_png.cc 409 explicit CommentWriter(const std::vector<Comment>& comments)
410 : comments_(comments),
411 png_text_(new png_text[comments.size()]) {
412 for (size_t i = 0; i < comments.size(); ++i)
413 AddComment(i, comments[i]);
470 const std::vector<Comment>& comments) {
472 CommentWriter comment_writer(comments);
529 const std::vector<Comment>& comments,
594 output_color_components, converter, comments);
604 const std::vector<Comment>& comments,
    [all...]
  /external/chromium_org/ui/gfx/codec/
png_codec.cc 510 explicit CommentWriter(const std::vector<PNGCodec::Comment>& comments)
511 : comments_(comments),
512 png_text_(new png_text[comments.size()]) {
513 for (size_t i = 0; i < comments.size(); ++i)
514 AddComment(i, comments[i]);
573 const std::vector<PNGCodec::Comment>& comments) {
575 CommentWriter comment_writer(comments);
631 const std::vector<PNGCodec::Comment>& comments,
724 output_color_components, converter, comments);
762 const std::vector<Comment>& comments,
    [all...]
png_codec.h 72 // comments: comments to be written in the png's metadata.
78 const std::vector<Comment>& comments,
  /external/chromium_org/base/
file_version_info.h 77 virtual base::string16 comments() = 0;
file_version_info_mac.h 34 virtual base::string16 comments() OVERRIDE;
file_version_info_win.h 33 virtual base::string16 comments() OVERRIDE;
  /external/chromium_org/chrome/tools/convert_dict/
aff_reader.h 46 const std::string& comments() const { return intro_comment_; } function in class:convert_dict::AffReader
76 // Comments from the beginning of the file. This is everything before the

Completed in 627 milliseconds

1 2 3 4 5 6 7