Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DSimpleElement.java45 private final Rect mParentBounds; field in SimpleElement
68 mParentBounds = parentBounds == null ? new Rect() : parentBounds.copy(); in SimpleElement()
106 return mParentBounds; in getParentBounds()
196 if (mParentBounds != null && mParentBounds.isValid()) { in toString()
198 mParentBounds.x, mParentBounds.y, mParentBounds.w, mParentBounds.h)); in toString()
333 if ((mParentBounds == null && se.mParentBounds != null) || in equals()
334 (mParentBounds != null && !mParentBounds.equals(se.mParentBounds))) { in equals()
359 if (mParentBounds != null && mParentBounds.isValid()) { in hashCode()
360 c = 31*c + mParentBounds.hashCode(); in hashCode()