OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:heightRatio
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/tests/coretests/src/android/util/
ScrollViewScenario.java
73
protected ViewFactoryBase(float
heightRatio
) {
74
mHeightRatio =
heightRatio
;
97
* @param
heightRatio
The view's height will be this * the screen height.
99
public Params addTextView(final String text, float
heightRatio
) {
100
mViewFactories.add(new ViewFactoryBase(
heightRatio
) {
114
* @param
heightRatio
The view's height will be this * the screen height.
116
public Params addTextViews(int numViews, String textPrefix, float
heightRatio
) {
118
addTextView(textPrefix + i,
heightRatio
);
126
* @param
heightRatio
The view's height will be this * the screen height.
128
public Params addButton(final String text, float
heightRatio
) {
[
all
...]
/frameworks/base/core/java/android/app/backup/
WallpaperBackupHelper.java
123
double
heightRatio
= mDesiredMinHeight / options.outHeight;
125
&&
heightRatio
> 0 &&
heightRatio
< 1.33) {
134
+ " hr=" +
heightRatio
);
/external/webkit/Source/WebCore/inspector/front-end/
FontView.js
127
var
heightRatio
= containerHeight / height;
128
var finalFontSize = Math.floor(WebInspector.FontView._measureFontSize * Math.min(widthRatio,
heightRatio
)) - 2;
/packages/apps/Camera/src/com/android/camera/panorama/
PanoramaActivity.java
789
int
heightRatio
= (int) Math.ceil((double) jpeg.height
792
Math.max(widthRatio,
heightRatio
));
[
all
...]
Completed in 2143 milliseconds