HomeSort by relevance Sort by last modified time
    Searched full:nextchild (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h 66 RefPtr<Node> nextChild;
251 ASSERT(!nextChild || nextChild == newNextChild);
252 nextChild = newNextChild;
261 nextChild.swap(other.nextChild);
275 ASSERT(!stringBuilder.isEmpty() || !nextChild);
281 RefPtr<Node> nextChild;
HTMLConstructionSite.cpp 104 if (task.nextChild)
105 task.parent->parserInsertBefore(task.child.get(), *task.nextChild);
130 Node* previousChild = task.nextChild ? task.nextChild->previousSibling() : task.parent->lastChild();
254 task.nextChild = pendingText.nextChild;
674 // The nextChild != dummy.nextChild case occurs whenever foster parenting happened and we hit a new text node "<table>a</table>b"
676 if (!m_pendingText.isEmpty() && (m_pendingText.parent != dummyTask.parent || m_pendingText.nextChild != dummyTask.nextChild))
    [all...]
  /external/chromium_org/remoting/host/
log_to_server_unittest.cc 55 if (log_stanza->NextChild()) {
62 if (log_entry->NextChild()) {
76 if (log_stanza->NextChild()) {
83 log_entry = log_entry->NextChild()->AsElement();
87 if (log_entry->NextChild()) {
109 if (log_stanza->NextChild()) {
116 if (log_entry->NextChild()) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.cpp 235 void ContainerNode::insertBeforeCommon(Node& nextChild, Node& newChild)
244 Node* prev = nextChild.previousSibling();
246 nextChild.setPreviousSibling(&newChild);
248 ASSERT(m_firstChild != nextChild);
249 ASSERT(prev->nextSibling() == nextChild);
252 ASSERT(m_firstChild == nextChild);
257 newChild.setNextSibling(&nextChild);
260 void ContainerNode::parserInsertBefore(PassRefPtr<Node> newChild, Node& nextChild)
263 ASSERT(nextChild.parentNode() == this);
267 if (nextChild.previousSibling() == newChild || nextChild == newChild) // nothing to d
    [all...]
ContainerNode.h 149 void removeBetween(Node* previousChild, Node* nextChild, Node& oldChild);
150 void insertBeforeCommon(Node& nextChild, Node& oldChild);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
discoitemsquerytask.cc 54 child = child->NextChild()) {
pubsub_task.cc 156 child = child->NextChild()) {
183 child = child->NextChild()) {
xmppengineimpl_iq.cc 227 child = child->NextChild()) {
  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlelement.h 52 XmlChild * NextChild() { return pNextChild_; }
53 const XmlChild * NextChild() const { return pNextChild_; }
xmlelement.cc 117 for (pChild = elt.pFirstChild_; pChild; pChild = pChild->NextChild()) {
452 next_child = child->NextChild();
xmlprinter.cc 142 pchild = pchild->NextChild();
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlelement_unittest.cc 75 elt.FirstChild()->AsElement()->FirstChild()->NextChild();
179 pelCopy = new XmlElement(*(element->FirstChild()->NextChild()->AsElement()));
212 EXPECT_EQ(element->FirstChild()->NextChild(),
xmlelement.h 46 XmlChild* NextChild() { return next_child_; }
47 const XmlChild* NextChild() const { return next_child_; }
xmlprinter.cc 138 child = child->NextChild();
xmlelement.cc 108 for (pChild = elt.first_child_; pChild; pChild = pChild->NextChild()) {
455 next_child = child->NextChild();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
CounterNode.cpp 77 CounterNode* nextChild = child->m_nextSibling;
88 child = nextChild;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
treeoutline.js 117 var nextChild = this.children[index];
118 if (nextChild) {
119 nextChild.previousSibling = child;
120 child.nextSibling = nextChild;
DataGrid.js     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DeleteSelectionCommand.cpp 358 RefPtr<Node> nextChild = child->nextSibling();
360 // Bail if nextChild is no longer node's child.
361 if (nextChild && nextChild->parentNode() != node)
363 child = nextChild;
    [all...]
markup.cpp     [all...]
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppengineimpl_iq.cc 227 child = child->NextChild()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 375 Node nextChild = lastElement != null ? lastElement.getNextSibling() : null;
377 root.insertBefore(indentNode, nextChild);
389 root.insertBefore(element, nextChild);
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
lscript.php 112 'next', 'nextLayer', 'nextSelect', 'nextChannel', 'nextChild', 'nl',
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 363 DomTreeNode *nextChild() {
609 DomTreeNode *child = NodeToProcess->nextChild();
  /external/libmtp/src/
ptp-pack.c 1817 uint32_t nextchild = dtoh32a(cur + ptp_canon_dir_nextchild); local
1832 uint32_t nextchild = dtoh32a(cur + ptp_canon_dir_nextchild); local
    [all...]

Completed in 1009 milliseconds

1 2