Home
last modified time | relevance | path

Searched refs:mTop (Results 1 – 6 of 6) sorted by relevance

/sdk/emulator/qtools/
Dcallstack.h67 int getStackLevel() { return mTop; } in getStackLevel()
74 int mTop; // index of the next stack frame to write variable
127 mTop = 0; in CallStack()
218 if (mTop == 0) { in updateStack()
388 if (mTop >= mNumFrames) { in doPush()
395 fprintf(stderr, "Error: stack overflow (%d frames)\n", mTop); in doPush()
429 if (mTop > 0 in doPush()
430 && (mFrames[mTop - 1].function->flags & symbol_type::kIsVectorTable)) { in doPush()
431 retAddr = mFrames[mTop - 1].addr; in doPush()
452 && mTop > 0) { in doPush()
[all …]
Dcheck_stack.cpp181 int mTop = mStack->top; in compareStacks() local
182 int eTop = eStack->mTop; in compareStacks()
188 for (int ii = 0; ii < mTop; ++ii) { in compareStacks()
223 while (mIndex < mTop && mFrames[mIndex]->isNative) { in compareStacks()
226 if (mIndex >= mTop) in compareStacks()
242 int mTop = mStack->top; in dumpStacks() local
244 for (int ii = 0; ii < mTop; ii++) { in dumpStacks()
252 int eTop = eStack->mTop; in dumpStacks()
261 if (mIndex >= mTop || addr != mStack->frames[mIndex]->addr) { in dumpStacks()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
DLibraryProperties.java59 private Composite mTop; field in LibraryProperties
129 mTop = new Composite(parent, SWT.NONE); in LibraryProperties()
130 mTop.setLayout(new GridLayout(2, false)); in LibraryProperties()
131 mTop.setLayoutData(new GridData(GridData.FILL_BOTH)); in LibraryProperties()
132 mTop.setFont(parent.getFont()); in LibraryProperties()
133 mTop.addDisposeListener(new DisposeListener() { in LibraryProperties()
141 mTable = new Table(mTop, SWT.BORDER | SWT.FULL_SELECTION | SWT.SINGLE); in LibraryProperties()
157 Composite buttons = new Composite(mTop, SWT.NONE); in LibraryProperties()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
DGridModel.java122 private int[] mTop; field in GridModel
708 mTop = new int[ys.length]; in assignCellBoundsFromView()
713 mTop[i] = ys[i] + layoutBoundsY; in assignCellBoundsFromView()
749 mTop = new int[actualRowCount + 1]; in assignCellBoundsFromBounds()
751 mTop[i] = UNDEFINED; in assignCellBoundsFromBounds()
753 mTop[0] = layoutBounds.y; in assignCellBoundsFromBounds()
754 mTop[actualRowCount] = layoutBounds.y2(); in assignCellBoundsFromBounds()
769 if (mTop[row] == UNDEFINED) { in assignCellBoundsFromBounds()
770 mTop[row] = bounds.y; in assignCellBoundsFromBounds()
772 mTop[row] = Math.min(bounds.y, mTop[row]); in assignCellBoundsFromBounds()
[all …]
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
DPsdFile.java286 final int mTop; field in PsdFile.Layer
326 mTop = offset.y; in Layer()
380 out.writeInt(mTop); in write()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DRelativeLayoutConversionHelper.java997 private final int[] mTop; field in RelativeLayoutConversionHelper.Grid
1005 mTop = top; in Grid()
1166 return mTop[row + 1] - mTop[row]; in getRowHeight()
1264 out.printf("%" + cellWidth + "d", mTop[row]); //$NON-NLS-1$ //$NON-NLS-2$ in toString()
1424 private final Map<Integer, List<View>> mTop = new HashMap<Integer, List<View>>(); field in RelativeLayoutConversionHelper.EdgeList
1453 return mTop.get(topOffset); in getTopEdgeViews()
1487 return getOffsets(mTop.keySet(), mBottom.keySet()); in getRowOffsets()
1598 record(mTop, Integer.valueOf(bounds.y), view); in add()