Searched defs:mContent (Results 1 - 19 of 19) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DHotseat.java36 private CellLayout mContent; field in class:Hotseat
74 return mContent;
83 return hasVerticalHotseat() ? (mContent.getCountY() - y - 1) : x;
90 return hasVerticalHotseat() ? (mContent.getCountY() - (rank + 1)) : 0;
101 mContent = (CellLayout) findViewById(R.id.layout);
102 mContent.setGridSize(mCellCountX, mCellCountY);
103 mContent.setIsHotseat(true);
109 mContent.removeAllViewsInLayout();
115 inflater.inflate(R.layout.application, mContent, false);
145 mContent
[all...]
H A DAppsCustomizeTabHost.java52 private LinearLayout mContent; field in class:AppsCustomizeTabHost
106 mContent = (LinearLayout) findViewById(R.id.apps_customize_content);
365 return mContent;
383 mContent.setVisibility(VISIBLE);
464 mContent.setVisibility(VISIBLE);
473 mContent.setVisibility(GONE);
H A DFolder.java72 protected CellLayout mContent; field in class:Folder
155 mContent = (CellLayout) findViewById(R.id.folder_content);
156 mContent.setGridSize(0, 0);
157 mContent.getShortcutsAndWidgets().setMotionEventSplittingEnabled(false);
158 mContent.setInvertIfRtl(true);
230 mContent.removeView(mCurrentDragView);
343 final int countX = mContent.getCountX();
431 mContent.getCountX(), mContent.getCountY()));
462 View firstChild = mContent
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DBaseContainerView.java46 private View mContent; field in class:BaseContainerView
89 mContent = findViewById(R.id.main_content);
105 return mContent;
140 mContent.setBackground(mRevealDrawable);
H A DHotseat.java47 private CellLayout mContent; field in class:Hotseat
79 return mContent;
86 return mContent.getShortcutsAndWidgets().getChildCount() > 1;
94 mContent.setOnLongClickListener(l);
99 return mHasVerticalHotseat ? (mContent.getCountY() - y - 1) : x;
108 return mHasVerticalHotseat ? (mContent.getCountY() - (rank + 1)) : 0;
115 mContent = (CellLayout) findViewById(R.id.layout);
117 mContent.setGridSize(1, (int) grid.inv.numHotseatIcons);
119 mContent.setGridSize((int) grid.inv.numHotseatIcons, 1);
121 mContent
[all...]
/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/Settings/src/com/android/settings/dashboard/
H A DSupportFragment.java72 private View mContent; field in class:SupportFragment
100 mContent = inflater.inflate(R.layout.support_fragment, container, false);
101 mRecyclerView = (RecyclerView) mContent.findViewById(R.id.support_items);
105 return mContent;
/packages/apps/Settings/src/com/android/settings/widget/
H A DChartView.java49 private Rect mContent = new Rect(); field in class:ChartView
97 mContent.set(getPaddingLeft(), getPaddingTop(), r - l - getPaddingRight(),
99 final int width = mContent.width();
100 final int height = mContent.height();
113 parentRect.set(mContent);
135 final Rect parentRect = new Rect(mContent);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationTipView.java56 private View mContent; field in class:ConversationTipView
73 mContent = LayoutInflater.from(mContext).inflate(getChildLayout(), this, false);
74 addView(mContent);
95 mSwipeableContent = mContent.findViewById(R.id.conversation_tip_swipeable_content);
96 mText = (TextView) mContent.findViewById(R.id.conversation_tip_text);
97 final ImageView startImage = (ImageView) mContent.findViewById(R.id.conversation_tip_icon1);
98 final ImageView dismiss = (ImageView) mContent.findViewById(R.id.dismiss_icon);
H A DMailboxSelectionActivity.java82 private View mContent; field in class:MailboxSelectionActivity
91 mContent = findViewById(R.id.content);
247 mContent.setVisibility(View.VISIBLE);
334 mContent.setVisibility(View.GONE);
381 mContent.setVisibility(View.VISIBLE);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
H A DDialogActivity.java103 private View mContent; field in class:DialogActivity
170 return mContent;
189 mContent = helium.inflate(mLayoutResId, null);
190 setContentView(mContent);
192 helium.inflate(R.layout.dialog_container, (ViewGroup) mContent);
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
H A DAllAppsGridAdapter.java95 public View mContent; field in class:AllAppsGridAdapter.ViewHolder
99 mContent = v;
502 BubbleTextView icon = (BubbleTextView) holder.mContent;
509 BubbleTextView icon = (BubbleTextView) holder.mContent;
515 TextView emptyViewText = (TextView) holder.mContent;
521 TextView searchView = (TextView) holder.mContent;
/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DMessageNotificationState.java100 protected CharSequence mContent = null; field in class:MessageNotificationState
372 mTickerText = state.mContent;
435 mContent = senders;
479 mContent = messageInfo.mText;
494 if (!TextUtils.isEmpty(mContent)) {
495 spanBuilder.append(mContent).append(System.getProperty("line.separator"));
501 mContent = spanBuilder;
506 mTickerText = mContent;
509 mContent = BugleNotifications.buildSpaceSeparatedMessage(
510 messageInfo.mAuthorFullName, mContent, mAttachmentUr
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DSettingsActivity.java412 private ViewGroup mContent; field in class:SettingsActivity
575 mContent = (ViewGroup) findViewById(R.id.main_content);
1024 TransitionManager.beginDelayedTransition(mContent);
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DContactEditorBaseFragment.java329 protected LinearLayout mContent; field in class:ContactEditorBaseFragment
1327 if (mContent != null) {
1328 int count = mContent.getChildCount();
1330 mContent.getChildAt(i).setEnabled(enabled);
/packages/apps/Launcher3/src/com/android/launcher3/folder/
H A DFolder.java100 * We avoid measuring {@link #mContent} with a 0 width or height, as this
148 @Thunk FolderPagedView mContent; field in class:Folder
225 mContent = (FolderPagedView) findViewById(R.id.folder_content);
226 mContent.setFolder(this);
311 mContent, CellLayout.FOLDER_ACCESSIBILITY_DRAG) {
334 mContent.removeItem(mCurrentDragView);
459 ArrayList<ShortcutInfo> overflow = mContent.bindItems(children);
534 mContent.completePendingPageChanges();
537 mContent.snapToPageImmediately(0);
567 int width = getPaddingLeft() + getPaddingRight() + mContent
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DEmailContent.java338 WeakReference<EmailContent> mContent; field in class:EmailContent.SelfContentObserver
342 mContent = new WeakReference<EmailContent>(content);
352 EmailContent content = mContent.get();
1364 public String mContent; // Not currently used field in class:EmailContent.Attachment
1554 mContent = cursor.getString(CONTENT_CONTENT_COLUMN);
1575 values.put(AttachmentColumns.CONTENT, mContent);
1603 dest.writeString(mContent);
1629 mContent = in.readString();
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DComposeActivity.java3789 private HashMap<String, Integer> mContent = new HashMap<String, Integer>(); field in class:ComposeActivity.RecipientTextWatcher
3811 for (Entry<String, Integer> entry : mContent.entrySet()) {
3819 if (!mContent.containsKey(recip)) {
3822 int count = mContent.get(recip) - 1;
3826 mContent.put(recip, count);
3837 if (!mContent.containsKey(recip)) {
3838 mContent.put(recip, 1);
3840 mContent.put(recip, (mContent.get(recip)) + 1);

Completed in 456 milliseconds