HomeSort by relevance Sort by last modified time
    Searched refs:mContentFrame (Results 1 - 2 of 2) 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/java/com/android/server/wm/
WindowState.java 218 final Rect mContentFrame = new Rect();
526 mContentFrame.set(cf);
556 mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
557 Math.max(mContentFrame.top, mFrame.top),
558 Math.min(mContentFrame.right, mFrame.right),
559 Math.min(mContentFrame.bottom, mFrame.bottom));
571 mContentInsets.set(mContentFrame.left - mFrame.left,
572 mContentFrame.top - mFrame.top,
573 mFrame.right - mContentFrame.right
    [all...]

Completed in 31 milliseconds