/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 | 47 Comment::Comment(MacroAssembler* masm, const char* msg) 53 Comment::~Comment() {
|
macro-assembler.h | 99 class Comment { 101 Comment(MacroAssembler* masm, const char* msg); 102 ~Comment(); 111 class Comment { 113 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/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 | 455 const MCSection *Comment = 456 getContext().getELFSection(".comment", ELF::SHT_PROGBITS, 463 getStreamer().SwitchSection(Comment);
|
/external/clang/lib/Frontend/ |
VerifyDiagnosticsClient.cpp | 227 /// ParseDirective - Go through the comment and see if it indicates expected 233 // A single comment may contain multiple directives. 342 Tok.setKind(tok::comment); 345 if (!Tok.is(tok::comment)) continue; 347 std::string Comment = PP.getSpelling(Tok); 348 if (Comment.empty()) continue; 351 ParseDirective(&Comment[0], Comment.size(), ED, PP, Tok.getLocation());
|
/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/webkit/Tools/Scripts/webkitpy/thirdparty/ |
BeautifulSoup.py | 448 class Comment(NavigableString): [all...] |
/external/v8/src/arm/ |
lithium-codegen-arm.cc | 115 void LCodeGen::Comment(const char* format, ...) { 170 Comment(";;; Allocate local context"); 202 Comment(";;; End allocate local context"); 226 Comment(";;; @%d: %s.", current_instruction_, instr->Mnemonic()); 743 Comment(";;; B%d - LOOP entry", label->block_id()); 745 Comment(";;; B%d", label->block_id()); [all...] |
/external/v8/src/ia32/ |
lithium-codegen-ia32.cc | 101 void LCodeGen::Comment(const char* format, ...) { 163 Comment(";;; Allocate local context"); 196 Comment(";;; End allocate local context"); 222 Comment(";;; @%d: %s.", current_instruction_, instr->Mnemonic()); 686 Comment(";;; B%d - LOOP entry", label->block_id()); 688 Comment(";;; B%d", label->block_id()); [all...] |
/external/v8/src/x64/ |
lithium-codegen-x64.cc | 115 void LCodeGen::Comment(const char* format, ...) { 178 Comment(";;; Allocate local context"); 211 Comment(";;; End allocate local context"); 235 Comment(";;; @%d: %s.", current_instruction_, instr->Mnemonic()); 687 Comment(";;; B%d - LOOP entry", label->block_id()); 689 Comment(";;; B%d", label->block_id()); [all...] |
/prebuilt/sdk/10/ |
android.jar | |
/prebuilt/sdk/12/ |
android.jar | |
/prebuilt/sdk/13/ |
android.jar | |
/prebuilt/sdk/4/ |
android.jar | |
/prebuilt/sdk/7/ |
android.jar | |
/prebuilt/sdk/8/ |
android.jar | |
/prebuilt/common/ant/ |
ant.jar | |