OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mdividerwidth
(Results
1 - 6
of
6
) sorted by null
/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/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/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
191
private int
mDividerWidth
;
302
mDividerWidth
= divider.getIntrinsicWidth();
305
mDividerWidth
= 0;
342
return
mDividerWidth
;
410
position = child.getLeft() - lp.leftMargin -
mDividerWidth
;
424
position = getWidth() - getPaddingRight() -
mDividerWidth
;
429
position = child.getLeft() - lp.leftMargin -
mDividerWidth
;
446
left +
mDividerWidth
, getHeight() - getPaddingBottom() - mDividerPadding);
[
all
...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java
134
private int
mDividerWidth
;
232
mDividerWidth
= divider.getIntrinsicWidth();
235
mDividerWidth
= 0;
272
return
mDividerWidth
;
328
position = child.getLeft() - lp.leftMargin -
mDividerWidth
;
342
position = getWidth() - getPaddingRight() -
mDividerWidth
;
347
position = child.getLeft() - lp.leftMargin -
mDividerWidth
;
364
left +
mDividerWidth
, getHeight() - getPaddingBottom() - mDividerPadding);
[
all
...]
Completed in 238 milliseconds