HomeSort by relevance Sort by last modified time
    Searched refs:widthMode (Results 1 - 25 of 50) sorted by null

1 2

  /packages/apps/Browser/src/com/android/browser/view/
SnapshotGridView.java 43 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
49 widthMeasureSpec = MeasureSpec.makeMeasureSpec(widthSize, widthMode);
BookmarkExpandableView.java 91 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
95 widthMeasureSpec = MeasureSpec.makeMeasureSpec(width, widthMode);
  /packages/apps/Email/src/com/android/email/view/
SizeBoundingFrameLayout.java 83 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
90 switch (widthMode) {
95 widthMode = MeasureSpec.AT_MOST;
112 super.onMeasure(MeasureSpec.makeMeasureSpec(widthSize, widthMode),
  /frameworks/base/core/java/com/android/internal/widget/
WeightedLinearLayout.java 62 final int widthMode = getMode(widthMeasureSpec);
73 if (widthMode == AT_MOST) {
ScrollingTabContainerView.java 86 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
87 final boolean lockedExpanded = widthMode == MeasureSpec.EXACTLY;
92 (widthMode == MeasureSpec.EXACTLY || widthMode == MeasureSpec.AT_MOST)) {
ActionBarContextView.java 324 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
325 if (widthMode != MeasureSpec.EXACTLY) {
ActionBarView.java 845 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
846 if (widthMode != MeasureSpec.EXACTLY) {
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheelContainer.java 128 int widthMode = MeasureSpec.getMode(widthSpec);
131 if (widthMode == MeasureSpec.UNSPECIFIED) {
133 } else if (widthMode == MeasureSpec.AT_MOST) {
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuItemView.java 268 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
271 final int targetWidth = widthMode == MeasureSpec.AT_MOST ? Math.min(widthSize, mMinWidth)
274 if (widthMode != MeasureSpec.EXACTLY && mMinWidth > 0 && oldMeasuredWidth < targetWidth) {
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardSecurityViewFlipper.java 179 final int widthMode = MeasureSpec.getMode(widthSpec);
181 if (DEBUG && widthMode != MeasureSpec.AT_MOST) {
212 int width = widthMode == MeasureSpec.EXACTLY ? widthSize : 0;
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
BalloonHint.java 390 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
395 if (widthMode == MeasureSpec.EXACTLY) {
409 if (widthSize > measuredWidth || widthMode == MeasureSpec.AT_MOST) {
  /frameworks/base/core/java/android/widget/
LinearLayout.java 641 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
732 if (widthMode != MeasureSpec.EXACTLY && lp.width == LayoutParams.MATCH_PARENT) {
    [all...]
AnalogClock.java 136 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
144 if (widthMode != MeasureSpec.UNSPECIFIED && widthSize < mDialWidth) {
AbsSpinner.java 166 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
223 if (widthMode == MeasureSpec.UNSPECIFIED) {
SearchView.java 715 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
718 switch (widthMode) {
738 widthMode = MeasureSpec.EXACTLY;
739 super.onMeasure(MeasureSpec.makeMeasureSpec(width, widthMode), heightMeasureSpec);
    [all...]
RelativeLayout.java 372 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
378 if (widthMode != MeasureSpec.UNSPECIFIED) {
386 if (widthMode == MeasureSpec.EXACTLY) {
414 final boolean isWrapContentWidth = widthMode != MeasureSpec.EXACTLY;
    [all...]
HorizontalScrollView.java 307 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
308 if (widthMode == MeasureSpec.UNSPECIFIED) {
    [all...]
GridView.java     [all...]
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 164 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
170 if (widthMode != MeasureSpec.EXACTLY || heightMode != MeasureSpec.EXACTLY) {
  /packages/apps/DeskClock/src/com/android/deskclock/
AnalogClock.java 144 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
152 if (widthMode != MeasureSpec.UNSPECIFIED && widthSize < mDialWidth) {
  /frameworks/base/core/java/android/app/
MediaRouteButton.java 333 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
342 switch (widthMode) {
  /frameworks/support/v4/java/android/support/v4/view/
PagerTitleStrip.java 422 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
427 if (widthMode != MeasureSpec.EXACTLY) {
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 615 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
620 if (widthMode != MeasureSpec.EXACTLY) {
623 widthMode = MeasureSpec.EXACTLY;
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
Switch.java 160 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
HorizontalScrollView.java 301 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
302 if (widthMode == MeasureSpec.UNSPECIFIED) {
    [all...]

Completed in 1762 milliseconds

1 2