Lines Matching refs:offset
41 int offset() const;
46 void set(PassRefPtr<Node> container, int offset, Node* childBefore);
47 void setOffset(int offset);
98 inline int RangeBoundaryPoint::offset() const
111 inline void RangeBoundaryPoint::set(PassRefPtr<Node> container, int offset, Node* childBefore)
114 ASSERT(offset >= 0);
115 ASSERT(childBefore == (offset ? container->childNode(offset - 1) : 0));
117 m_offsetInContainer = offset;
121 inline void RangeBoundaryPoint::setOffset(int offset)
127 m_offsetInContainer = offset;
183 if (a.offset() != b.offset())