HomeSort by relevance Sort by last modified time
    Searched refs:mContentFrame (Results 1 - 3 of 3) sorted by null

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DialogActivity.java 32 protected FrameLayout mContentFrame;
40 mContentFrame = (FrameLayout) findViewById(R.id.content);
52 mContentFrame.removeAllViews();
53 getLayoutInflater().inflate(layoutRes, mContentFrame);
57 mContentFrame.removeAllViews();
58 mContentFrame.addView(content);
62 if (mContentFrame.getChildCount() > 0) {
63 return mContentFrame.getChildAt(0);
  /frameworks/base/services/core/java/com/android/server/wm/
WindowState.java 232 final Rect mContentFrame = new Rect();
551 mContentFrame.set(cf);
582 mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
583 Math.max(mContentFrame.top, mFrame.top),
584 Math.min(mContentFrame.right, mFrame.right),
585 Math.min(mContentFrame.bottom, mFrame.bottom));
602 mContentInsets.set(mContentFrame.left - mFrame.left,
603 mContentFrame.top - mFrame.top,
604 mFrame.right - mContentFrame.right
    [all...]
  /frameworks/base/core/java/android/service/voice/
VoiceInteractionSession.java 75 FrameLayout mContentFrame;
477 mContentFrame = (FrameLayout)mRootView.findViewById(android.R.id.content);
643 mContentFrame.removeAllViews();
644 mContentFrame.addView(view, new FrameLayout.LayoutParams(

Completed in 354 milliseconds