HomeSort by relevance Sort by last modified time
    Searched refs:mContent (Results 1 - 25 of 31) sorted by null

1 2

  /packages/apps/Mms/src/com/android/mms/transaction/
ProgressCallbackEntity.java 37 private final byte[] mContent;
44 mContent = b;
58 int pos = 0, totalLen = mContent.length;
64 outstream.write(mContent, pos, len);
  /packages/apps/Launcher2/src/com/android/launcher2/
Hotseat.java 36 private CellLayout mContent;
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.addViewToCellLayout(allAppsButton, -1, 0, lp, true)
    [all...]
Folder.java 72 protected CellLayout mContent;
156 mContent = (CellLayout) findViewById(R.id.folder_content);
157 mContent.setGridSize(0, 0);
158 mContent.getShortcutsAndWidgets().setMotionEventSplittingEnabled(false);
159 mContent.setInvertIfRtl(true);
231 mContent.removeView(mCurrentDragView);
344 final int countX = mContent.getCountX();
432 mContent.getCountX(), mContent.getCountY()));
466 View firstChild = mContent.getChildAt(0, 0)
    [all...]
AppsCustomizeTabHost.java 52 private LinearLayout mContent;
106 mContent = (LinearLayout) findViewById(R.id.apps_customize_content);
365 return mContent;
383 mContent.setVisibility(VISIBLE);
464 mContent.setVisibility(VISIBLE);
473 mContent.setVisibility(GONE);
  /development/samples/Support4Demos/src/com/example/android/supportv4/media/
TransportControllerActivity.java 43 private Content mContent;
53 mContent.start();
57 mContent.pause();
61 mContent.pause();
65 return mContent.getDuration();
69 return mContent.getCurrentPosition();
73 mContent.seekTo((int)pos);
77 return mContent.isPlaying();
81 return mContent.getBufferPercentage();
88 if (mContent.canPause())
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
PlatLogoActivity.java 37 ImageView mContent;
94 mContent = new ImageView(this);
95 mContent.setImageResource(com.android.internal.R.drawable.platlogo_alt);
96 mContent.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
99 mContent.setPadding(p, p, p, p);
101 mContent.setOnClickListener(new View.OnClickListener() {
105 mContent.setImageResource(com.android.internal.R.drawable.platlogo);
109 mContent.setOnLongClickListener(new View.OnLongClickListener() {
127 setContentView(mContent);
  /packages/apps/Tag/src/com/android/apps/tag/record/
MimeRecord.java 40 private final byte[] mContent;
45 mContent = Arrays.copyOf(content, content.length);
55 return Arrays.copyOf(mContent, mContent.length);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextureViewActivity.java 43 private FrameLayout mContent;
50 mContent = new FrameLayout(this);
83 mContent.removeView(mTextureView);
85 mContent.addView(mTextureView);
91 mContent.addView(mTextureView, new FrameLayout.LayoutParams(
94 mContent.addView(button, new FrameLayout.LayoutParams(
97 setContentView(mContent);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
HttpHelper.java 100 private String mContent;
110 mContent = content;
114 return mContent;
  /packages/apps/Browser/src/com/android/browser/
PhoneUi.java 308 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, "top"
    [all...]
NavTabView.java 32 private ViewGroup mContent;
58 mContent = (ViewGroup) findViewById(R.id.main);
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarOverlayLayout.java 39 private View mContent;
292 applyInsets(mContent, mContentInsets, true, true, true, true);
302 measureChildWithMargins(mContent, widthMeasureSpec, 0, heightMeasureSpec, 0);
303 lp = (LayoutParams) mContent.getLayoutParams();
305 mContent.getMeasuredWidth() + lp.leftMargin + lp.rightMargin);
307 mContent.getMeasuredHeight() + lp.topMargin + lp.bottomMargin);
308 childState = combineMeasuredStates(childState, mContent.getMeasuredState());
360 if (mContent == null) {
361 mContent = findViewById(com.android.internal.R.id.content);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete4.java 59 mContent = context.getContentResolver();
91 return mContent.query(uri, CONTACT_PROJECTION, null, null, null);
94 private ContentResolver mContent;
ContentBrowserActivity.java 161 Content mContent;
173 mContent = (Content)findViewById(R.id.content);
174 mContent.init((TextView)findViewById(R.id.title),
233 mContent.setBaseSystemUiVisibility(item.isChecked()
VideoPlayerActivity.java 184 Content mContent;
196 mContent = (Content)findViewById(R.id.content);
197 mContent.init(this, (TextView)findViewById(R.id.title),
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarOverlayLayout.java 38 private View mContent;
93 if (mContent == null) {
94 mContent = findViewById(R.id.action_bar_activity_content);
  /frameworks/base/core/java/android/widget/
SlidingDrawer.java 107 private View mContent;
250 mContent = findViewById(mContentId);
251 if (mContent == null) {
255 mContent.setVisibility(View.GONE);
275 mContent.measure(MeasureSpec.makeMeasureSpec(widthSpecSize, MeasureSpec.EXACTLY),
279 mContent.measure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
295 final Bitmap cache = mContent.getDrawingCache();
306 drawChild(canvas, mContent, drawingTime);
310 drawChild(canvas, mContent, drawingTime);
331 final View content = mContent;
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/
ParsedMessage.h 51 AString mContent;
ParsedMessage.cpp 81 return mContent.c_str();
166 mContent.setTo(&data[offset], contentLength);
228 line.append(mContent);
  /packages/apps/Settings/src/com/android/settings/widget/
ChartView.java 49 private Rect mContent = new Rect();
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);
  /development/samples/Support4Demos/src/com/example/android/supportv4/widget/
DrawerLayoutActivity.java 73 private TextView mContent;
87 mContent = (TextView) findViewById(R.id.content_text);
138 mContent.setText(Shakespeare.DIALOGUE[position]);
SlidingPaneLayoutActivity.java 67 private TextView mContent;
79 mContent = (TextView) findViewById(R.id.content_text);
115 mContent.setText(Shakespeare.DIALOGUE[position]);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
UniverseBackground.java 46 final View mContent;
101 mContent = View.inflate(context, R.layout.universe, null);
102 addView(mContent);
103 mContent.findViewById(R.id.close).setOnClickListener(new View.OnClickListener() {
108 mBottomAnchor = mContent.findViewById(R.id.bottom);
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.h 32 sp<ABuffer> mContent;
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 237 private LinearLayout mContent;
334 if (mContent != null) {
335 int count = mContent.getChildCount();
337 mContent.getChildAt(i).setEnabled(enabled);
377 mContent = (LinearLayout) view.findViewById(R.id.editors);
782 mContent.removeAllViews();
800 R.layout.raw_contact_readonly_editor_view, mContent, false);
804 mContent, false);
    [all...]

Completed in 848 milliseconds

1 2