/packages/apps/Launcher2/src/com/android/launcher2/ |
D | Hotseat.java | 36 private CellLayout mContent; field in Hotseat 74 return mContent; in getLayout() 83 return hasVerticalHotseat() ? (mContent.getCountY() - y - 1) : x; in getOrderInHotseat() 90 return hasVerticalHotseat() ? (mContent.getCountY() - (rank + 1)) : 0; in getCellYFromOrder() 101 mContent = (CellLayout) findViewById(R.id.layout); in onFinishInflate() 102 mContent.setGridSize(mCellCountX, mCellCountY); in onFinishInflate() 103 mContent.setIsHotseat(true); in onFinishInflate() 109 mContent.removeAllViewsInLayout(); in resetLayout() 115 inflater.inflate(R.layout.application, mContent, false); in resetLayout() 145 mContent.addViewToCellLayout(allAppsButton, -1, 0, lp, true); in resetLayout()
|
D | Folder.java | 72 protected CellLayout mContent; field in Folder 156 mContent = (CellLayout) findViewById(R.id.folder_content); in onFinishInflate() 157 mContent.setGridSize(0, 0); in onFinishInflate() 158 mContent.getShortcutsAndWidgets().setMotionEventSplittingEnabled(false); in onFinishInflate() 230 mContent.removeView(mCurrentDragView); in onLongClick() 343 final int countX = mContent.getCountX(); in placeInReadingOrder() 431 mContent.getCountX(), mContent.getCountY())); in animateOpen() 470 View firstChild = mContent.getChildAt(0, 0); in setFocusOnFirstChild() 514 mContent.removeAllViewsInLayout(); in notifyDataSetChanged() 528 if (mContent.findCellForSpan(emptyCell, item.spanX, item.spanY)) { in findAndSetEmptyCells() [all …]
|
D | AppsCustomizeTabHost.java | 52 private LinearLayout mContent; field in AppsCustomizeTabHost 106 mContent = (LinearLayout) findViewById(R.id.apps_customize_content); in onFinishInflate() 365 return mContent; in getContent() 383 mContent.setVisibility(VISIBLE); in onLauncherTransitionPrepare() 464 mContent.setVisibility(VISIBLE); in onWindowVisible() 473 mContent.setVisibility(GONE); in onTrimMemory()
|
/packages/apps/Browser/src/com/android/browser/ |
D | PhoneUi.java | 308 ObjectAnimator tx = ObjectAnimator.ofInt(mAnimScreen.mContent, "left", in showNavScreen() 310 ObjectAnimator ty = ObjectAnimator.ofInt(mAnimScreen.mContent, "top", in showNavScreen() 312 ObjectAnimator tr = ObjectAnimator.ofInt(mAnimScreen.mContent, "right", in showNavScreen() 314 ObjectAnimator tb = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom", in showNavScreen() 396 mAnimScreen.mContent.setLeft(fromLeft); in hideNavScreen() 397 mAnimScreen.mContent.setTop(fromTop); in hideNavScreen() 398 mAnimScreen.mContent.setRight(fromRight); in hideNavScreen() 399 mAnimScreen.mContent.setBottom(fromBottom); in hideNavScreen() 407 ObjectAnimator l = ObjectAnimator.ofInt(mAnimScreen.mContent, "left", in hideNavScreen() 409 ObjectAnimator t = ObjectAnimator.ofInt(mAnimScreen.mContent, "top", in hideNavScreen() [all …]
|
D | NavTabView.java | 32 private ViewGroup mContent; field in NavTabView 58 mContent = (ViewGroup) findViewById(R.id.main); in init()
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
D | ProgressCallbackEntity.java | 37 private final byte[] mContent; field in ProgressCallbackEntity 44 mContent = b; in ProgressCallbackEntity() 58 int pos = 0, totalLen = mContent.length; in writeTo() 64 outstream.write(mContent, pos, len); in writeTo()
|
/packages/apps/Settings/src/com/android/settings/widget/ |
D | ChartView.java | 50 private Rect mContent = new Rect(); field in ChartView 98 mContent.set(getPaddingLeft(), getPaddingTop(), r - l - getPaddingRight(), in onLayout() 100 final int width = mContent.width(); in onLayout() 101 final int height = mContent.height(); in onLayout() 114 parentRect.set(mContent); in onLayout() 130 final Rect parentRect = new Rect(mContent); in layoutSweep()
|
/packages/apps/Tag/src/com/android/apps/tag/record/ |
D | MimeRecord.java | 40 private final byte[] mContent; field in MimeRecord 45 mContent = Arrays.copyOf(content, content.length); in MimeRecord() 55 return Arrays.copyOf(mContent, mContent.length); in getContent()
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
D | HttpHelper.java | 100 private String mContent; field in HttpHelper.PostRequest 110 mContent = content; in setContent() 114 return mContent; in getContent()
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | ContactEditorFragment.java | 229 private LinearLayout mContent; field in ContactEditorFragment 311 if (mContent != null) { in setEnabled() 312 int count = mContent.getChildCount(); in setEnabled() 314 mContent.getChildAt(i).setEnabled(enabled); in setEnabled() 347 mContent = (LinearLayout) view.findViewById(R.id.editors); in onCreateView() 713 mContent.removeAllViews(); in bindEditors() 730 R.layout.raw_contact_readonly_editor_view, mContent, false); in bindEditors() 734 mContent, false); in bindEditors() 750 mContent.addView(editor); in bindEditors() 805 mContent.setVisibility(View.VISIBLE); in bindEditors() [all …]
|
/packages/apps/Email/tests/src/com/android/email/provider/ |
D | ProviderTestUtils.java | 257 att.mContent = "content " + fileName; in setupAttachment() 446 assertEquals(caller + " mContent", expect.mContent, actual.mContent); in assertAttachmentEqual()
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
D | EmailContent.java | 1140 public String mContent; // Not currently used field in EmailContent.Attachment 1291 mContent = cursor.getString(CONTENT_CONTENT_COLUMN); in restore() 1311 values.put(AttachmentColumns.CONTENT, mContent); in toContentValues() 1338 dest.writeString(mContent); in writeToParcel() 1363 mContent = in.readString(); in Attachment()
|