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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h 62 visitor->trace(nextChild);
76 RefPtrWillBeMember<Node> nextChild;
263 ASSERT(!nextChild || nextChild == newNextChild);
264 nextChild = newNextChild;
273 nextChild.swap(other.nextChild);
287 ASSERT(!stringBuilder.isEmpty() || !nextChild);
295 RefPtrWillBeMember<Node> nextChild;
HTMLConstructionSite.cpp 105 if (task.nextChild)
106 task.parent->parserInsertBefore(task.child.get(), *task.nextChild);
133 Node* previousChild = task.nextChild ? task.nextChild->previousSibling() : task.parent->lastChild();
257 task.nextChild = pendingText.nextChild;
687 // The nextChild != dummy.nextChild case occurs whenever foster parenting happened and we hit a new text node "<table>a</table>b"
689 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/llvm/include/llvm/ADT/
SCCIterator.h 52 ChildItTy NextChild; ///< The next child, modified inplace during DFS.
56 : Node(Node), NextChild(Child), MinVisited(Min) {}
60 NextChild == Other.NextChild &&
156 while (VisitStack.back().NextChild != GT::child_end(VisitStack.back().Node)) {
158 NodeType *childN = *VisitStack.back().NextChild++;
181 assert(VisitStack.back().NextChild == GT::child_end(visitingN));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.cpp 247 void ContainerNode::insertBeforeCommon(Node& nextChild, Node& newChild)
257 Node* prev = nextChild.previousSibling();
259 nextChild.setPreviousSibling(&newChild);
261 ASSERT(firstChild() != nextChild);
262 ASSERT(prev->nextSibling() == nextChild);
265 ASSERT(firstChild() == nextChild);
270 newChild.setNextSibling(&nextChild);
287 void ContainerNode::parserInsertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node& nextChild)
290 ASSERT(nextChild.parentNode() == this);
294 if (nextChild.previousSibling() == newChild || &nextChild == newChild) // nothing to d
    [all...]
ContainerNode.h 186 void removeBetween(Node* previousChild, Node* nextChild, Node& oldChild);
187 void insertBeforeCommon(Node& nextChild, Node& oldChild);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollState.java 208 View nextChild = getNextChildNotGone(i);
209 if (nextChild != null) {
211 ViewState nextState = getViewStateForView(nextChild);
StackScrollAlgorithm.java 286 View nextChild = algorithmState.visibleChildren.get(childIndex + 1);
287 if (!draggedViews.contains(nextChild)) {
291 nextChild);
    [all...]
  /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_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/core/svg/
SVGUseElement.cpp 577 Node* nextChild = child->nextSibling();
579 child = nextChild;
641 Node* nextChild = child->nextSibling();
643 child = nextChild;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
treeoutline.js 118 var nextChild = this.children[index];
119 if (nextChild) {
120 nextChild.previousSibling = child;
121 child.nextSibling = nextChild;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DeleteSelectionCommand.cpp 348 RefPtrWillBeRawPtr<Node> nextChild = child->nextSibling();
350 // Bail if nextChild is no longer node's child.
351 if (nextChild && nextChild->parentNode() != node)
353 child = nextChild;
    [all...]
markup.cpp     [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ResolverDrawerLayout.java 458 final View nextChild = getChildAt(i);
459 if (nextChild.getVisibility() == GONE) {
462 clipEdge = Math.min(clipEdge, nextChild.getTop());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 378 Node nextChild = lastElement != null ? lastElement.getNextSibling() : null;
380 root.insertBefore(indentNode, nextChild);
392 root.insertBefore(element, nextChild);
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 354 DomTreeNode *nextChild() {
604 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...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
StaggeredGridLayoutManager.java 310 View nextChild = getChildAt(i + nextChildDiff);
313 // ensure child's end is below nextChild's end
315 int nextEnd = mPrimaryOrientation.getDecoratedEnd(nextChild);
323 int nextStart = mPrimaryOrientation.getDecoratedStart(nextChild);
332 LayoutParams nextLp = (LayoutParams) nextChild.getLayoutParams();
    [all...]

Completed in 3454 milliseconds

1 2