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

  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontChromiumWin.cpp 400 float horizontalOffset = point.x(); // The floating point offset of the left side of the current glyph.
401 int lastHorizontalOffsetRounded = lroundf(horizontalOffset); // The rounded offset of the left side of the last glyph rendered.
411 horizontalOffset += glyphBuffer.advanceAt(from + glyphIndex);
412 advances[i] = lroundf(horizontalOffset) - lastHorizontalOffsetRounded;
431 success = painter.drawGlyphs(curLen, &glyphs[0], &advances[0], horizontalOffset - point.x() - currentWidth);
  /frameworks/base/core/java/android/widget/
StackView.java 531 if ((lp.horizontalOffset == 0 && lp.verticalOffset == 0) ||
    [all...]
Spinner.java 175 final int horizontalOffset = a.getDimensionPixelOffset(
177 if (horizontalOffset != 0) {
178 popup.setHorizontalOffset(horizontalOffset);
RelativeLayout.java 507 final int horizontalOffset = contentBounds.left - left;
509 if (horizontalOffset != 0 || verticalOffset != 0) {
515 params.mLeft += horizontalOffset;
516 params.mRight += horizontalOffset;
    [all...]
TextView.java     [all...]
  /external/webkit/Source/WebCore/platform/
ScrollView.cpp 368 int horizontalOffset = offset.x();
371 horizontalOffset = max(min(horizontalOffset, contentsWidth() - visibleWidth()), 0);
376 newOffset.setWidth(horizontalOffset - m_scrollOrigin.x());
    [all...]

Completed in 1967 milliseconds