/external/gtest/test/ |
D | gtest_xml_test_utils.py | 70 self.assertEquals(expected_node.nodeValue, actual_node.nodeValue) 123 self.assert_(child.nodeValue.isspace()) 152 cdata = re.sub(r"^.*/(.*:)\d+\n", "\\1*\n", child.nodeValue) 154 child.nodeValue = re.sub(r"\nStack trace:\n(.|\n)*",
|
/external/webkit/WebCore/inspector/front-end/ |
D | utilities.js | 130 var start = (node === this ? (offset - 1) : (node.nodeValue.length - 1)); 132 if (stopCharacters.indexOf(node.nodeValue[i]) !== -1) { 166 for (var i = start; i < node.nodeValue.length; ++i) { 167 if (stopCharacters.indexOf(node.nodeValue[i]) !== -1) { 183 …endOffset = stayWithinNode.nodeType === Node.TEXT_NODE ? stayWithinNode.nodeValue.length : stayWit… 492 if (!this.nodeValue.length) 494 return this.nodeValue.match(/^[\s\xA0]+$/); 573 return "\"" + this.nodeValue + "\""; 576 return "<!--" + this.nodeValue + "-->"; 606 preview += currentNode.nodeValue.escapeHTML(); [all …]
|
D | TextPrompt.js | 237 if (node.nodeType === Node.TEXT_NODE && selectionRange.startOffset < node.nodeValue.length) 242 if (node.nodeType === Node.TEXT_NODE && node.nodeValue.length) {
|
D | ElementsTreeOutline.js | 531 node.nodeValue = node.nodeValue.replace(/\u200B/g, ""); 605 textNode.nodeValue = newText;
|
D | ElementsPanel.js | 1156 var data = "<!--" + this.focusedDOMNode.nodeValue + "-->"; 1161 var data = this.focusedDOMNode.nodeValue;
|
/external/webkit/WebCore/xml/ |
D | XPathUtil.cpp | 51 return node->nodeValue(); in stringValue() 58 str += n->nodeValue(); in stringValue()
|
D | XPathNamespace.h | 50 virtual String nodeValue() const;
|
D | XPathNamespace.cpp | 68 String XPathNamespace::nodeValue() const in nodeValue() function in WebCore::XPathNamespace
|
/external/webkit/WebCore/dom/ |
D | ProcessingInstruction.cpp | 85 String ProcessingInstruction::nodeValue() const in nodeValue() function in WebCore::ProcessingInstruction 90 void ProcessingInstruction::setNodeValue(const String& nodeValue, ExceptionCode& ec) in setNodeValue() argument 93 setData(nodeValue, ec); in setNodeValue()
|
D | CharacterData.cpp | 180 String CharacterData::nodeValue() const in nodeValue() function in WebCore::CharacterData 190 void CharacterData::setNodeValue(const String& nodeValue, ExceptionCode& ec) in setNodeValue() argument 192 setData(nodeValue, ec); in setNodeValue()
|
D | CharacterData.h | 51 virtual String nodeValue() const;
|
D | Attr.h | 65 virtual String nodeValue() const;
|
D | ProcessingInstruction.h | 50 virtual String nodeValue() const;
|
D | StyleElement.cpp | 68 append(text, c->nodeValue()); in process()
|
D | OptionElement.cpp | 60 text += n->nodeValue(); in collectOptionText()
|
D | Attr.cpp | 99 String Attr::nodeValue() const in nodeValue() function in WebCore::Attr
|
D | Node.cpp | 420 String Node::nodeValue() const in nodeValue() function in WebCore::Node 1593 if (nodeValue() != other->nodeValue()) in isEqualNode() 1802 content.append(static_cast<const CharacterData*>(this)->CharacterData::nodeValue()); in appendTextContent() 1806 …ontent.append(static_cast<const ProcessingInstruction*>(this)->ProcessingInstruction::nodeValue()); in appendTextContent() 2005 String value = nodeValue(); in showNode()
|
D | Text.cpp | 338 s = nodeValue(); in formatForDebugger()
|
D | Node.idl | 54 … attribute [ConvertNullStringTo=Null, ConvertNullToNullString] DOMString nodeValue
|
/external/webkit/WebCore/html/ |
D | HTMLTitleElement.cpp | 61 m_title += c->nodeValue(); in childrenChanged()
|
/external/webkit/WebKitTools/Scripts/ |
D | update-sources-list.py | 56 sourcesText = node.nodeValue.strip()
|
/external/webkit/WebKit/win/ |
D | DOMCoreClasses.h | 131 virtual HRESULT STDMETHODCALLTYPE nodeValue( 357 virtual HRESULT STDMETHODCALLTYPE nodeValue( in nodeValue() function 358 /* [retval][out] */ BSTR *result) { return DOMNode::nodeValue(result); } in nodeValue() 589 virtual HRESULT STDMETHODCALLTYPE nodeValue( in nodeValue() function 590 /* [retval][out] */ BSTR *result) { return DOMNode::nodeValue(result); } in nodeValue()
|
D | DOMHTMLClasses.h | 203 virtual HRESULT STDMETHODCALLTYPE nodeValue( in nodeValue() function 204 /* [retval][out] */ BSTR *result) { return DOMDocument::nodeValue(result); } in nodeValue() 477 virtual HRESULT STDMETHODCALLTYPE nodeValue( in nodeValue() function 478 /* [retval][out] */ BSTR *result) { return DOMElement::nodeValue(result); } in nodeValue() 736 virtual HRESULT STDMETHODCALLTYPE nodeValue( in nodeValue() function 737 /* [retval][out] */ BSTR *result) { return DOMHTMLElement::nodeValue(result); } in nodeValue() 1041 virtual HRESULT STDMETHODCALLTYPE nodeValue( in nodeValue() function 1042 /* [retval][out] */ BSTR *result) { return DOMHTMLElement::nodeValue(result); } in nodeValue() 1365 virtual HRESULT STDMETHODCALLTYPE nodeValue( in nodeValue() function 1366 /* [retval][out] */ BSTR *result) { return DOMHTMLElement::nodeValue(result); } in nodeValue() [all …]
|
/external/webkit/WebCore/editing/ |
D | markup.cpp | 216 return node->nodeValue(); in stringValueForRange() 218 String str = node->nodeValue(); in stringValueForRange() 229 String str = node->nodeValue(); in ucharRange() 419 append(result, static_cast<const Comment*>(node)->nodeValue()); in appendStartMarkup()
|
/external/webkit/WebCore/page/mac/ |
D | FrameMac.mm | 166 String nodeString = n->nodeValue(); 212 String nodeString = n->nodeValue();
|