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

  /external/webkit/Source/WebCore/editing/
SelectionController.cpp 288 unsigned positionOffset = static_cast<unsigned>(position.offsetInContainerNode());
289 if (positionOffset > offset && positionOffset < offset + oldLength)
292 // Adjust the offset if the position is after or at the end of the deleted contents (positionOffset >= offset + oldLength)
295 if ((positionOffset > offset + oldLength) || (positionOffset == offset + oldLength && (type == EndPointIsStart || oldLength)))
296 position.moveToOffset(positionOffset - oldLength + newLength);
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
ViewPager.java 178 * Page position+1 will be visible if positionOffset is nonzero.
179 * @param positionOffset Value from [0, 1) indicating the offset from the page at position.
182 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels);
212 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
    [all...]

Completed in 186 milliseconds