HomeSort by relevance Sort by last modified time
    Searched defs:mTop (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
FixedSizeDrawable.java 28 int mTop;
38 mTop = t;
44 mDrawable.setBounds(mLeft, mTop, mRight, mBottom);
48 mDrawable.setBounds(mLeft, mTop, mRight, mBottom);
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
VerticalGravityTest.java 36 private View mTop;
52 mTop = activity.findViewById(R.id.cell_top);
62 assertNotNull(mTop);
69 ViewAsserts.assertTopAligned(mReference1, mTop);
  /packages/apps/Mms/src/com/android/mms/model/
RegionModel.java 25 private int mTop;
45 mTop = top;
89 * @return the mTop
92 return mTop;
96 * @param top the mTop to set
99 mTop = top;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 59 private Composite mTop;
129 mTop = new Composite(parent, SWT.NONE);
130 mTop.setLayout(new GridLayout(2, false));
131 mTop.setLayoutData(new GridData(GridData.FILL_BOTH));
132 mTop.setFont(parent.getFont());
133 mTop.addDisposeListener(new DisposeListener() {
141 mTable = new Table(mTop, SWT.BORDER | SWT.FULL_SELECTION | SWT.SINGLE);
157 Composite buttons = new Composite(mTop, SWT.NONE);
  /sdk/ddms/app/src/com/android/ddms/
PrefsDialog.java 531 private Composite mTop;
542 mTop = new Composite(parent, SWT.NONE);
543 mTop.setLayout(new GridLayout(1, false));
544 mTop.setLayoutData(new GridData(GridData.FILL_BOTH));
546 Label text = new Label(mTop, SWT.WRAP);
550 Link privacyPolicyLink = new Link(mTop, SWT.WRAP);
560 SdkStatsPermissionDialog.CHECKBOX_TEXT, mTop);
570 if (mTop != null) {
571 return mTop.computeSize(450, SWT.DEFAULT, true);
  /cts/tests/src/android/view/cts/
GestureDetectorStubActivity.java 46 private Button mTop;
61 mTop = new Button(this);
70 mViewGroup.addView(mTop);
  /frameworks/av/include/media/stagefright/foundation/
AMessage.h 121 int32_t mLeft, mTop, mRight, mBottom;
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
ViewInfo.java 31 private final int mTop;
55 mTop = top;
115 return mTop;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 44 Matrix.frustumM(mMatrix, mTop, left, right, bottom, top, near, far);
55 Matrix.setIdentityM(mMatrix, mTop);
59 System.arraycopy(m, offset, mMatrix, mTop, MATRIX_SIZE);
63 m.get(mMatrix, mTop, MATRIX_SIZE);
68 mMatrix[mTop + i] = fixedToFloat(m[offset + i]);
74 mMatrix[mTop + i] = fixedToFloat(m.get());
79 System.arraycopy(mMatrix, mTop, mTemp, 0, MATRIX_SIZE);
80 Matrix.multiplyMM(mMatrix, mTop, mTemp, 0, m, offset);
104 Matrix.orthoM(mMatrix, mTop, left, right, bottom, top, near, far);
121 System.arraycopy(mMatrix, mTop, mMatrix, mTop + MATRIX_SIZE
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
BasePieView.java 44 protected int mTop;
138 || (evty < mTop) || (evty >= mTop + mHeight)) {
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKey.java 75 public int mTop;
121 mTop = (int) (mTopF * skbHeight);
205 return mBottom - mTop;
210 && mTop - MAX_MOVE_TOLERANCE_Y <= y
SoftKeyboard.java 217 keyRow.mTop = (int) (skbCoreHeight * keyRow.mTopF);
311 if (keyRow.mTop > y && keyRow.mBottom <= y) continue;
317 if (sKey.mLeft <= x && sKey.mTop <= y && sKey.mRight > x
332 if (keyRow.mTop > y && keyRow.mBottom <= y) continue;
339 int disy = (sKey.mTop + sKey.mBottom) / 2 - y;
517 int mTop;
  /sdk/emulator/qtools/
check_stack.cpp 181 int mTop = mStack->top;
182 int eTop = eStack->mTop;
188 for (int ii = 0; ii < mTop; ++ii) {
223 while (mIndex < mTop && mFrames[mIndex]->isNative) {
226 if (mIndex >= mTop)
242 int mTop = mStack->top;
244 for (int ii = 0; ii < mTop; ii++) {
252 int eTop = eStack->mTop;
261 if (mIndex >= mTop || addr != mStack->frames[mIndex]->addr) {
callstack.h 67 int getStackLevel() { return mTop; }
74 int mTop; // index of the next stack frame to write
127 mTop = 0;
218 if (mTop == 0) {
388 if (mTop >= mNumFrames) {
395 fprintf(stderr, "Error: stack overflow (%d frames)\n", mTop);
429 if (mTop > 0
430 && (mFrames[mTop - 1].function->flags & symbol_type::kIsVectorTable)) {
431 retAddr = mFrames[mTop - 1].addr;
452 && mTop > 0)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
HeapPanel.java 124 private Composite mTop; // real top
232 mTop.getDisplay().asyncExec(new Runnable() {
260 if (mTop.isDisposed())
314 mTop = new Composite(parent, SWT.NONE);
315 mTop.setLayout(new GridLayout(1, false));
316 mTop.setLayoutData(new GridData(GridData.FILL_BOTH));
318 mUpdateStatus = new Label(mTop, SWT.NONE);
321 Composite summarySection = new Composite(mTop, SWT.NONE);
339 Composite comboSection = new Composite(mTop, SWT.NONE);
358 mDisplayBase = new Composite(mTop, SWT.NONE)
    [all...]
  /frameworks/av/include/media/stagefright/
MetaData.h 254 int32_t mLeft, mTop, mRight, mBottom;
  /packages/apps/Mms/src/com/android/mms/ui/
SlideView.java 421 mTop = top;
424 public int mTop;
501 int t1 = p1.mTop;
503 int t2 = p2.mTop;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
PsdFile.java 286 final int mTop;
326 mTop = offset.y;
380 out.writeInt(mTop);
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/util/
PsdFile.java 333 final int mTop;
385 mTop = offset.y;
439 out.writeInt(mTop);
  /frameworks/base/core/java/android/view/
SurfaceView.java 152 int mTop = -1;
418 || mLeft != mLocation[0] || mTop != mLocation[1]
425 + " top=" + (mTop != mLocation[1]));
430 mTop = mLocation[1];
439 mLayout.y = mTop;
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
StringFormatDetector.java     [all...]
  /frameworks/base/core/java/android/widget/
RelativeLayout.java 430 top = Math.min(top, params.mTop - params.topMargin);
449 top = Math.min(top, params.mTop - params.topMargin);
512 params.mTop = height - mPaddingBottom - childHeight;
513 params.mBottom = params.mTop + childHeight;
542 params.mTop += verticalOffset;
560 int offset = anchorParams.mTop + anchorBaseline;
565 int height = params.mBottom - params.mTop;
566 params.mTop = offset;
567 params.mBottom = params.mTop + height;
575 if (params.mTop < lp.mTop || (params.mTop == lp.mTop && params.mLeft < lp.mLeft))
    [all...]
  /frameworks/base/libs/hwui/
DisplayListRenderer.h 313 if (top != mTop) {
314 mTop = top;
315 mHeight = mBottom - mTop;
335 mHeight = mBottom - mTop;
343 if (left != mLeft || top != mTop) {
345 mTop = top;
347 mHeight = mBottom - mTop;
355 if (left != mLeft || top != mTop || right != mRight || bottom != mBottom) {
357 mTop = top;
361 mHeight = mBottom - mTop;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 112 private int[] mTop;
586 mTop = new int[ys.length];
591 mTop[i] = ys[i] + layoutBoundsY;
627 mTop = new int[actualRowCount + 1];
629 mTop[i] = UNDEFINED;
631 mTop[0] = layoutBounds.y;
632 mTop[actualRowCount] = layoutBounds.y2();
647 if (mTop[row] == UNDEFINED) {
648 mTop[row] = bounds.y;
650 mTop[row] = Math.min(bounds.y, mTop[row])
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java     [all...]

Completed in 755 milliseconds

1 2