Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
DExplodeRenderingHelperTest.java30 private final HashSet<String> mLayoutNames = new HashSet<String>(); field in ExplodeRenderingHelperTest
36 mLayoutNames.add("LinearLayout"); in setUp()
37 mLayoutNames.add("RelativeLayout"); in setUp()
45 ExplodedRenderingHelper helper = new ExplodedRenderingHelper(layout, mLayoutNames); in testSingleHorizontalLinearLayout()
56 ExplodedRenderingHelper helper = new ExplodedRenderingHelper(layout, mLayoutNames); in testSingleVerticalLinearLayout()
77 ExplodedRenderingHelper helper = new ExplodedRenderingHelper(layout, mLayoutNames); in testEmbeddedLinearLayouts()
95 ExplodedRenderingHelper helper = new ExplodedRenderingHelper(layout, mLayoutNames); in testSimpleRelativeLayoutWithOneLinearLayouts()
128 ExplodedRenderingHelper helper = new ExplodedRenderingHelper(layout, mLayoutNames); in RelativeLayoutWithVerticalLinearLayouts()
161 ExplodedRenderingHelper helper = new ExplodedRenderingHelper(layout, mLayoutNames); in RelativeLayoutWithVerticalLinearLayouts2()
230 ExplodedRenderingHelper helper = new ExplodedRenderingHelper(layout, mLayoutNames); in ComplexRelativeLayout()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
DExplodedRenderingHelper.java57 private Set<String> mLayoutNames; field in ExplodedRenderingHelper
71 mLayoutNames = new HashSet<String>(); in ExplodedRenderingHelper()
74 mLayoutNames.add(desc.getXmlLocalName()); in ExplodedRenderingHelper()
88 mLayoutNames = layoutNames; in ExplodedRenderingHelper()
169 if (mLayoutNames.contains(localName)) { in computePadding()