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

  /external/webkit/Source/WebCore/rendering/svg/
SVGTextQuery.cpp 171 unsigned positionOffset = 0;
178 for (; textMetricsOffset < textMetricsSize && positionOffset < positionSize; ++textMetricsOffset) {
182 if (positionOffset < boxStart) {
183 positionOffset += metrics.length();
188 if (positionOffset >= boxStart + boxLength)
192 if (startPosition == static_cast<int>(positionOffset))
196 if (endPosition == static_cast<int>(positionOffset))
200 if (lastPositionOffset != -1 && lastPositionOffset - positionOffset > 1) {
201 if (alterStartPosition && startPosition > lastPositionOffset && startPosition < static_cast<int>(positionOffset)) {
206 if (alterEndPosition && endPosition > lastPositionOffset && endPosition < static_cast<int>(positionOffset)) {
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
Interpolator.java 72 float positionOffset = (oldVelocity * secondsDelta) + scaledAcceleration;
85 return positionOffset;
  /frameworks/support/v4/java/android/support/v4/view/
PagerTitleStrip.java 200 void updateTextPositions(int position, float positionOffset) {
203 } else if (positionOffset == mLastKnownPositionOffset) {
222 float currOffset = positionOffset + 0.5f;
242 mLastKnownPositionOffset = positionOffset;
295 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
296 if (positionOffset > 0.5f) {
300 updateTextPositions(position, positionOffset);
ViewPager.java 208 * Page position+1 will be visible if positionOffset is nonzero.
209 * @param positionOffset Value from [0, 1) indicating the offset from the page at position.
212 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels);
242 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
    [all...]
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
ActionBarTabsPager.java 130 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentTabsPager.java 159 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailLayoutController.java 423 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
431 int x = (int) ((position + positionOffset) *
  /packages/apps/Browser/src/com/android/browser/
ComboViewActivity.java 211 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
  /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...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java 617 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
621 layoutParams.leftMargin = (int) ((position + positionOffset) * width);
  /packages/apps/Contacts/src/com/android/contacts/activities/
DialtactsActivity.java 175 int position, float positionOffset, int positionOffsetPixels) {
    [all...]
PeopleActivity.java 747 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
    [all...]
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 

Completed in 733 milliseconds