Searched defs:mContentFrame (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java135 FrameLayout mContentFrame; field in class:VoiceInteractionSession
1069 mContentFrame = (FrameLayout)mRootView.findViewById(android.R.id.content);
1326 mContentFrame.removeAllViews();
1327 mContentFrame.addView(view, new FrameLayout.LayoutParams(
1330 mContentFrame.requestApplyInsets();
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java318 final Rect mContentFrame = new Rect(); field in class:WindowState
782 mContentFrame.set(cf);
798 mOutsets.set(Math.max(mContentFrame.left - mOutsetFrame.left, 0),
799 Math.max(mContentFrame.top - mOutsetFrame.top, 0),
800 Math.max(mOutsetFrame.right - mContentFrame.right, 0),
801 Math.max(mOutsetFrame.bottom - mContentFrame.bottom, 0));
812 final int height = Math.min(mFrame.height(), mContentFrame.height());
813 final int width = Math.min(mContentFrame.width(), mFrame.width());
819 final int top = Math.max(mContentFrame.top,
820 Math.min(mFrame.top, mContentFrame
[all...]

Completed in 62 milliseconds