HomeSort by relevance Sort by last modified time
    Searched refs:Comment (Results 26 - 50 of 231) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/v8/src/
full-codegen.cc 611 Comment cmnt(masm_, "[ Link nested modules");
710 Comment cmnt(masm_, "[ Allocate modules");
751 Comment cmnt(masm_, "[ ModuleLiteral");
766 Comment cmnt(masm_, "[ Declarations");
980 Comment cmnt(masm_, "[ Comma");
988 Comment cmnt(masm_, is_logical_and ? "[ Logical AND" : "[ Logical OR");
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
h_generator.py 159 c.Comment(prop.description)
192 c.Comment(type_.description)
202 c.Comment(type_.description)
206 c.Comment(type_.description)
224 c.Comment(type_.description)
231 .Comment('Populates a %s object from a base::Value. Returns'
238 .Comment('Creates a %s object from a base::Value, or NULL on '
248 .Comment('Returns a new %s representing the serialized form of this '
365 c.Comment(param.description)
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_instruction.c 115 if (src[i].Comment)
116 dest[i].Comment = _mesa_strdup(src[i].Comment);
132 if (inst[i].Comment)
133 free((char *) inst[i].Comment);
  /external/clang/lib/AST/
CommentSema.cpp 1 //===--- CommentSema.cpp - Doxygen comment semantic analysis --------------===//
93 void Sema::checkFunctionDeclVerbatimLine(const BlockCommandComment *Comment) {
94 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID());
99 switch (Comment->getCommandID()) {
120 Diag(Comment->getLocation(), diag::warn_doc_function_method_decl_mismatch)
121 << Comment->getCommandMarker()
123 << Comment->getSourceRange();
126 void Sema::checkContainerDeclVerbatimLine(const BlockCommandComment *Comment) {
127 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID());
131 switch (Comment->getCommandID())
    [all...]
  /external/mesa3d/src/mesa/program/
prog_instruction.c 115 if (src[i].Comment)
116 dest[i].Comment = _mesa_strdup(src[i].Comment);
132 if (inst[i].Comment)
133 free((char *) inst[i].Comment);
  /external/v8/src/
full-codegen.cc 815 Comment cmnt(masm_, "[ Comma");
823 Comment cmnt(masm_, is_logical_and ? "[ Logical AND" : "[ Logical OR");
892 Comment cmnt(masm_, "[ ArithmeticExpression");
913 Comment cmnt(masm_, "[ Block");
920 { Comment cmnt(masm_, "[ Extend block context");
937 { Comment cmnt(masm_, "[ Declarations");
958 Comment cmnt(masm_, "[ ExpressionStatement");
965 Comment cmnt(masm_, "[ EmptyStatement");
971 Comment cmnt(masm_, "[ IfStatement");
999 Comment cmnt(masm_, "[ ContinueStatement")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
CSSPreloadScanner.cpp 98 m_state = Comment;
102 case Comment:
112 m_state = Comment;
HTMLToken.h 73 Comment,
136 ASSERT(m_type == Character || m_type == Comment || m_type == StartTag || m_type == EndTag);
407 /* Comment Tokens */
409 const DataVector& comment() const function in class:WebCore::HTMLToken
411 ASSERT(m_type == Comment);
418 m_type = Comment;
424 ASSERT(m_type == Comment);
  /external/doclava/src/com/google/doclava/
AttrTagInfo.java 42 private Comment mDescrComment;
86 mDescrComment = new Comment(more, base, position);
101 public Comment description() {
DocFile.java 128 Comment comment = new Comment(commentText, null, new SourcePositionInfo(docfile, lineno, 1)); local
129 TagInfo[] tags = comment.tags();
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 22 import org.w3c.dom.Comment;
94 String comment = ""; local
101 } else if (node instanceof Comment) {
102 comment = comment + node.getNodeValue();
107 assertEquals(" Fragile! Handle me with care! ", comment);
  /external/clang/unittests/AST/
CommentParser.cpp 1 //===- unittests/AST/CommentParser.cpp ------ Comment parser tests --------===//
11 #include "clang/AST/Comment.h"
80 ::testing::AssertionResult HasChildCount(const Comment *C, size_t Count) {
82 return ::testing::AssertionFailure() << "Comment is NULL";
93 ::testing::AssertionResult GetChildAt(const Comment *C,
97 return ::testing::AssertionFailure() << "Comment is NULL";
104 Comment::child_iterator I = C->child_begin() + Idx;
105 Comment *CommentChild = *I;
118 ::testing::AssertionResult HasTextAt(const Comment *C,
139 ::testing::AssertionResult HasTextWithNewlineAt(const Comment *C
    [all...]
  /external/chromium_org/tools/imagediff/
image_diff_png.cc 38 // Represents a comment in the tEXt ancillary chunk of the png.
39 struct Comment {
40 Comment(const std::string& k, const std::string& t)
44 ~Comment() {
416 explicit CommentWriter(const std::vector<Comment>& comments)
444 void AddComment(size_t pos, const Comment& comment) {
446 // A PNG comment's key can only be 79 characters long.
447 DCHECK(comment.key.length() < 79);
448 png_text_[pos].key = strdup(comment.key.substr(0, 78).c_str())
    [all...]
  /external/chromium_org/ui/gfx/codec/
png_codec.cc 541 explicit CommentWriter(const std::vector<PNGCodec::Comment>& comments)
569 void AddComment(size_t pos, const PNGCodec::Comment& comment) {
571 // A PNG comment's key can only be 79 characters long.
572 DCHECK(comment.key.length() < 79);
573 png_text_[pos].key = base::strdup(comment.key.substr(0, 78).c_str());
574 png_text_[pos].text = base::strdup(comment.text.c_str());
575 png_text_[pos].text_length = comment.text.length();
585 const std::vector<PNGCodec::Comment> comments_;
604 const std::vector<PNGCodec::Comment>& comments)
    [all...]
  /external/chromium/chrome/browser/ui/window_snapshot/
window_snapshot_win.cc 66 std::vector<gfx::PNGCodec::Comment>(),
  /external/clang/include/clang/AST/
CommentSema.h 1 //===--- CommentSema.h - Doxygen comment semantic analysis ------*- C++ -*-===//
17 #include "clang/AST/Comment.h"
40 /// Source manager for the comment being parsed.
49 /// Information about the declaration this comment is attached to.
52 /// Comment AST nodes that correspond to parameter names in
194 /// used only once per comment, e.g., \\brief and \\returns.
197 void checkDeprecatedCommand(const BlockCommandComment *Comment);
199 void checkFunctionDeclVerbatimLine(const BlockCommandComment *Comment);
201 void checkContainerDeclVerbatimLine(const BlockCommandComment *Comment);
203 void checkContainerDecl(const BlockCommandComment *Comment);
    [all...]
  /external/llvm/utils/vim/
tablegen.vim 30 " Handle correctly imbricated comment
44 HiLink tgComment Comment
45 HiLink tgComment2 Comment
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode03.java 36 * The importedNode is of type Comment.
38 * Create a comment node with value being the string "this is a comment" in
40 * this document. Method should return a comment node whose value matches
72 Comment comment; local
80 comment = aNewDoc.createComment("this is a comment");
81 aNode = doc.importNode(comment, false);
88 assertEquals("nodeValue", "this is a comment", value)
    [all...]
importNode04.java 39 * Create a Comment child node for the Document Fragment.
43 * comment value "descendant1".
74 Comment comment; local
82 comment = aNewDoc.createComment("descendant1");
83 aNode = docFrag.appendChild(comment);
  /libcore/luni/src/main/java/org/w3c/dom/
Document.java 102 * Creates a <code>Comment</code> node given the specified string.
104 * @return The new <code>Comment</code> object.
106 public Comment createComment(String data);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlDocument.java 188 * Creates an Comment node.
189 * @see Comment#Comment(String)
191 public static Comment createHtmlComment(String content) {
192 return new Comment(content);
272 * HTML comment node.
274 public static class Comment extends Node {
279 * @param content Raw comment, including "&lt;!--" and "--&gt;".
281 public Comment(String content) {
913 /** HTML comment */
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlDocument.java 189 * Creates an Comment node.
190 * @see Comment#Comment(String)
192 public static Comment createHtmlComment(String content) {
193 return new Comment(content);
273 * HTML comment node.
275 public static class Comment extends Node {
280 * @param content Raw comment, including "&lt;!--" and "--&gt;".
282 public Comment(String content) {
914 /** HTML comment */
    [all...]
  /external/jhead/
jhead.c 78 static int EditComment = FALSE; // Invoke an editor for editing the comment
81 static char * CommentSavefileName = NULL; // Save comment to this file.
82 static char * CommentInsertfileName = NULL; // Insert comment from this file.
83 static char * CommentInsertLiteral = NULL; // Insert this comment (from command line)
142 static int FileEditComment(char * TempFileName, char * Comment, int CommentSize)
153 fwrite(Comment, CommentSize, 1, file);
186 CommentSize = fread(Comment, 1, 999, file);
197 // Modify one of the lines in the comment field.
247 // Overwrite old comment of same tag with new one.
946 char Comment[MAX_COMMENT_SIZE+1]
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
lexer.ml 21 (* Comment until end of line. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
lexer.ml 21 (* Comment until end of line. *)

Completed in 607 milliseconds

12 3 4 5 6 7 8 910