Searched refs:widthSpec (Results 1 - 18 of 18) sorted by relevance

/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DControlPanelLayout.java40 protected void onMeasure(int widthSpec, int heightSpec) { argument
41 int widthSpecSize = MeasureSpec.getSize(widthSpec);
50 mode = MeasureSpec.getMode(widthSpec);
81 widthSpec = MeasureSpec.makeMeasureSpec(measuredSize, MeasureSpec.EXACTLY);
86 super.onMeasure(widthSpec, heightSpec);
H A DRotateLayout.java65 protected void onMeasure(int widthSpec, int heightSpec) { argument
70 measureChild(mChild, widthSpec, heightSpec);
76 measureChild(mChild, heightSpec, widthSpec);
H A DIndicatorControlWheelContainer.java117 protected void onMeasure(int widthSpec, int heightSpec) { argument
128 int widthMode = MeasureSpec.getMode(widthSpec);
134 measuredWidth = Math.min(desiredWidth, MeasureSpec.getSize(widthSpec));
136 measuredWidth = MeasureSpec.getSize(widthSpec);
/packages/apps/Camera2/src/com/android/camera/ui/
H A DRotateLayout.java70 protected void onMeasure(int widthSpec, int heightSpec) { argument
75 measureChild(mChild, widthSpec, heightSpec);
81 measureChild(mChild, heightSpec, widthSpec);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DMeasureHelper.java45 public void measure(int widthSpec, int heightSpec) { argument
48 getLength(widthSpec, mPreferredWidth + p.left + p.right),
H A DGLView.java365 public void measure(int widthSpec, int heightSpec) { argument
366 if (widthSpec == mLastWidthSpec && heightSpec == mLastHeightSpec
371 mLastWidthSpec = widthSpec;
375 onMeasure(widthSpec, heightSpec);
382 protected void onMeasure(int widthSpec, int heightSpec) { argument
H A DUndoBarView.java91 protected void onMeasure(int widthSpec, int heightSpec) { argument
/packages/apps/LegacyCamera/src/com/android/camera/
H A DPreviewFrameLayout.java63 protected void onMeasure(int widthSpec, int heightSpec) { argument
64 int previewWidth = MeasureSpec.getSize(widthSpec);
/packages/apps/Camera/src/com/android/camera/ui/
H A DRotateLayout.java133 protected void onMeasure(int widthSpec, int heightSpec) { argument
138 measureChild(mChild, widthSpec, heightSpec);
144 measureChild(mChild, heightSpec, widthSpec);
/packages/apps/Camera/src/com/android/camera/
H A DPreviewFrameLayout.java85 protected void onMeasure(int widthSpec, int heightSpec) { argument
86 int previewWidth = MeasureSpec.getSize(widthSpec);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DPinnedHeaderListView.java359 int widthSpec;
363 widthSpec = View.MeasureSpec
366 widthSpec = View.MeasureSpec
376 view.measure(widthSpec, heightSpec);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationItemViewCoordinates.java320 final int widthSpec = MeasureSpec.makeMeasureSpec(config.getWidth(), MeasureSpec.EXACTLY);
323 view.measure(widthSpec, heightSpec);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAppsCustomizePagedView.java392 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
395 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
1010 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
1013 layout.measure(widthSpec, heightSpec);
1160 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
1163 layout.measure(widthSpec, heightSpec);
H A DPagedView.java623 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.EXACTLY);
626 measure(widthSpec, heightSpec);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DAppsCustomizePagedView.java351 int widthSpec = MeasureSpec.makeMeasureSpec(mContentWidth, MeasureSpec.AT_MOST);
353 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
923 int widthSpec = MeasureSpec.makeMeasureSpec(mContentWidth, MeasureSpec.AT_MOST);
925 layout.measure(widthSpec, heightSpec);
1088 int widthSpec = MeasureSpec.makeMeasureSpec(mContentWidth, MeasureSpec.AT_MOST);
1096 layout.measure(widthSpec, heightSpec);
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
H A DStaggeredGridView.java2127 final int widthSpec = MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY);
2129 view.measure(widthSpec, heightSpec);
2359 final int widthSpec = MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY);
2368 child.measure(widthSpec, heightSpec);
2582 final int widthSpec = MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY);
2589 child.measure(widthSpec, heightSpec);
2734 final int widthSpec = MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY);
2741 child.measure(widthSpec, heightSpec);
/packages/apps/Gallery2/src/com/android/photos/views/
H A DGalleryThumbnailView.java200 // final int widthSpec = MeasureSpec.makeMeasureSpec(child.getMeasuredWidth(), MeasureSpec.EXACTLY);
202 // child.measure(widthSpec, heightSpec);
270 int widthSpec = MeasureSpec.makeMeasureSpec(columnWidth, MeasureSpec.EXACTLY);
271 child.measure(widthSpec, heightSpec);
/packages/apps/Camera2/src/com/android/camera/widget/
H A DFilmstripView.java397 public void measure(int widthSpec, int heightSpec) { argument
398 mView.measure(widthSpec, heightSpec);

Completed in 470 milliseconds