OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mContentHeight
(Results
1 - 10
of
10
) sorted by null
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
AbsActionBarView.java
43
protected int
mContentHeight
;
99
mContentHeight
= height;
104
return
mContentHeight
;
ActionBarContextView.java
73
mContentHeight
= a.getLayoutDimension(
115
layoutParams.height =
mContentHeight
;
130
mContentHeight
= height;
232
layoutParams.height =
mContentHeight
;
309
int maxHeight =
mContentHeight
> 0 ?
310
mContentHeight
: View.MeasureSpec.getSize(heightMeasureSpec);
360
if (
mContentHeight
<= 0) {
ScrollingTabContainerView.java
59
private int
mContentHeight
;
96
heightMeasureSpec = MeasureSpec.makeMeasureSpec(
mContentHeight
, MeasureSpec.EXACTLY);
185
mContentHeight
= contentHeight;
246
mContentHeight
));
ActionBarView.java
245
mContentHeight
= a.getLayoutDimension(R.styleable.ActionBar_height, 0);
852
int maxHeight =
mContentHeight
> 0 ?
853
mContentHeight
: MeasureSpec.getSize(heightMeasureSpec);
[
all
...]
/frameworks/base/core/java/com/android/internal/widget/
AbsActionBarView.java
40
protected int
mContentHeight
;
97
mContentHeight
= height;
99
mMenuView.setMaxItemHeight(
mContentHeight
);
105
return
mContentHeight
;
ActionBarContextView.java
88
mContentHeight
= a.getLayoutDimension(
127
layoutParams.height =
mContentHeight
;
140
mContentHeight
= height;
241
layoutParams.height =
mContentHeight
;
338
int maxHeight =
mContentHeight
> 0 ?
339
mContentHeight
: MeasureSpec.getSize(heightMeasureSpec);
386
if (
mContentHeight
<= 0) {
ScrollingTabContainerView.java
63
private int
mContentHeight
;
105
heightMeasureSpec = MeasureSpec.makeMeasureSpec(
mContentHeight
, MeasureSpec.EXACTLY);
190
mContentHeight
= contentHeight;
285
mContentHeight
));
ActionBarView.java
233
mContentHeight
= a.getLayoutDimension(R.styleable.ActionBar_height, 0);
[
all
...]
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java
60
private int
mContentHeight
;
365
mContentHeight
= (int) ((getMeasuredHeight() - mPaddingTop - mPaddingBottom) * 0.95f);
373
while (mFmiCandidates.bottom - mFmiCandidates.top <
mContentHeight
) {
395
while (mFmiFootnote.bottom - mFmiFootnote.top <
mContentHeight
/ 2) {
413
mContentHeight
= (int) ((getMeasuredHeight() - mPaddingTop - mPaddingBottom) * 0.95f);
415
if (mContentWidth <= 0 ||
mContentHeight
<= 0) return false;
/packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizePagedView.java
184
private int mContentWidth,
mContentHeight
;
386
mContentHeight
= getMeasuredHeight() - getPaddingTop() - getPaddingBottom();
388
int heightSpec = MeasureSpec.makeMeasureSpec(
mContentHeight
, MeasureSpec.AT_MOST);
[
all
...]
Completed in 455 milliseconds