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

1 2 3 4

  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
WebContent.java 28 private final String mContent;
32 mContent = content;
47 return mContent;
  /cts/tests/tests/systemui/src/android/systemui/cts/
LightStatusBarActivity.java 30 private View mContent;
35 mContent = new View(this);
36 mContent.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,
38 setContentView(mContent);
52 return mContent.getLocationOnScreen()[1];
56 return mContent.getWidth();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DismissView.java 45 mContent.setOnClickListener(listener);
49 return touchX < mContent.getX()
50 || touchX > mContent.getX() + mContent.getWidth()
51 || touchY < mContent.getY()
52 || touchY > mContent.getY() + mContent.getHeight();
NotificationOverflowContainer.java 36 private View mContent;
48 mContent = findViewById(R.id.content);
49 mViewInvertHelper = new ViewInvertHelper(mContent,
67 return mContent;
StackScrollerDecorView.java 32 protected View mContent;
43 mContent = findContentView();
88 mContent.animate()
110 mContent.setAlpha(0.0f);
133 mContent.animate().cancel();
  /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;
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.getChildAt(0, 0)
    [all...]
  /frameworks/support/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/widget/
DecorCaptionView.java 91 private View mContent;
241 if (mContent != null) {
242 mTouchDispatchList.add(mContent);
278 mContent = child;
290 if (mContent != null) {
292 measureChildWithMargins(mContent, widthMeasureSpec, 0, heightMeasureSpec, 0);
294 measureChildWithMargins(mContent, widthMeasureSpec, 0, heightMeasureSpec,
317 if (mContent != null) {
319 mContent.layout(0, 0, mContent.getMeasuredWidth(), mContent.getMeasuredHeight())
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Hotseat.java 47 private CellLayout mContent;
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.setIsHotseat(true)
    [all...]
BaseContainerView.java 46 private View mContent;
89 mContent = findViewById(R.id.main_content);
105 return mContent;
140 mContent.setBackground(mRevealDrawable);
  /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/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
PhotoItem.java 22 private String mContent;
31 mContent = content;
44 return mContent;
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
Folder.java 100 * We avoid measuring {@link #mContent} with a 0 width or height, as this
148 @Thunk FolderPagedView mContent;
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.getDesiredWidth()
    [all...]
  /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/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 98 mContent = (LinearLayout) view.findViewById(R.id.editors);
153 int editorCount = mContent.getChildCount();
155 BaseRawContactEditorView editor = (BaseRawContactEditorView) mContent.getChildAt(i);
187 mContent.removeAllViews();
209 R.layout.raw_contact_readonly_editor_view, mContent, false);
212 mContent, false);
232 mContent.addView(editor);
299 mContent.setVisibility(View.VISIBLE);
309 for (int i = 0; i < mContent.getChildCount(); i++) {
310 final View view = mContent.getChildAt(i)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationTipView.java 56 private View mContent;
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);
  /frameworks/base/tests/SystemUIDemoModeController/src/com/example/android/demomodecontroller/
DemoModeController.java 44 private View mContent;
58 mContent = new View(mContext);
59 mContent.setBackgroundColor(0xff33b5e5);
60 mContent.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
63 mContent.setOnTouchListener(this);
64 setContentView(mContent);
120 final int h = mContent.getMeasuredHeight();
121 final int w = mContent.getMeasuredWidth();
134 mContent.setBackgroundColor(color);
  /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;
GameActivity.java 163 Content mContent;
173 mContent = (Content)findViewById(R.id.content);
174 mContent.init(this, (Button)findViewById(R.id.play));
187 mContent.setGamePaused(true);
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
DrawerLayoutDoubleActivity.java 42 private TextView mContent;
58 mContent = (TextView) findViewById(R.id.content_text);
114 mContent.setText(Shakespeare.DIALOGUE[position]);
  /frameworks/base/core/java/android/widget/
SlidingDrawer.java 105 private View mContent;
268 mContent = findViewById(mContentId);
269 if (mContent == null) {
273 mContent.setVisibility(View.GONE);
293 mContent.measure(MeasureSpec.makeMeasureSpec(widthSpecSize, MeasureSpec.EXACTLY),
297 mContent.measure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
313 final Bitmap cache = mContent.getDrawingCache();
324 drawChild(canvas, mContent, drawingTime);
328 drawChild(canvas, mContent, drawingTime);
349 final View content = mContent;
    [all...]
  /frameworks/av/include/media/stagefright/foundation/
ParsedMessage.h 51 AString mContent;
  /packages/apps/Settings/src/com/android/settings/dashboard/
SupportFragment.java 72 private View mContent;
100 mContent = inflater.inflate(R.layout.support_fragment, container, false);
101 mRecyclerView = (RecyclerView) mContent.findViewById(R.id.support_items);
105 return mContent;

Completed in 7441 milliseconds

1 2 3 4