Lines Matching refs:getInt
68 left = getInt("mLeft", 0); in decode()
69 top = getInt("mTop", 0); in decode()
70 width = getInt("getWidth()", 0); in decode()
71 height = getInt("getHeight()", 0); in decode()
72 scrollX = getInt("mScrollX", 0); in decode()
73 scrollY = getInt("mScrollY", 0); in decode()
74 paddingLeft = getInt("mPaddingLeft", 0); in decode()
75 paddingRight = getInt("mPaddingRight", 0); in decode()
76 paddingTop = getInt("mPaddingTop", 0); in decode()
77 paddingBottom = getInt("mPaddingBottom", 0); in decode()
78 marginLeft = getInt("layout_leftMargin", Integer.MIN_VALUE); in decode()
79 marginRight = getInt("layout_rightMargin", Integer.MIN_VALUE); in decode()
80 marginTop = getInt("layout_topMargin", Integer.MIN_VALUE); in decode()
81 marginBottom = getInt("layout_bottomMargin", Integer.MIN_VALUE); in decode()
82 baseline = getInt("getBaseline()", 0); in decode()
106 private int getInt(String name, int defaultValue) { in getInt() method in ViewNode