OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mBitmapHeight
(Results
1 - 8
of
8
) sorted by null
/packages/apps/Camera/src/com/android/camera/ui/
SharePopup.java
61
private int
mBitmapHeight
;
128
mBitmapHeight
= bitmap.getHeight();
135
mBitmapHeight
= bitmap.getHeight();
166
if (mBitmapWidth >
mBitmapHeight
* 2 ||
mBitmapHeight
> mBitmapWidth * 2) {
175
} else if (mBitmapWidth >
mBitmapHeight
) {
209
float desiredAspect = (float) mBitmapWidth /
mBitmapHeight
;
/frameworks/base/graphics/java/android/graphics/drawable/
NinePatchDrawable.java
57
private int
mBitmapHeight
;
167
mBitmapHeight
= mNinePatch.getHeight();
171
mBitmapHeight
= Bitmap.scaleFromDensity(mNinePatch.getHeight(),
300
return
mBitmapHeight
;
310
return
mBitmapHeight
;
BitmapDrawable.java
73
private int
mBitmapHeight
;
180
mBitmapHeight
= mBitmap.getScaledHeight(mTargetDensity);
189
mBitmapWidth =
mBitmapHeight
= -1;
389
Gravity.apply(state.mGravity, mBitmapWidth,
mBitmapHeight
,
488
return
mBitmapHeight
;
/frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java
125
private int
mBitmapHeight
;
286
mBitmapHeight
= Math.max(
mBitmapHeight
, bitmap.getHeight());
[
all
...]
/frameworks/base/libs/rs/
rsFont.cpp
94
int32_t nPenY = y - glyph->mBitmapTop + glyph->
mBitmapHeight
;
102
int32_t height = (int32_t) glyph->
mBitmapHeight
;
116
uint32_t endY = glyph->mBitmapMinY + glyph->
mBitmapHeight
;
138
int32_t nPenY = y - glyph->mBitmapTop + glyph->
mBitmapHeight
;
141
int32_t height = (int32_t) glyph->
mBitmapHeight
;
269
glyph->
mBitmapHeight
= bitmap->rows;
rsFont.h
102
uint32_t
mBitmapHeight
;
/frameworks/base/libs/hwui/
FontRenderer.cpp
79
int height = (int) glyph->
mBitmapHeight
;
97
int nPenY = y + glyph->mBitmapTop + glyph->
mBitmapHeight
;
105
int height = (int) glyph->
mBitmapHeight
;
119
uint32_t endY = glyph->mStartY + glyph->
mBitmapHeight
;
261
glyph->
mBitmapHeight
= skiaGlyph.fHeight;
FontRenderer.h
113
uint32_t
mBitmapHeight
;
Completed in 365 milliseconds