Searched refs:mContent (Results 1 - 14 of 14) sorted by relevance

/packages/apps/Mms/src/com/android/mms/transaction/
H A DProgressCallbackEntity.java37 private final byte[] mContent; field in class:ProgressCallbackEntity
44 mContent = b;
58 int pos = 0, totalLen = mContent.length;
64 outstream.write(mContent, pos, len);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DHotseat.java35 private CellLayout mContent; field in class:Hotseat
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),
H A DFolder.java73 protected CellLayout mContent; field in class:Folder
157 mContent = (CellLayout) findViewById(R.id.folder_content);
158 mContent.setGridSize(0, 0);
159 mContent.getChildrenLayout().setMotionEventSplittingEnabled(false);
227 mContent.removeView(mCurrentDragView);
381 mContent.setAlpha(0);
413 ObjectAnimator alphaOa = ObjectAnimator.ofPropertyValuesHolder(mContent, alpha);
424 mContent.getCountX(), mContent.getCountY()));
452 View firstChild = mContent
[all...]
H A DAppsCustomizeTabHost.java53 private LinearLayout mContent; field in class:AppsCustomizeTabHost
99 mContent = (LinearLayout) findViewById(R.id.apps_customize_content);
363 if (animated && mContent.getVisibility() == GONE) {
367 mContent.setVisibility(VISIBLE);
411 mContent.setVisibility(VISIBLE);
420 mContent.setVisibility(GONE);
/packages/apps/Tag/src/com/android/apps/tag/record/
H A DMimeRecord.java40 private final byte[] mContent; field in class:MimeRecord
45 mContent = Arrays.copyOf(content, content.length);
55 return Arrays.copyOf(mContent, mContent.length);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DHttpHelper.java100 private String mContent; field in class:HttpHelper.PostRequest
110 mContent = content;
114 return mContent;
/packages/apps/Browser/src/com/android/browser/
H A DPhoneUi.java362 ObjectAnimator tx = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
364 ObjectAnimator ty = ObjectAnimator.ofInt(mAnimScreen.mContent, "top",
366 ObjectAnimator tr = ObjectAnimator.ofInt(mAnimScreen.mContent, "right",
368 ObjectAnimator tb = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom",
447 mAnimScreen.mContent.setLeft(fromLeft);
448 mAnimScreen.mContent.setTop(fromTop);
449 mAnimScreen.mContent.setRight(fromRight);
450 mAnimScreen.mContent.setBottom(fromBottom);
458 ObjectAnimator l = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
460 ObjectAnimator t = ObjectAnimator.ofInt(mAnimScreen.mContent, "to
514 private ImageView mContent; field in class:PhoneUi.AnimScreen
[all...]
H A DNavTabView.java32 private ViewGroup mContent; field in class:NavTabView
58 mContent = (ViewGroup) findViewById(R.id.main);
/packages/apps/Settings/src/com/android/settings/widget/
H A DChartView.java50 private Rect mContent = new Rect(); field in class:ChartView
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);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DAlbumSlidingWindow.java283 private Texture mContent; field in class:AlbumSlidingWindow.AlbumDisplayItem
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()) {
H A DAlbumSetSlidingWindow.java337 private Texture mContent; field in class:AlbumSetSlidingWindow.GalleryDisplayItem
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()) {
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DContactEditorFragment.java226 private LinearLayout mContent; field in class:ContactEditorFragment
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
[all...]
/packages/apps/Email/tests/src/com/android/email/provider/
H A DProviderTestUtils.java257 att.mContent = "content " + fileName;
446 assertEquals(caller + " mContent", expect.mContent, actual.mContent);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DEmailContent.java1056 public String mContent; // Not currently used field in class:EmailContent.Attachment
1200 mContent = cursor.getString(CONTENT_CONTENT_COLUMN);
1217 values.put(AttachmentColumns.CONTENT, mContent);
1241 dest.writeString(mContent);
1263 mContent = in.readString();

Completed in 311 milliseconds