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

1 2 3

  /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/Gallery2/src/com/android/photos/views/
SquareImageView.java 40 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
42 if (widthMode == MeasureSpec.EXACTLY && heightMode != MeasureSpec.EXACTLY) {
  /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 88 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
89 final boolean lockedExpanded = widthMode == MeasureSpec.EXACTLY;
94 (widthMode == MeasureSpec.EXACTLY || widthMode == MeasureSpec.AT_MOST)) {
ActionBarContextView.java 324 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
325 if (widthMode != MeasureSpec.EXACTLY) {
  /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/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ActionMenuItemView.java 217 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
220 final int targetWidth = widthMode == MeasureSpec.AT_MOST ? Math.min(widthSize, mMinWidth)
223 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/support/v7/appcompat/src/android/support/v7/internal/widget/
ScrollingTabContainerView.java 79 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
80 final boolean lockedExpanded = widthMode == MeasureSpec.EXACTLY;
85 (widthMode == MeasureSpec.EXACTLY || widthMode == MeasureSpec.AT_MOST)) {
AbsSpinnerICS.java 147 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
205 if (widthMode == MeasureSpec.UNSPECIFIED) {
ActionBarContextView.java 295 final int widthMode = View.MeasureSpec.getMode(widthMeasureSpec);
296 if (widthMode != View.MeasureSpec.EXACTLY) {
  /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);
221 if (widthMode == MeasureSpec.UNSPECIFIED) {
  /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/support/v4/java/android/support/v4/widget/
DrawerLayout.java 585 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
590 if (widthMode != MeasureSpec.EXACTLY || heightMode != MeasureSpec.EXACTLY) {
596 if (widthMode == MeasureSpec.AT_MOST) {
597 widthMode = MeasureSpec.EXACTLY;
598 } else if (widthMode == MeasureSpec.UNSPECIFIED) {
599 widthMode = MeasureSpec.EXACTLY;
    [all...]
SlidingPaneLayout.java 425 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
430 if (widthMode != MeasureSpec.EXACTLY) {
436 if (widthMode == MeasureSpec.AT_MOST) {
437 widthMode = MeasureSpec.EXACTLY;
438 } else if (widthMode == MeasureSpec.UNSPECIFIED) {
439 widthMode = MeasureSpec.EXACTLY;
    [all...]
  /frameworks/base/core/java/android/app/
MediaRouteButton.java 334 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
343 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/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteButton.java 424 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
433 switch (widthMode) {

Completed in 234 milliseconds

1 2 3