Searched defs:doc (Results 1 - 25 of 203) sorted by relevance

123456789

/external/webkit/Source/WebKit/win/
H A DAccessibleDocument.cpp36 AccessibleDocument::AccessibleDocument(Document* doc) argument
37 : AccessibleBase(doc->axObjectCache()->rootObject())
/external/skia/src/ports/
H A DSkXMLParser_empty.cpp15 bool SkXMLParser::parse(const char doc[], size_t len) argument
H A DSkXMLParser_tinyxml.cpp46 TiXmlDocument doc; local
48 (void)doc.Parse(buf);
49 if (doc.Error())
51 printf("tinyxml error: <%s> row[%d] col[%d]\n", doc.ErrorDesc(), doc.ErrorRow(), doc.ErrorCol());
55 walk_elem(parser, doc.RootElement());
72 bool SkXMLParser::parse(const char doc[], size_t len) argument
77 memcpy(buf, doc, len);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HTMLFrameSetElementCustom.cpp54 Document* doc = static_cast<HTMLFrameElement*>(frameNode)->contentDocument(); local
55 if (!doc)
57 if (Frame* frame = doc->frame())
/external/webkit/Source/WebCore/wml/
H A DWMLErrorHandling.cpp35 void reportWMLError(Document* doc, WMLErrorCode error) argument
37 if (!doc || error == WMLErrorUnknown)
41 XMLDocumentParser* parser = static_cast<XMLDocumentParser*>(doc->parser());
53 Frame* frame = doc->frame();
H A DWMLInsertedLegendElement.cpp28 WMLInsertedLegendElement::WMLInsertedLegendElement(const QualifiedName& tagName, Document* doc) argument
29 : WMLElement(tagName, doc)
H A DWMLPrevElement.cpp35 WMLPrevElement::WMLPrevElement(const QualifiedName& tagName, Document* doc) argument
36 : WMLTaskElement(tagName, doc)
H A DWMLRefreshElement.cpp35 WMLRefreshElement::WMLRefreshElement(const QualifiedName& tagName, Document* doc) argument
36 : WMLTaskElement(tagName, doc)
H A DWMLAccessElement.cpp35 WMLAccessElement::WMLAccessElement(const QualifiedName& tagName, Document* doc) argument
36 : WMLElement(tagName, doc)
H A DWMLAnchorElement.cpp33 WMLAnchorElement::WMLAnchorElement(const QualifiedName& tagName, Document* doc) argument
34 : WMLAElement(tagName, doc)
H A DWMLBRElement.cpp38 WMLBRElement::WMLBRElement(const QualifiedName& tagName, Document* doc) argument
39 : WMLElement(tagName, doc)
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHyperRef.java9 package com.vladium.emma.report.html.doc;
H A DIContent.java9 package com.vladium.emma.report.html.doc;
H A DElementList.java9 package com.vladium.emma.report.html.doc;
H A DHTMLWriter.java9 package com.vladium.emma.report.html.doc;
H A DIElementList.java9 package com.vladium.emma.report.html.doc;
H A DText.java9 package com.vladium.emma.report.html.doc;
H A DTextContent.java9 package com.vladium.emma.report.html.doc;
/external/webkit/LayoutTests/fast/dom/Node/script-tests/
H A Dinitial-values.js5 debug("Attribute creation using createElement on an HTML doc:")
18 debug("Attribute creation using createElementNS on an HTML doc:")
29 debug("Attribute creation using createElement on an XHTML doc:")
42 debug("Attribute creation using createElementNS on an XHTML doc:")
80 var doc = document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html", null); variable
81 shouldBe("doc.nodeName", "'#document'");
82 shouldBe("doc.localName", "null");
85 shouldBe("doc.namespaceURI", "'http://www.w3.org/1999/xhtml'");
86 shouldBe("doc.prefix", "null");
87 shouldBe("doc
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DKeyManager.java48 * @param doc The document node
58 XPathContext xctxt, int doc, QName name, XMLString ref, PrefixResolver nscontext)
82 if (kt.getKeyTableName().equals(name) && doc == kt.getDocKey())
99 new KeyTable(doc, nscontext, name,
105 if (doc == kt.getDocKey())
57 getNodeSetDTMByKey( XPathContext xctxt, int doc, QName name, XMLString ref, PrefixResolver nscontext) argument
/external/libxml2/include/libxml/
H A DdebugXML.h53 xmlDocPtr doc);
56 xmlDocPtr doc);
62 xmlDocPtr doc);
72 xmlDocPtr doc);
115 xmlDocPtr doc; member in struct:_xmlShellCtxt
205 xmlShell (xmlDocPtr doc,
/external/webkit/Source/WebCore/css/
H A DStyleSheetList.cpp34 StyleSheetList::StyleSheetList(Document* doc) argument
35 : m_doc(doc)
H A DStyleSheetList.h39 static PassRefPtr<StyleSheetList> create(Document* doc) { return adoptRef(new StyleSheetList(doc)); } argument
/external/webkit/Source/WebCore/dom/
H A DDocumentType.cpp64 Document* doc = static_cast<Document*>(parentNode()); local
65 if (!doc->doctype())
66 doc->setDocType(this);
/external/webkit/Source/WebCore/html/
H A DHTMLFrameOwnerElement.cpp100 Document* doc = contentDocument(); local
101 if (doc && doc->isSVGDocument())
102 return static_cast<SVGDocument*>(doc);

Completed in 575 milliseconds

123456789