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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/webkitsecurity/assets/
create-document-crash-on-attach-event.js 4 var doc = document.implementation.createDocument('', '', null); variable
5 doc.onload = function() { };
  /sdk/monkeyrunner/src/com/android/monkeyrunner/doc/
MonkeyRunnerExported.java 16 package com.android.monkeyrunner.doc;
36 String doc(); method in interface:MonkeyRunnerExported
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLFrameSetElementCustom.cpp 54 Document* doc = static_cast<HTMLFrameElement*>(frameNode)->contentDocument(); local
55 if (!doc)
57 if (Frame* frame = doc->frame())
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilXmlParser.java 56 SMILDocument doc = mContentHandler.getSmilDocument(); local
57 validateDocument(doc);
59 return doc;
62 private void validateDocument(SMILDocument doc) {
69 doc.getBody();
75 doc.getLayout();
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HyperRef.java 9 package com.vladium.emma.report.html.doc;
IContent.java 9 package com.vladium.emma.report.html.doc;
IElementList.java 9 package com.vladium.emma.report.html.doc;
TextContent.java 9 package com.vladium.emma.report.html.doc;
ElementList.java 9 package com.vladium.emma.report.html.doc;
Text.java 9 package com.vladium.emma.report.html.doc;
  /external/skia/src/ports/
SkXMLParser_tinyxml.cpp 46 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)
77 memcpy(buf, doc, len);
  /external/webkit/LayoutTests/fast/dom/Node/script-tests/
initial-values.js 5 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.nodeValue", "null")
    [all...]
  /external/webkit/Source/WebCore/dom/
DocumentType.cpp 64 Document* doc = static_cast<Document*>(parentNode()); local
65 if (!doc->doctype())
66 doc->setDocType(this);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncUnparsedEntityURI.java 49 int doc = dtm.getDocument(); local
  /external/libxml2/include/libxml/
debugXML.h 53 xmlDocPtr doc);
56 xmlDocPtr doc);
62 xmlDocPtr doc);
72 xmlDocPtr doc);
115 xmlDocPtr doc; member in struct:_xmlShellCtxt
205 xmlShell (xmlDocPtr doc,
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
JAXPTest.java 50 Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(f); local
52 System.out.println("Succesfully built DOM tree from '"+f+"', -> "+doc);
  /external/webkit/Source/WebCore/bindings/js/
JSXSLTProcessorCustom.cpp 67 Document* doc = static_cast<Document*>(static_cast<JSDocument*>(asObject(docVal))->impl()); local
68 return toJS(exec, impl()->transformToFragment(node, doc).get());
  /external/webkit/Source/WebCore/css/
CSSStyleRule.cpp 59 Document* doc = 0; local
63 doc = static_cast<CSSStyleSheet*>(ownerStyleSheet)->document();
64 if (!doc)
65 doc = ownerStyleSheet->ownerNode() ? ownerStyleSheet->ownerNode()->document() : 0;
67 if (!doc)
68 doc = m_style->node() ? m_style->node()->document() : 0;
70 if (!doc)
75 p.parseSelector(selectorText, doc, selectorList);
84 doc->styleSelectorChanged(DeferRecalcStyle);
  /external/webkit/Source/WebCore/html/
HTMLFrameOwnerElement.cpp 100 Document* doc = contentDocument(); local
101 if (doc && doc->isSVGDocument())
102 return static_cast<SVGDocument*>(doc);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentgetelementsbytagnamelength.java 64 Document doc; local
66 doc = (Document) load("staff", false);
67 nameList = doc.getElementsByTagName("name");
documentgetelementsbytagnametotallength.java 59 Document doc; local
61 doc = (Document) load("staff", false);
62 nameList = doc.getElementsByTagName("*");
documentgetimplementation.java 63 Document doc; local
66 doc = (Document) load("staff", false);
67 docImpl = doc.getImplementation();
documentgetrootnode.java 63 Document doc; local
66 doc = (Document) load("staff", false);
67 root = doc.getDocumentElement();
documentinvalidcharacterexceptioncreateattribute.java 69 Document doc; local
71 doc = (Document) load("staff", true);
76 createdAttr = doc.createAttribute("invalid^Name");
documentinvalidcharacterexceptioncreateelement.java 69 Document doc; local
71 doc = (Document) load("staff", true);
76 badElement = doc.createElement("invalid^Name");

Completed in 797 milliseconds

1 2 3 4 5 6 7 8 91011>>