Searched refs:widthSpec (Results 1 - 15 of 15) 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/Gallery2/tests/src/com/android/gallery3d/ui/
H A DGLViewMock.java69 protected void onMeasure(int widthSpec, int heightSpec) { argument
71 mOnMeasureWidthSpec = widthSpec;
76 item.measure(widthSpec, heightSpec);
78 setMeasuredSize(widthSpec, heightSpec);
H A DGLViewTest.java307 protected void onMeasure(int widthSpec, int heightSpec) { argument
/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.java364 public void measure(int widthSpec, int heightSpec) { argument
365 if (widthSpec == mLastWidthSpec && heightSpec == mLastHeightSpec
370 mLastWidthSpec = widthSpec;
374 onMeasure(widthSpec, heightSpec);
381 protected void onMeasure(int widthSpec, int heightSpec) { argument
H A DUndoBarView.java87 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.java90 protected void onMeasure(int widthSpec, int heightSpec) { argument
91 int previewWidth = MeasureSpec.getSize(widthSpec);
/packages/apps/Email/src/com/android/email/activity/
H A DMessageListItemCoordinates.java260 int widthSpec = MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY);
262 view.measure(widthSpec, heightSpec);
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DPinnedHeaderListView.java354 int widthSpec = MeasureSpec.makeMeasureSpec(mHeaderWidth, MeasureSpec.EXACTLY);
362 view.measure(widthSpec, heightSpec);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAppsCustomizePagedView.java468 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
471 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
1066 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
1069 layout.measure(widthSpec, heightSpec);
1212 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
1215 layout.measure(widthSpec, heightSpec);
H A DPagedView.java604 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.EXACTLY);
607 measure(widthSpec, heightSpec);

Completed in 374 milliseconds