OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:boundsHeight
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RectangleShape.cpp
58
float
boundsHeight
= std::max(0.0f, height() - shapePadding() * 2);
60
return FloatRect(boundsX, boundsY, boundsWidth,
boundsHeight
);
72
float
boundsHeight
= height() + shapeMargin() * 2;
73
return FloatRect(boundsX, boundsY, boundsWidth,
boundsHeight
);
/packages/apps/Contacts/src/com/android/contacts/activities/
PhotoSelectionActivity.java
215
final int
boundsHeight
= bounds.height() - heightOffset;
218
final float alpha = Math.min((float)
boundsHeight
/ (float) mExpandedPhotoSize,
Completed in 75 milliseconds