HomeSort by relevance Sort by last modified time
    Searched refs:heightMode (Results 1 - 13 of 13) sorted by null

  /packages/apps/Camera/src/com/android/camera/ui/
PopupWindow.java 83 int heightMode = MeasureSpec.getMode(heightSpec);
84 if (heightMode != MeasureSpec.UNSPECIFIED) {
87 0, height - mPaddings.top - mPaddings.bottom), heightMode);
  /frameworks/base/core/java/android/widget/
AnalogClock.java 133 int heightMode = MeasureSpec.getMode(heightMeasureSpec);
143 if (heightMode != MeasureSpec.UNSPECIFIED && heightSize < mDialHeight) {
LinearLayout.java 337 final int heightMode = MeasureSpec.getMode(heightMeasureSpec);
364 if (heightMode == MeasureSpec.EXACTLY && lp.height == 0 && lp.weight > 0) {
374 // heightMode is either UNSPECIFIED or AT_MOST, and this
452 if (useLargestChild && heightMode == MeasureSpec.AT_MOST) {
518 if ((lp.height != 0) || (heightMode != MeasureSpec.EXACTLY)) {
623 final int heightMode = MeasureSpec.getMode(heightMeasureSpec);
725 if (heightMode != MeasureSpec.EXACTLY && lp.height == LayoutParams.MATCH_PARENT) {
    [all...]
RelativeLayout.java 313 int heightMode = MeasureSpec.getMode(heightMeasureSpec);
322 if (heightMode != MeasureSpec.UNSPECIFIED) {
330 if (heightMode == MeasureSpec.EXACTLY) {
355 final boolean isWrapContentHeight = heightMode != MeasureSpec.EXACTLY;
    [all...]
GridView.java     [all...]
ScrollView.java 302 final int heightMode = MeasureSpec.getMode(heightMeasureSpec);
303 if (heightMode == MeasureSpec.UNSPECIFIED) {
    [all...]
ListView.java     [all...]
TextView.java     [all...]
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 167 final int heightMode = MeasureSpec.getMode(heightMeasureSpec);
170 if (widthMode != MeasureSpec.EXACTLY || heightMode != MeasureSpec.EXACTLY) {
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
BalloonHint.java 391 final int heightMode = MeasureSpec.getMode(heightMeasureSpec);
414 || heightMode == MeasureSpec.AT_MOST) {
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java 496 * @param heightMode the MeasureSpec mode to use for the height.
500 int width, int widthMode, int height, int heightMode) {
502 int h_spec = MeasureSpec.makeMeasureSpec(height, heightMode);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 521 final int heightMode = MeasureSpec.getMode(heightMeasureSpec);
522 if (heightMode != MeasureSpec.EXACTLY) {
    [all...]
  /frameworks/base/core/java/android/webkit/
WebView.java     [all...]

Completed in 396 milliseconds