HomeSort by relevance Sort by last modified time
    Searched defs:Comment (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
Comment.cpp 23 #include "core/dom/Comment.h"
29 inline Comment::Comment(Document& document, const String& text)
34 PassRefPtrWillBeRawPtr<Comment> Comment::create(Document& document, const String& text)
36 return adoptRefWillBeNoop(new Comment(document, text));
39 String Comment::nodeName() const
41 return "#comment";
44 Node::NodeType Comment::nodeType() const
49 PassRefPtrWillBeRawPtr<Node> Comment::cloneNode(bool /*deep*/
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
code.py 88 def Comment(self, comment, comment_prefix='// '):
89 """Adds the given string as a comment.
91 Will split the comment if it's too long. Use mainly for variable length
97 while len(comment) >= max_len:
98 line = comment[0:max_len]
102 comment = comment[last_space + 1:]
104 comment = comment[max_len:
    [all...]
  /external/chromium_org/ui/gfx/codec/
png_codec.h 47 // Represents a comment in the tEXt ancillary chunk of the png.
48 struct GFX_EXPORT Comment {
49 Comment(const std::string& k, const std::string& t);
50 ~Comment();
78 const std::vector<Comment>& comments,
png_codec.cc 510 explicit CommentWriter(const std::vector<PNGCodec::Comment>& comments)
538 void AddComment(size_t pos, const PNGCodec::Comment& comment) {
540 // A PNG comment's key can only be 79 characters long.
541 DCHECK(comment.key.length() < 79);
542 png_text_[pos].key = base::strdup(comment.key.substr(0, 78).c_str());
543 png_text_[pos].text = base::strdup(comment.text.c_str());
544 png_text_[pos].text_length = comment.text.length();
554 const std::vector<PNGCodec::Comment> comments_;
573 const std::vector<PNGCodec::Comment>& comments)
    [all...]
  /external/chromium_org/v8/src/
codegen.cc 82 Comment::Comment(MacroAssembler* masm, const char* msg)
88 Comment::~Comment() {
lithium-codegen.cc 73 Comment(
84 Comment(";;; <@%d,#%d> %s",
132 void LCodeGenBase::Comment(const char* format, ...) {
155 Comment("%s", os.c_str());
macro-assembler.h 155 class Comment {
157 Comment(MacroAssembler* masm, const char* msg);
158 ~Comment();
167 class Comment {
169 Comment(MacroAssembler*, const char*) {}
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
CSSPreloadScanner.h 53 Comment,
HTMLToken.h 71 Comment,
139 ASSERT(m_type == Character || m_type == Comment || m_type == StartTag || m_type == EndTag);
408 /* Comment Tokens */
410 const DataVector& comment() const function in class:blink::HTMLToken
412 ASSERT(m_type == Comment);
419 m_type = Comment;
425 ASSERT(m_type == Comment);
  /external/markdown/markdown/
html4.py 43 Comment = markdown.etree.Comment
131 if tag is Comment:
253 elif tag is not None and tag is not Comment and tag is not PI:
  /external/chromium_org/third_party/markdown/
serializers.py 78 Comment = util.etree.test_comment
80 Comment = util.etree.Comment
172 if tag is Comment:
291 elif tag is not None and tag is not Comment and tag is not PI:
util.py 91 from xml.etree.ElementTree import Comment
92 # Serializers (including ours) test with non-c Comment
93 etree.test_comment = Comment
  /build/tools/releasetools/
edify_generator.py 193 def Comment(self, comment):
194 """Write a comment into the update script."""
196 for i in comment.split("\n"):
  /external/chromium_org/ppapi/generators/
idl_c_header.py 19 from idl_c_proto import CGen, GetNodeComments, CommentLines, Comment
72 # If we are part of a group comment marker...
121 item = cgen.Define(node, releases, prefix=pref, comment=True)
226 assert(fileinfo.IsA('Comment'))
230 # Wrap the From ... modified ... comment if it would be >80 characters.
323 # Generate the @file comment
324 out.Write('%s\n' % Comment(fileinfo, prefix='*\n @file'))
idl_c_proto.py 29 # Generate a C style comment block by prepending the block with '<tab>/*'
43 def Comment(node, prefix=None, tabs=0):
44 # Generate a comment block from the provided Comment node.
45 comment = node.GetName()
46 lines = comment.split('\n')
48 # If an option prefix is provided, then prepend that to the comment
52 # If both the prefix and comment start with a blank line ('*') remove
61 # Generate a comment block joining all comment nodes which are children o
    [all...]
idl_thunk.py 19 from idl_c_proto import CGen, GetNodeComments, CommentLines, Comment
449 # Wrap the From ... modified ... comment if it would be >80 characters.
  /external/clang/unittests/Tooling/
CommentHandlerTest.cpp 15 struct Comment {
16 Comment(const std::string &Message, unsigned Line, unsigned Col)
24 typedef std::vector<Comment> CommentList;
47 EXPECT_TRUE(!Invalid) << "Invalid line number on comment " << C;
50 EXPECT_TRUE(!Invalid) << "Invalid column number on comment " << C;
52 Comments.push_back(Comment(C, CLine, CCol));
102 EXPECT_TRUE(Current == End) << "Unexpected comment \""
109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
112 const Comment &C = *Current;
114 << "Expected comment \"" << Messag
    [all...]
  /external/libvorbis/doc/
04-codec.tex 24 comment header is a non-fatal error condition.
37 is type 1, the comment header type 3 and the setup header type 5
40 identification, comment, setup.
85 \subsubsection{Comment header}
86 Comment header decode and data specification is covered in
87 \xref{vorbis:spec:comment}.
01-introduction.tex 279 \paragraph{Comment Header}
280 The comment header includes user text comments (``tags'') and a vendor
282 encoding and proper use of the comment header is described in \xref{vorbis:spec:comment}.
  /external/jhead/
jpgfile.c 50 char Comment[MAX_COMMENT_SIZE+1];
64 Comment[nch++] = (char)ch;
66 Comment[nch++] = '?';
70 Comment[nch] = '\0'; // Null terminate
73 printf("COM marker comment: %s\n",Comment);
76 strcpy(ImageInfo.Comments,Comment);
237 case M_COM: // Comment section
428 case M_COM: // Comment section
737 // Discard everything but the exif and comment sections
    [all...]
  /external/llvm/lib/MC/
MCELFStreamer.cpp 300 const MCSection *Comment = getAssembler().getContext().getELFSection(
301 ".comment", ELF::SHT_PROGBITS, ELF::SHF_MERGE | ELF::SHF_STRINGS,
304 SwitchSection(Comment);
  /art/compiler/utils/
assembler.h 368 virtual void Comment(const char* format, ...) { }
  /external/chromium_org/tools/imagediff/
image_diff_png.cc 38 // Represents a comment in the tEXt ancillary chunk of the png.
39 struct Comment {
409 explicit CommentWriter(const std::vector<Comment>& comments)
437 void AddComment(size_t pos, const Comment& comment) {
439 // A PNG comment's key can only be 79 characters long.
440 DCHECK(comment.key.length() < 79);
441 png_text_[pos].key = strdup(comment.key.substr(0, 78).c_str());
442 png_text_[pos].text = strdup(comment.text.c_str());
443 png_text_[pos].text_length = comment.text.length()
    [all...]
  /external/clang/test/Misc/
ast-dump-decl.cpp 489 namespace Comment {
  /external/aac/libMpegTPDec/include/
tp_data.h 167 UCHAR Comment[PC_COMMENTLENGTH];

Completed in 2060 milliseconds

1 2