/packages/apps/Launcher2/src/com/android/launcher2/ |
D | Hotseat.java | 35 private CellLayout mContent; field in Hotseat 68 return mContent; in getLayout() 73 return mIsLandscape ? (mContent.getCountY() - y - 1) : x; in getOrderInHotseat() 80 return mIsLandscape ? (mContent.getCountY() - (rank + 1)) : 0; in getCellYFromOrder() 91 mContent = (CellLayout) findViewById(R.id.layout); in onFinishInflate() 92 mContent.setGridSize(mCellCountX, mCellCountY); in onFinishInflate() 93 mContent.setIsHotseat(true); in onFinishInflate() 99 mContent.removeAllViewsInLayout(); in resetLayout() 105 inflater.inflate(R.layout.application, mContent, false); in resetLayout() 135 mContent.addViewToCellLayout(allAppsButton, -1, 0, lp, true); in resetLayout()
|
D | Folder.java | 74 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 | 54 private LinearLayout mContent; field in AppsCustomizeTabHost 113 mContent = (LinearLayout) findViewById(R.id.apps_customize_content); in onFinishInflate() 374 return mContent; in getContent() 392 mContent.setVisibility(VISIBLE); in onLauncherTransitionPrepare() 470 mContent.setVisibility(VISIBLE); in onWindowVisible() 479 mContent.setVisibility(GONE); in onTrimMemory()
|
/packages/apps/Browser/src/com/android/browser/ |
D | PhoneUi.java | 290 ObjectAnimator tx = ObjectAnimator.ofInt(mAnimScreen.mContent, "left", in showNavScreen() 292 ObjectAnimator ty = ObjectAnimator.ofInt(mAnimScreen.mContent, "top", in showNavScreen() 294 ObjectAnimator tr = ObjectAnimator.ofInt(mAnimScreen.mContent, "right", in showNavScreen() 296 ObjectAnimator tb = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom", in showNavScreen() 377 mAnimScreen.mContent.setLeft(fromLeft); in hideNavScreen() 378 mAnimScreen.mContent.setTop(fromTop); in hideNavScreen() 379 mAnimScreen.mContent.setRight(fromRight); in hideNavScreen() 380 mAnimScreen.mContent.setBottom(fromBottom); in hideNavScreen() 388 ObjectAnimator l = ObjectAnimator.ofInt(mAnimScreen.mContent, "left", in hideNavScreen() 390 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 | 226 private LinearLayout mContent; field in ContactEditorFragment 308 if (mContent != null) { in setEnabled() 309 int count = mContent.getChildCount(); in setEnabled() 311 mContent.getChildAt(i).setEnabled(enabled); in setEnabled() 344 mContent = (LinearLayout) view.findViewById(R.id.editors); in onCreateView() 685 mContent.removeAllViews(); in bindEditors() 705 R.layout.raw_contact_readonly_editor_view, mContent, false); in bindEditors() 709 mContent, false); in bindEditors() 725 mContent.addView(editor); in bindEditors() 780 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 | 1137 public String mContent; // Not currently used field in EmailContent.Attachment 1288 mContent = cursor.getString(CONTENT_CONTENT_COLUMN); in restore() 1308 values.put(AttachmentColumns.CONTENT, mContent); in toContentValues() 1335 dest.writeString(mContent); in writeToParcel() 1360 mContent = in.readString(); in Attachment()
|