/external/webkit/Source/WebCore/dom/ |
D | ProcessingInstruction.cpp | 38 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 …]
|
D | ProcessingInstruction.h | 34 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);
|
D | ProcessingInstruction.idl | 23 interface [CustomMarkFunction] ProcessingInstruction : Node {
|
D | Range.cpp | 651 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()
|
D | XMLDocumentParserQt.cpp | 441 case QXmlStreamReader::ProcessingInstruction: { in parse() 632 RefPtr<ProcessingInstruction> pi = document()->createProcessingInstruction( in parseProcessingInstruction()
|
D | Document.h | 106 class ProcessingInstruction; variable 323 …PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& … 897 void applyXSLTransform(ProcessingInstruction* pi);
|
D | Document.cpp | 747 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()
|
D | Document.idl | 42 … [OldStyleObjC, ReturnsNew] ProcessingInstruction createProcessingInstruction(in DOMString target,
|
D | xml_expat_tokenizer.cpp | 590 RefPtr<ProcessingInstruction> pi = m_doc->createProcessingInstruction( in processingInstruction()
|
D | XMLDocumentParserLibxml2.cpp | 974 RefPtr<ProcessingInstruction> pi = document()->createProcessingInstruction( in processingInstruction()
|
/external/webkit/Source/WebCore/xml/ |
D | XSLStyleSheet.h | 50 …static PassRefPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalU… in create() 54 …static PassRefPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, const KURL& fin… in createEmbedded()
|
D | XMLTreeViewer.h | 40 class ProcessingInstruction; variable
|
D | XPathFunctions.cpp | 371 return static_cast<ProcessingInstruction*>(node)->target(); in expandedNameLocalPart()
|
/external/markdown/markdown/ |
D | html4.py | 45 ProcessingInstruction = markdown.etree.ProcessingInstruction variable 133 elif tag is ProcessingInstruction:
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSProcessingInstructionCustom.cpp | 39 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(impl())->sheet()) in markChildren()
|
D | JSNodeCustom.cpp | 140 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/ |
D | TreeWalker.java | 30 import org.w3c.dom.ProcessingInstruction; 371 ProcessingInstruction pi = (ProcessingInstruction) node; in startNode()
|
D | UnImplNode.java | 39 import org.w3c.dom.ProcessingInstruction; 895 public ProcessingInstruction createProcessingInstruction( in createProcessingInstruction()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | TreeWalker.java | 32 import org.w3c.dom.ProcessingInstruction; 366 ProcessingInstruction pi = (ProcessingInstruction) node; in startNode()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
D | DOM3TreeWalker.java | 51 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/ |
D | MarkupAccumulator.cpp | 408 …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/ |
D | DTMNodeProxy.java | 42 import org.w3c.dom.ProcessingInstruction; 65 ProcessingInstruction, Comment, DocumentFragment 701 public final ProcessingInstruction createProcessingInstruction( in createProcessingInstruction()
|
/external/webkit/Source/WebCore/bindings/objc/ |
D | DOMObject.mm | 38 #import "ProcessingInstruction.h"
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8NodeCustom.cpp | 157 return toV8(static_cast<ProcessingInstruction*>(impl), forceNewObject); in toV8Slow()
|
/external/webkit/Tools/Scripts/webkitpy/thirdparty/ |
D | BeautifulSoup.py | 440 class ProcessingInstruction(NavigableString): class 1038 self._toStringSubclass(text, ProcessingInstruction)
|