HomeSort by relevance Sort by last modified time
    Searched defs:childBefore (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/dom/
RangeBoundaryPoint.h 42 Node* childBefore() const;
46 void set(PassRefPtr<Node> container, int offset, Node* childBefore);
78 inline Node* RangeBoundaryPoint::childBefore() const
111 inline void RangeBoundaryPoint::set(PassRefPtr<Node> container, int offset, Node* childBefore)
115 ASSERT(childBefore == (offset ? container->childNode(offset - 1) : 0));
118 m_childBeforeBoundary = childBefore;
179 if (a.childBefore() || b.childBefore()) {
180 if (a.childBefore() != b.childBefore())
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuView.java 563 final View childBefore = getChildAt(childIndex - 1);
566 if (childIndex < getChildCount() && childBefore instanceof ActionMenuChildView) {
567 result |= ((ActionMenuChildView) childBefore).needsDividerAfter();
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ActionMenuView.java 559 final View childBefore = getChildAt(childIndex - 1);
562 if (childIndex < getChildCount() && childBefore instanceof ActionMenuChildView) {
563 result |= ((ActionMenuChildView) childBefore).needsDividerAfter();

Completed in 115 milliseconds