Searched defs:mContent (Results 1 - 16 of 16) 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/Browser/src/com/android/browser/
H A DNavTabView.java32 private ViewGroup mContent; field in class:NavTabView
58 mContent = (ViewGroup) findViewById(R.id.main);
H A DPhoneUi.java308 ObjectAnimator tx = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
310 ObjectAnimator ty = ObjectAnimator.ofInt(mAnimScreen.mContent, "top",
312 ObjectAnimator tr = ObjectAnimator.ofInt(mAnimScreen.mContent, "right",
314 ObjectAnimator tb = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom",
396 mAnimScreen.mContent.setLeft(fromLeft);
397 mAnimScreen.mContent.setTop(fromTop);
398 mAnimScreen.mContent.setRight(fromRight);
399 mAnimScreen.mContent.setBottom(fromBottom);
407 ObjectAnimator l = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
409 ObjectAnimator t = ObjectAnimator.ofInt(mAnimScreen.mContent, "to
463 private ImageView mContent; field in class:PhoneUi.AnimScreen
[all...]
/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/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/Launcher3/src/com/android/launcher3/
H A DHotseat.java38 private CellLayout mContent; field in class:Hotseat
71 return mContent;
79 mContent.setOnLongClickListener(l);
88 return hasVerticalHotseat() ? (mContent.getCountY() - y - 1) : x;
95 return hasVerticalHotseat() ? (mContent.getCountY() - (rank + 1)) : 0;
108 mContent.cellToRect(cellX, cellY, 1, 1, coords);
115 int cWidth = mContent.getShortcutsAndWidgets().getCellContentWidth();
116 int cHeight = mContent.getShortcutsAndWidgets().getCellContentHeight();
131 mContent = (CellLayout) findViewById(R.id.layout);
133 mContent
[all...]
H A DAppsCustomizeTabHost.java52 private LinearLayout mContent; field in class:AppsCustomizeTabHost
88 FrameLayout.LayoutParams flp = (LayoutParams) mContent.getLayoutParams();
93 mContent.setLayoutParams(flp);
112 mContent = (LinearLayout) findViewById(R.id.apps_customize_content);
370 return mContent;
385 mContent.setVisibility(VISIBLE);
460 mContent.setVisibility(VISIBLE);
469 mContent.setVisibility(GONE);
H A DFolder.java78 protected CellLayout mContent; field in class:Folder
172 mContent = (CellLayout) findViewById(R.id.folder_content);
177 mContent.setCellDimensions(grid.folderCellWidthPx, grid.folderCellHeightPx);
178 mContent.setGridSize(0, 0);
179 mContent.getShortcutsAndWidgets().setMotionEventSplittingEnabled(false);
180 mContent.setInvertIfRtl(true);
246 mContent.removeView(mCurrentDragView);
359 final int countX = mContent.getCountX();
447 mContent.getCountX(), mContent
[all...]
/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/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);
129 final Rect parentRect = new Rect(mContent);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DMailboxSelectionActivity.java82 private View mContent; field in class:MailboxSelectionActivity
89 mContent = findViewById(R.id.content);
249 mContent.setVisibility(View.VISIBLE);
335 mContent.setVisibility(View.GONE);
382 mContent.setVisibility(View.VISIBLE);
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DContactEditorFragment.java238 private LinearLayout mContent; field in class:ContactEditorFragment
335 if (mContent != null) {
336 int count = mContent.getChildCount();
338 mContent.getChildAt(i).setEnabled(enabled);
378 mContent = (LinearLayout) view.findViewById(R.id.editors);
783 mContent.removeAllViews();
801 R.layout.raw_contact_readonly_editor_view, mContent, false);
805 mContent, false);
821 mContent.addView(editor);
879 mContent
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DEmailContent.java1240 public String mContent; // Not currently used field in class:EmailContent.Attachment
1430 mContent = cursor.getString(CONTENT_CONTENT_COLUMN);
1451 values.put(AttachmentColumns.CONTENT, mContent);
1479 dest.writeString(mContent);
1505 mContent = in.readString();
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DComposeActivity.java3286 private HashMap<String, Integer> mContent = new HashMap<String, Integer>(); field in class:ComposeActivity.RecipientTextWatcher
3308 for (Entry<String, Integer> entry : mContent.entrySet()) {
3316 if (!mContent.containsKey(recip)) {
3319 int count = mContent.get(recip) - 1;
3323 mContent.put(recip, count);
3343 if (!mContent.containsKey(recip)) {
3344 mContent.put(recip, 1);
3346 mContent.put(recip, (mContent.get(recip)) + 1);

Completed in 2021 milliseconds