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

  /frameworks/base/core/java/com/android/internal/app/
PlatLogoActivity.java 33 ImageView mContent;
43 mContent.setScaleX(scale);
44 mContent.setScaleY(scale);
69 mContent = new ImageView(this);
70 mContent.setImageResource(com.android.internal.R.drawable.platlogo);
71 mContent.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
73 mContent.setOnTouchListener(new View.OnTouchListener() {
78 mContent.setPressed(true);
83 if (mContent.isPressed()) {
84 mContent.setPressed(false)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Hotseat.java 35 private CellLayout mContent;
66 return mContent;
71 return mIsLandscape ? (mContent.getCountY() - y - 1) : x;
78 return mIsLandscape ? (mContent.getCountY() - (rank + 1)) : 0;
89 mContent = (CellLayout) findViewById(R.id.layout);
90 mContent.setGridSize(mCellCountX, mCellCountY);
96 mContent.removeAllViewsInLayout();
102 inflater.inflate(R.layout.application, mContent, false);
131 mContent.addViewToCellLayout(allAppsButton, -1, 0, new CellLayout.LayoutParams(x,y,1,1),
Folder.java 71 protected CellLayout mContent;
148 mContent = (CellLayout) findViewById(R.id.folder_content);
149 mContent.setGridSize(0, 0);
217 mContent.removeView(mCurrentDragView);
360 mContent.setAlpha(0);
392 ObjectAnimator alphaOa = ObjectAnimator.ofPropertyValuesHolder(mContent, alpha);
419 View firstChild = mContent.getChildAt(0, 0);
449 ObjectAnimator alphaOa = ObjectAnimator.ofPropertyValuesHolder(mContent, alpha);
473 mContent.removeAllViewsInLayout();
487 if (mContent.findCellForSpan(emptyCell, item.spanX, item.spanY))
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextureViewActivity.java 36 private FrameLayout mContent;
43 mContent = new FrameLayout(this);
56 mContent.removeView(mTextureView);
58 mContent.addView(mTextureView);
64 mContent.addView(mTextureView, new FrameLayout.LayoutParams(
67 mContent.addView(button, new FrameLayout.LayoutParams(
70 setContentView(mContent);
  /packages/apps/Browser/src/com/android/browser/
NavTabView.java 32 private ViewGroup mContent;
58 mContent = (ViewGroup) findViewById(R.id.main);
116 mContent.addView(w, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
PhoneUi.java 356 ObjectAnimator tx = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
358 ObjectAnimator ty = ObjectAnimator.ofInt(mAnimScreen.mContent, "top",
360 ObjectAnimator tr = ObjectAnimator.ofInt(mAnimScreen.mContent, "right",
362 ObjectAnimator tb = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom",
441 mAnimScreen.mContent.setLeft(fromLeft);
442 mAnimScreen.mContent.setTop(fromTop);
443 mAnimScreen.mContent.setRight(fromRight);
444 mAnimScreen.mContent.setBottom(fromBottom);
452 ObjectAnimator l = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
454 ObjectAnimator t = ObjectAnimator.ofInt(mAnimScreen.mContent, "top"
    [all...]
  /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);
  /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;
GameControllerInput.java 441 private String mContent;
450 mContent = content;
463 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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
DecorComposite.java 38 private IDecorContent mContent;
66 mContent = content;
86 return mContent == null ? null : mContent.getControl();
  /frameworks/base/media/libstagefright/rtsp/
ARTSPConnection.h 32 sp<ABuffer> mContent;
  /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 101 private View mContent;
244 mContent = findViewById(mContentId);
245 if (mContent == null) {
249 mContent.setVisibility(View.GONE);
269 mContent.measure(MeasureSpec.makeMeasureSpec(widthSpecSize, MeasureSpec.EXACTLY),
273 mContent.measure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
289 final Bitmap cache = mContent.getDrawingCache();
300 drawChild(canvas, mContent, drawingTime);
304 drawChild(canvas, mContent, drawingTime);
325 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/Gallery2/src/com/android/gallery3d/ui/
AlbumSetSlidingWindow.java 337 private Texture mContent;
371 mContent = content;
377 int width = mContent.getWidth();
378 int height = mContent.getHeight();
399 mSelectionDrawer.draw(canvas, mContent, width, height,
406 if (mContent == mWaitLoadingTexture) {
410 if ((mContent instanceof FadeInTexture) &&
411 ((FadeInTexture) mContent).isAnimating()) {
AlbumSlidingWindow.java 283 private Texture mContent;
319 mContent = content;
325 int width = mContent.getWidth();
326 int height = mContent.getHeight();
339 mSelectionDrawer.draw(canvas, mContent, width, height,
341 if (mContent == mWaitLoadingTexture) {
348 if ((mContent instanceof FadeInTexture) &&
349 ((FadeInTexture) mContent).isAnimating()) {
  /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);
345 mContent = (LinearLayout) view.findViewById(R.id.editors);
688 mContent.removeAllViews();
708 R.layout.raw_contact_readonly_editor_view, mContent, false);
712 mContent, false);
728 mContent.addView(editor);
773 mContent.setVisibility(View.VISIBLE)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java     [all...]

Completed in 640 milliseconds