HomeSort by relevance Sort by last modified time
    Searched defs:mContent (Results 1 - 21 of 21) sorted by null

  /frameworks/base/core/java/com/android/internal/app/
PlatLogoActivity.java 37 ImageView mContent;
94 mContent = new ImageView(this);
95 mContent.setImageResource(com.android.internal.R.drawable.platlogo_alt);
96 mContent.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
99 mContent.setPadding(p, p, p, p);
101 mContent.setOnClickListener(new View.OnClickListener() {
105 mContent.setImageResource(com.android.internal.R.drawable.platlogo);
109 mContent.setOnLongClickListener(new View.OnLongClickListener() {
127 setContentView(mContent);
  /packages/apps/Launcher2/src/com/android/launcher2/
Hotseat.java 35 private CellLayout mContent;
68 return mContent;
73 return mIsLandscape ? (mContent.getCountY() - y - 1) : x;
80 return mIsLandscape ? (mContent.getCountY() - (rank + 1)) : 0;
91 mContent = (CellLayout) findViewById(R.id.layout);
92 mContent.setGridSize(mCellCountX, mCellCountY);
93 mContent.setIsHotseat(true);
99 mContent.removeAllViewsInLayout();
105 inflater.inflate(R.layout.application, mContent, false);
135 mContent.addViewToCellLayout(allAppsButton, -1, 0, lp, true)
    [all...]
Folder.java 74 protected CellLayout mContent;
156 mContent = (CellLayout) findViewById(R.id.folder_content);
157 mContent.setGridSize(0, 0);
158 mContent.getShortcutsAndWidgets().setMotionEventSplittingEnabled(false);
230 mContent.removeView(mCurrentDragView);
343 final int countX = mContent.getCountX();
431 mContent.getCountX(), mContent.getCountY()));
470 View firstChild = mContent.getChildAt(0, 0);
514 mContent.removeAllViewsInLayout()
    [all...]
AppsCustomizeTabHost.java 54 private LinearLayout mContent;
113 mContent = (LinearLayout) findViewById(R.id.apps_customize_content);
374 return mContent;
392 mContent.setVisibility(VISIBLE);
470 mContent.setVisibility(VISIBLE);
479 mContent.setVisibility(GONE);
  /packages/apps/Tag/src/com/android/apps/tag/record/
MimeRecord.java 40 private final byte[] mContent;
45 mContent = Arrays.copyOf(content, content.length);
55 return Arrays.copyOf(mContent, mContent.length);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextureViewActivity.java 43 private FrameLayout mContent;
50 mContent = new FrameLayout(this);
83 mContent.removeView(mTextureView);
85 mContent.addView(mTextureView);
91 mContent.addView(mTextureView, new FrameLayout.LayoutParams(
94 mContent.addView(button, new FrameLayout.LayoutParams(
97 setContentView(mContent);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete4.java 59 mContent = context.getContentResolver();
91 return mContent.query(uri, CONTACT_PROJECTION, null, null, null);
94 private ContentResolver mContent;
ContentBrowserActivity.java 161 Content mContent;
173 mContent = (Content)findViewById(R.id.content);
174 mContent.init((TextView)findViewById(R.id.title),
233 mContent.setBaseSystemUiVisibility(item.isChecked()
VideoPlayerActivity.java 184 Content mContent;
196 mContent = (Content)findViewById(R.id.content);
197 mContent.init(this, (TextView)findViewById(R.id.title),
GameControllerInput.java 498 private String mContent;
507 mContent = content;
520 mContentView.setText(mContent);
  /packages/apps/Mms/src/com/android/mms/transaction/
ProgressCallbackEntity.java 37 private final byte[] mContent;
44 mContent = b;
58 int pos = 0, totalLen = mContent.length;
64 outstream.write(mContent, pos, len);
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.h 32 sp<ABuffer> mContent;
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarOverlayLayout.java 38 private View mContent;
169 changed |= applyInsets(mContent, insets, true, true, true, true);
173 changed |= applyInsets(mContent, mZeroRect, true, true, true, true);
206 if (mContent == null) {
207 mContent = findViewById(com.android.internal.R.id.content);
  /packages/apps/Browser/src/com/android/browser/
NavTabView.java 32 private ViewGroup mContent;
58 mContent = (ViewGroup) findViewById(R.id.main);
PhoneUi.java 290 ObjectAnimator tx = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
292 ObjectAnimator ty = ObjectAnimator.ofInt(mAnimScreen.mContent, "top",
294 ObjectAnimator tr = ObjectAnimator.ofInt(mAnimScreen.mContent, "right",
296 ObjectAnimator tb = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom",
377 mAnimScreen.mContent.setLeft(fromLeft);
378 mAnimScreen.mContent.setTop(fromTop);
379 mAnimScreen.mContent.setRight(fromRight);
380 mAnimScreen.mContent.setBottom(fromBottom);
388 ObjectAnimator l = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
390 ObjectAnimator t = ObjectAnimator.ofInt(mAnimScreen.mContent, "top"
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
HttpHelper.java 100 private String mContent;
110 mContent = content;
114 return mContent;
  /packages/apps/Settings/src/com/android/settings/widget/
ChartView.java 50 private Rect mContent = new Rect();
98 mContent.set(getPaddingLeft(), getPaddingTop(), r - l - getPaddingRight(),
100 final int width = mContent.width();
101 final int height = mContent.height();
114 parentRect.set(mContent);
130 final Rect parentRect = new Rect(mContent);
  /frameworks/base/core/java/android/widget/
SlidingDrawer.java 102 private View mContent;
245 mContent = findViewById(mContentId);
246 if (mContent == null) {
250 mContent.setVisibility(View.GONE);
270 mContent.measure(MeasureSpec.makeMeasureSpec(widthSpecSize, MeasureSpec.EXACTLY),
274 mContent.measure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
290 final Bitmap cache = mContent.getDrawingCache();
301 drawChild(canvas, mContent, drawingTime);
305 drawChild(canvas, mContent, drawingTime);
326 final View content = mContent;
    [all...]
  /frameworks/base/core/java/android/app/
SharedPreferencesImpl.java 67 private static final Object mContent = new Object();
169 mListeners.put(listener, mContent);
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 226 private LinearLayout mContent;
308 if (mContent != null) {
309 int count = mContent.getChildCount();
311 mContent.getChildAt(i).setEnabled(enabled);
344 mContent = (LinearLayout) view.findViewById(R.id.editors);
685 mContent.removeAllViews();
705 R.layout.raw_contact_readonly_editor_view, mContent, false);
709 mContent, false);
725 mContent.addView(editor);
780 mContent.setVisibility(View.VISIBLE)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java     [all...]

Completed in 369 milliseconds