HomeSort by relevance Sort by last modified time
    Searched refs:widthMode (Results 1 - 25 of 68) 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) {
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
PrintDialogFrame.java 40 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
41 switch (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)) {
  /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) {
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwLayoutSizer.java 156 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
168 mWidthMeasurementIsFixed = (widthMode != MeasureSpec.UNSPECIFIED);
  /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/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityViewFlipper.java 178 final int widthMode = MeasureSpec.getMode(widthSpec);
180 if (DEBUG && widthMode != MeasureSpec.AT_MOST) {
211 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/
AnalogClock.java 136 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
144 if (widthMode != MeasureSpec.UNSPECIFIED && widthSize < mDialWidth) {
LinearLayout.java 641 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
732 if (widthMode != MeasureSpec.EXACTLY && lp.width == LayoutParams.MATCH_PARENT) {
    [all...]
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) {
  /frameworks/base/core/java/android/app/
MediaRouteButton.java 325 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
334 switch (widthMode) {
  /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 601 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
606 if (widthMode != MeasureSpec.EXACTLY || heightMode != MeasureSpec.EXACTLY) {
612 if (widthMode == MeasureSpec.AT_MOST) {
613 widthMode = MeasureSpec.EXACTLY;
614 } else if (widthMode == MeasureSpec.UNSPECIFIED) {
615 widthMode = MeasureSpec.EXACTLY;
    [all...]
SlidingPaneLayout.java 432 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
437 if (widthMode != MeasureSpec.EXACTLY) {
443 if (widthMode == MeasureSpec.AT_MOST) {
444 widthMode = MeasureSpec.EXACTLY;
445 } else if (widthMode == MeasureSpec.UNSPECIFIED) {
446 widthMode = MeasureSpec.EXACTLY;
    [all...]
  /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 623 milliseconds

1 2 3