/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_attrlastchild.java | 65 Text textNode; 72 textNode = (Text) titleAttr.getFirstChild(); 73 assertNotNull("textNodeNotNull", textNode); 74 value = textNode.getNodeValue(); 76 otherChild = textNode.getNextSibling(); 78 otherChild = textNode.getPreviousSibling();
|
hc_attrnormalize.java | 65 Text textNode; 74 textNode = doc.createTextNode("terday"); 75 retval = titleAttr.appendChild(textNode); 76 textNode = doc.createTextNode(""); 77 retval = titleAttr.appendChild(textNode);
|
hc_attrremovechild1.java | 64 Text textNode; 72 textNode = (Text) titleAttr.getFirstChild(); 73 assertNotNull("attrChildNotNull", textNode); 74 retval = titleAttr.removeChild(textNode);
|
hc_attrremovechild2.java | 64 Text textNode; 71 textNode = doc.createTextNode("Yesterday"); 76 retval = titleAttr.removeChild(textNode);
|
hc_attrreplacechild1.java | 65 Text textNode; 73 textNode = doc.createTextNode("terday"); 76 retval = titleAttr.replaceChild(textNode, firstChild);
|
hc_attrsetvalue2.java | 63 Text textNode; 72 textNode = doc.createTextNode("terday"); 73 retval = titleAttr.appendChild(textNode);
|
hc_elementnormalize.java | 65 Text textNode; 70 textNode = doc.createTextNode(""); 71 retNode = testName.appendChild(textNode); 72 textNode = doc.createTextNode(",000"); 73 retNode = testName.appendChild(textNode);
|
hc_nodechildnodesappendchild.java | 77 Node textNode;
|
hc_textindexsizeerrnegativeoffset.java | 75 Text textNode; 80 textNode = (Text) nameNode.getFirstChild(); 85 splitNode = textNode.splitText(-69);
|
textindexsizeerrnegativeoffset.java | 76 Text textNode; 81 textNode = (Text) nameNode.getFirstChild(); 86 splitNode = textNode.splitText(-69);
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
normalize01.java | 75 CharacterData textNode; 83 textNode = (CharacterData) textList.item(0); 84 data = textNode.getData();
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
LocalName.java | 82 Node textNode; 87 textNode = testEmployee.getFirstChild(); 88 localName = textNode.getLocalName();
|
Normalize.java | 80 CharacterData textNode; 88 textNode = (CharacterData) textList.item(0); 89 data = textNode.getData();
|
Prefix.java | 89 Node textNode; 95 textNode = testEmployee.getFirstChild(); 96 prefix = textNode.getPrefix();
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
InsertParagraphSeparatorCommand.cpp | 349 Text* textNode = toText(leadingWhitespace.deprecatedNode()); 350 ASSERT(!textNode->renderer() || textNode->renderer()->style()->collapseWhiteSpace()); 351 replaceTextInNodePreservingMarkers(textNode, leadingWhitespace.deprecatedEditingOffset(), 1, nonBreakingSpaceString()); 357 RefPtr<Text> textNode = toText(insertionPosition.containerNode()); 358 bool atEnd = static_cast<unsigned>(insertionPosition.offsetInContainerNode()) >= textNode->length(); 360 splitTextNode(textNode, insertionPosition.offsetInContainerNode()); 361 positionAfterSplit = firstPositionInNode(textNode.get()); 362 insertionPosition.moveToPosition(textNode->previousSibling(), insertionPosition.offsetInContainerNode());
|
ApplyBlockElementCommand.cpp | 158 Node* textNode = position.containerNode(); 160 if (!textNode || !textNode->isTextNode() || offset < 0 || offset >= textNode->maxCharacterOffset()) 164 String textAtPosition = toText(textNode)->substringData(offset, 1, exceptionState);
|
DeleteSelectionCommand.cpp | 576 Text* textNode = toText(m_leadingWhitespace.deprecatedNode()); 577 ASSERT(!textNode->renderer() || textNode->renderer()->style()->collapseWhiteSpace()); 578 replaceTextInNodePreservingMarkers(textNode, m_leadingWhitespace.deprecatedEditingOffset(), 1, nonBreakingSpaceString()); 581 Text* textNode = toText(m_trailingWhitespace.deprecatedNode()); 582 ASSERT(!textNode->renderer() ||textNode->renderer()->style()->collapseWhiteSpace()); 583 replaceTextInNodePreservingMarkers(textNode, m_trailingWhitespace.deprecatedEditingOffset(), 1, nonBreakingSpaceString()); [all...] |
VisiblePosition.cpp | 643 Text* textNode = pos.containerText(); 644 unsigned length = textNode->length(); 648 return textNode->data().characterStartingAt(offset);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
TextPrompt.js | 595 var textNode = document.createTextNode(text); 596 this.autoCompleteElement.parentNode.replaceChild(textNode, this.autoCompleteElement); 600 finalSelectionRange.setStart(textNode, text.length); 601 finalSelectionRange.setEnd(textNode, text.length);
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
SelectorChecker.cpp | 526 Text* textNode = toText(n); 527 if (!textNode->data().isEmpty()) { [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
PrerenderingTest.cpp | 229 WebNode textNode = consoleListItem.firstChild(); 230 ASSERT(textNode.nodeName() == "#text"); 232 return textNode.nodeValue().utf8().data();
|
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/ |
tinyxmlparser.cpp | 1192 TiXmlText* textNode = new TiXmlText( "" ); 1194 if ( !textNode ) 1201 p = textNode->Parse( p, data, encoding ); 1207 p = textNode->Parse( pWithWhiteSpace, data, encoding ); 1210 if ( !textNode->Blank() ) 1211 LinkEndChild( textNode ); 1213 delete textNode; [all...] |
/external/sfntly/cpp/src/test/tinyxml/ |
tinyxmlparser.cpp | 1192 TiXmlText* textNode = new TiXmlText( "" ); 1194 if ( !textNode ) 1201 p = textNode->Parse( p, data, encoding ); 1207 p = textNode->Parse( pWithWhiteSpace, data, encoding ); 1210 if ( !textNode->Blank() ) 1211 LinkEndChild( textNode ); 1213 delete textNode; [all...] |
/external/tinyxml/ |
tinyxmlparser.cpp | 1147 TiXmlText* textNode = new TiXmlText( "" ); 1149 if ( !textNode ) 1157 p = textNode->Parse( p, data, encoding ); 1163 p = textNode->Parse( pWithWhiteSpace, data, encoding ); 1166 if ( !textNode->Blank() ) 1167 LinkEndChild( textNode ); 1169 delete textNode; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLElement.cpp | 469 RefPtr<Text> textNode = document().createTextNode(text); 470 insertAdjacent(where, textNode.get(), exceptionState); [all...] |