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

1 2

  /external/webkit/Source/WebCore/dom/
Comment.h 30 class Comment : public CharacterData {
32 static PassRefPtr<Comment> create(Document*, const String&);
35 Comment(Document*, const String&);
Comment.cpp 23 #include "Comment.h"
29 inline Comment::Comment(Document* document, const String& text)
34 PassRefPtr<Comment> Comment::create(Document* document, const String& text)
36 return adoptRef(new Comment(document, text));
39 String Comment::nodeName() const
44 Node::NodeType Comment::nodeType() const
49 PassRefPtr<Node> Comment::cloneNode(bool /*deep*/)
54 bool Comment::childTypeAllowed(NodeType) cons
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
Comment.java 17 * content of a comment, i.e., all the characters between the starting '
19 * the definition of a comment in XML, and, in practice, HTML, although some
20 * HTML tools may implement the full SGML comment structure.
21 * <p> No lexical check is done on the content of a comment and it is
23 * (double-hyphen) in the content, which is illegal in a comment per section
29 public interface Comment extends CharacterData {
  /external/v8/src/
codegen.cc 46 Comment::Comment(MacroAssembler* masm, const char* msg)
52 Comment::~Comment() {
macro-assembler.h 135 class Comment {
137 Comment(MacroAssembler* masm, const char* msg);
138 ~Comment();
147 class Comment {
149 Comment(MacroAssembler*, const char*) {}
  /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/webkit/Source/WebCore/html/parser/
CSSPreloadScanner.h 50 Comment,
HTMLToken.h 43 Comment,
132 m_type = Comment;
166 ASSERT(m_type == Comment);
276 const DataVector& comment() const function in class:WebCore::HTMLToken
278 ASSERT(m_type == Comment);
367 // "data" for Comment
406 case HTMLToken::Comment:
407 m_data = String(token.comment().data(), token.comment().size());
469 const String& comment() cons function in class:WebCore::AtomicHTMLToken
    [all...]
  /build/tools/releasetools/
edify_generator.py 149 def Comment(self, comment):
150 """Write a comment into the update script."""
152 for i in comment.split("\n"):
  /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);
235 case M_COM: // Comment section
424 case M_COM: // Comment section
733 // Discard everything but the exif and comment sections
    [all...]
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 507 const MCSection *Comment =
508 getContext().getELFSection(".comment", ELF::SHT_PROGBITS,
515 getStreamer().SwitchSection(Comment);
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/
AndroidManifestNode.java 53 PermissionTree, Provider, Receiver, Service, UsesLibrary, UsesPermission, UsesSdk, Comment,
130 case Comment:
131 nodeName = "comment";
390 if ((getNodeType() != NodeType.Unknown) && (getNodeType() != NodeType.Comment))
414 if ((getNodeType() != NodeType.Unknown) && (getNodeType() != NodeType.Comment))
  /external/aac/libMpegTPDec/include/
tp_data.h 164 UCHAR Comment[PC_COMMENTLENGTH];
  /external/aac/libMpegTPEnc/include/
tp_data.h 164 UCHAR Comment[PC_COMMENTLENGTH];
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 77 // Attach comment handler on first invocation.
100 // Detach comment handler once last active source file completed.
264 /// ParseDirective - Go through the comment and see if it indicates expected
270 // A single comment may contain multiple directives.
428 SourceRange Comment) {
430 SourceLocation CommentBegin = Comment.getBegin();
433 StringRef C(CommentRaw, SM.getCharacterData(Comment.getEnd()) - CommentRaw);
495 Tok.setKind(tok::comment);
498 if (!Tok.is(tok::comment)) continue;
500 std::string Comment = RawLex.getSpelling(Tok, SM, LangOpts)
    [all...]
  /external/doclava/src/com/google/doclava/
Comment.java 23 public class Comment {
43 public Comment(String text, ContainerInfo base, SourcePositionInfo sp) {
211 * Finds the index of the start of a new block comment or -1 if there are
215 * @return The index of the start of a new block comment or -1 if there are
238 // found a new block comment because we're at the beginning of a line
250 // some whitespace character, so keep looking, we might be at a new block comment
320 Errors.error(Errors.MISSING_COMMENT, pos, "@deprecated tag with no explanatory comment");
333 Comment c = tag.description();
  /external/clang/include/clang/AST/
Comment.h 1 //===--- Comment.h - Comment AST nodes --------------------------*- C++ -*-===//
10 // This file defines comment AST nodes.
30 /// Any part of the comment.
32 class Comment {
41 friend class Comment;
67 /// True if this comment AST node contains only whitespace.
88 /// spelling in comment (plain <br> would not set this flag).
101 /// True if this comment AST node contains only whitespace.
123 /// True if direction was specified explicitly in the comment
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 448 class Comment(NavigableString):
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 282 CXComment Comment) {
285 enum CXCommentKind Kind = clang_Comment_getKind(Comment);
299 clang_TextComment_getText(Comment));
300 if (clang_Comment_isWhitespace(Comment))
302 if (clang_InlineContentComment_hasTrailingNewline(Comment))
309 clang_InlineCommandComment_getCommandName(Comment));
310 switch (clang_InlineCommandComment_getRenderKind(Comment)) {
324 for (i = 0, e = clang_InlineCommandComment_getNumArgs(Comment);
328 clang_InlineCommandComment_getArgText(Comment, i));
330 if (clang_InlineContentComment_hasTrailingNewline(Comment))
    [all...]
  /external/v8/src/arm/
lithium-codegen-arm.cc 109 void LCodeGen::Comment(const char* format, ...) {
178 Comment(";;; Allocate local context");
208 Comment(";;; End allocate local context");
232 Comment(";;; @%d: %s.", current_instruction_, instr->Mnemonic());
247 Comment(";;; Deferred code @%d: %s.",
813 Comment(";;; B%d - LOOP entry", label->block_id());
815 Comment(";;; B%d", label->block_id());
    [all...]
  /external/v8/src/ia32/
lithium-codegen-ia32.cc 113 void LCodeGen::Comment(const char* format, ...) {
190 Comment(";;; Allocate local context");
224 Comment(";;; End allocate local context");
250 Comment(";;; @%d: %s.", current_instruction_, instr->Mnemonic());
265 Comment(";;; Deferred code @%d: %s.",
721 Comment(";;; B%d - LOOP entry", label->block_id());
723 Comment(";;; B%d", label->block_id());
    [all...]
  /external/v8/src/mips/
lithium-codegen-mips.cc 107 void LCodeGen::Comment(const char* format, ...) {
176 Comment(";;; Allocate local context");
206 Comment(";;; End allocate local context");
231 Comment(";;; @%d: %s.", current_instruction_, instr->Mnemonic());
245 Comment(";;; Deferred code @%d: %s.",
776 Comment(";;; B%d - LOOP entry", label->block_id());
778 Comment(";;; B%d", label->block_id());
    [all...]

Completed in 429 milliseconds

1 2