Home
last modified time | relevance | path

Searched refs:ProcessingInstruction (Results 1 – 25 of 49) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
DProcessingInstruction.cpp38 inline ProcessingInstruction::ProcessingInstruction(Document* document, const String& target, const… in ProcessingInstruction() function in WebCore::ProcessingInstruction
53 PassRefPtr<ProcessingInstruction> ProcessingInstruction::create(Document* document, const String& t… in create()
55 return adoptRef(new ProcessingInstruction(document, target, data)); in create()
58 ProcessingInstruction::~ProcessingInstruction() in ~ProcessingInstruction()
67 void ProcessingInstruction::setData(const String& data, ExceptionCode&) in setData()
75 String ProcessingInstruction::nodeName() const in nodeName()
80 Node::NodeType ProcessingInstruction::nodeType() const in nodeType()
85 String ProcessingInstruction::nodeValue() const in nodeValue()
90 void ProcessingInstruction::setNodeValue(const String& nodeValue, ExceptionCode& ec) in setNodeValue()
96 PassRefPtr<Node> ProcessingInstruction::cloneNode(bool /*deep*/) in cloneNode()
[all …]
DProcessingInstruction.h34 class ProcessingInstruction : public ContainerNode, private CachedResourceClient {
36 …static PassRefPtr<ProcessingInstruction> create(Document*, const String& target, const String& dat…
37 virtual ~ProcessingInstruction();
57 ProcessingInstruction(Document*, const String& target, const String& data);
DProcessingInstruction.idl23 interface [CustomMarkFunction] ProcessingInstruction : Node {
DRange.cpp651 return static_cast<ProcessingInstruction*>(node)->data().length(); in lengthOfContentsInNode()
795 ASSERT(endOffset <= static_cast<ProcessingInstruction*>(container)->data().length()); in processContentsBetweenOffsets()
797 …RefPtr<ProcessingInstruction> c = static_pointer_cast<ProcessingInstruction>(container->cloneNode(… in processContentsBetweenOffsets()
806 ProcessingInstruction* pi = static_cast<ProcessingInstruction*>(container); in processContentsBetweenOffsets()
1132 … if (static_cast<unsigned>(offset) > static_cast<ProcessingInstruction*>(n)->data().length()) in checkNodeWOffset()
DXMLDocumentParserQt.cpp441 case QXmlStreamReader::ProcessingInstruction: { in parse()
632 RefPtr<ProcessingInstruction> pi = document()->createProcessingInstruction( in parseProcessingInstruction()
DDocument.h106 class ProcessingInstruction; variable
323 …PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& …
897 void applyXSLTransform(ProcessingInstruction* pi);
DDocument.cpp747 PassRefPtr<ProcessingInstruction> Document::createProcessingInstruction(const String& target, const… in createProcessingInstruction()
757 return ProcessingInstruction::create(this, target, data); in createProcessingInstruction()
3060 ProcessingInstruction* pi = static_cast<ProcessingInstruction*>(n); in recalcStyleSelector()
4086 void Document::applyXSLTransform(ProcessingInstruction* pi) in applyXSLTransform()
DDocument.idl42 … [OldStyleObjC, ReturnsNew] ProcessingInstruction createProcessingInstruction(in DOMString target,
Dxml_expat_tokenizer.cpp590 RefPtr<ProcessingInstruction> pi = m_doc->createProcessingInstruction( in processingInstruction()
DXMLDocumentParserLibxml2.cpp974 RefPtr<ProcessingInstruction> pi = document()->createProcessingInstruction( in processingInstruction()
/external/webkit/Source/WebCore/xml/
DXSLStyleSheet.h50 …static PassRefPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalU… in create()
54 …static PassRefPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, const KURL& fin… in createEmbedded()
DXMLTreeViewer.h40 class ProcessingInstruction; variable
DXPathFunctions.cpp371 return static_cast<ProcessingInstruction*>(node)->target(); in expandedNameLocalPart()
/external/markdown/markdown/
Dhtml4.py45 ProcessingInstruction = markdown.etree.ProcessingInstruction variable
133 elif tag is ProcessingInstruction:
/external/webkit/Source/WebCore/bindings/js/
DJSProcessingInstructionCustom.cpp39 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(impl())->sheet()) in markChildren()
DJSNodeCustom.cpp140 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(node)->sheet()) { in isObservable()
278 wrapper = CREATE_DOM_NODE_WRAPPER(exec, globalObject, ProcessingInstruction, node); in createWrapperInline()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DTreeWalker.java30 import org.w3c.dom.ProcessingInstruction;
371 ProcessingInstruction pi = (ProcessingInstruction) node; in startNode()
DUnImplNode.java39 import org.w3c.dom.ProcessingInstruction;
895 public ProcessingInstruction createProcessingInstruction( in createProcessingInstruction()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DTreeWalker.java32 import org.w3c.dom.ProcessingInstruction;
366 ProcessingInstruction pi = (ProcessingInstruction) node; in startNode()
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DDOM3TreeWalker.java51 import org.w3c.dom.ProcessingInstruction;
423 serializePI((ProcessingInstruction) node); in startNode()
887 protected void serializePI(ProcessingInstruction node)
889 ProcessingInstruction pi = node;
1530 protected void isPIWellFormed(ProcessingInstruction node) { in isPIWellFormed()
/external/webkit/Source/WebCore/editing/
DMarkupAccumulator.cpp408 …struction(result, static_cast<const ProcessingInstruction*>(node)->target(), static_cast<const Pro… in appendStartMarkup()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java42 import org.w3c.dom.ProcessingInstruction;
65 ProcessingInstruction, Comment, DocumentFragment
701 public final ProcessingInstruction createProcessingInstruction( in createProcessingInstruction()
/external/webkit/Source/WebCore/bindings/objc/
DDOMObject.mm38 #import "ProcessingInstruction.h"
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8NodeCustom.cpp157 return toV8(static_cast<ProcessingInstruction*>(impl), forceNewObject); in toV8Slow()
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
DBeautifulSoup.py440 class ProcessingInstruction(NavigableString): class
1038 self._toStringSubclass(text, ProcessingInstruction)

12