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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysKeyboard.java 53 public int mDividerWidth;
131 mDividerWidth = dividerWidth;
132 mColumnWidth = mDefaultKeyWidth + mDividerWidth;
133 mBaseWidth = mOccupiedWidth = mNumColumns * mColumnWidth - mDividerWidth;
350 if (params.mDividerWidth > 0 && pos != 0) {
351 final int dividerX = (pos > 0) ? x - params.mDividerWidth
354 params, dividerX, y, params.mDividerWidth, params.mDefaultRowHeight);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 50 public int mDividerWidth;
61 mDividerWidth = mDivider.getIntrinsicWidth();
81 (maxWidth - mDividerWidth * (numColumn - 1)) / numColumn;
122 maxKeyWidth * numColumnInRow + mDividerWidth * (numColumnInRow - 1));
145 return columnNumber * (getWidth(index) + mDividerWidth);
155 return (mOccupiedWidth - mDividerWidth * (numColumnInRow - 1)) / numColumnInRow;
229 params.mDividerWidth, params.mDefaultRowHeight);
SuggestionStripLayoutHelper.java 70 public final int mDividerWidth;
119 mDividerWidth = dividerView.getMeasuredWidth();
472 final int dividers = mDividerWidth * (mSuggestionsCountInStrip - 1);
  /packages/apps/Settings/src/com/android/settings/widget/
MatchParentShrinkingLinearLayout.java 164 private int mDividerWidth;
274 mDividerWidth = divider.getIntrinsicWidth();
277 mDividerWidth = 0;
314 return mDividerWidth;
370 position = child.getLeft() - lp.leftMargin - mDividerWidth;
384 position = getWidth() - getPaddingRight() - mDividerWidth;
389 position = child.getLeft() - lp.leftMargin - mDividerWidth;
406 left + mDividerWidth, getHeight() - getPaddingBottom() - mDividerPadding);
    [all...]
  /frameworks/base/core/java/android/widget/
LinearLayout.java 213 private int mDividerWidth;
355 mDividerWidth = divider.getIntrinsicWidth();
358 mDividerWidth = 0;
406 return mDividerWidth;
474 position = child.getLeft() - lp.leftMargin - mDividerWidth;
488 position = getWidth() - getPaddingRight() - mDividerWidth;
493 position = child.getLeft() - lp.leftMargin - mDividerWidth;
510 left + mDividerWidth, getHeight() - getPaddingBottom() - mDividerPadding);
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
LinearLayoutCompat.java 139 private int mDividerWidth;
237 mDividerWidth = divider.getIntrinsicWidth();
240 mDividerWidth = 0;
278 return mDividerWidth;
334 position = child.getLeft() - lp.leftMargin - mDividerWidth;
348 position = getWidth() - getPaddingRight() - mDividerWidth;
353 position = child.getLeft() - lp.leftMargin - mDividerWidth;
370 left + mDividerWidth, getHeight() - getPaddingBottom() - mDividerPadding);
    [all...]

Completed in 207 milliseconds