Searched refs:horizontal (Results 1 - 8 of 8) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
H A DGravityHelper.java46 /** Bitmask for a gravity which includes center horizontal */
49 /** Bitmask for a gravity which includes fill horizontal */
70 /** Bitmask for a gravity which includes any horizontal constraint */
188 int horizontal = gravity & GRAVITY_HORIZ_MASK;
191 if ((horizontal & (GRAVITY_LEFT|GRAVITY_START)) != 0) {
192 if ((horizontal & GRAVITY_LEFT) != 0) {
195 if ((horizontal & GRAVITY_START) != 0) {
201 } else if ((horizontal & (GRAVITY_RIGHT|GRAVITY_END)) != 0) {
202 if ((horizontal & GRAVITY_RIGHT) != 0) {
205 if ((horizontal
[all...]
H A DGridLayoutRule.java169 "horizontal", "vertical"), getCurrentOrientation(parentNode),
272 * defined, in which case the default horizontal value is returned)
390 String horizontal = GRAVITY_VALUE_LEFT;
393 horizontal = GRAVITY_VALUE_FILL_HORIZONTAL;
399 if (horizontal == GRAVITY_VALUE_FILL_HORIZONTAL
403 gravity = horizontal + '|' + vertical;
405 gravity = horizontal;
/sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
H A Dandroid-support-v7-gridlayout.jar ... int PENDING private static final int COMPLETE public final boolean horizontal public int definedCount private int maxIndex android.support. ...
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
H A DExplodedRenderingHelper.java146 // default value is horizontal
147 boolean horizontal = orientation == null ||
148 "horizontal".equals("vertical"); //$NON-NLS-1$ //$NON-NLS-2$
149 combineLinearLayout(childrenPadding.values(), padding, horizontal);
151 combineLinearLayout(childrenPadding.values(), padding, false /*horizontal*/);
181 * @param horizontal whether this layout is horizontal (<code>true</code>) or vertical
185 boolean horizontal) {
191 int sumIndex = horizontal ? 0 : 1;
193 int maxIndex = horizontal
184 combineLinearLayout(Collection<int[]> paddings, int[] resultPadding, boolean horizontal) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
H A DExplodeRenderingHelperTest.java41 // Single layout, horizontal, 2 buttons.
42 MockXmlNode layout = createLinearLayout(true /*horizontal*/,
51 // Single layout, horizontal, with 2 buttons.
53 MockXmlNode layout = createLinearLayout(false /*horizontal*/,
69 MockXmlNode layout = createLinearLayout(false /*horizontal*/,
71 createLinearLayout(true /*horizontal*/,
73 createLinearLayout(true /*horizontal*/,
91 createLinearLayout(true /*horizontal*/,
114 MockXmlNode linear1 = createLinearLayout(true /*horizontal*/,
118 MockXmlNode linear2 = createLinearLayout(true /*horizontal*/,
242 createLinearLayout(boolean horizontal, MockXmlNode[] children) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
H A DNinePatchedImage.java258 // horizontal
411 // find horizontal patches
419 Tick horizontal = getContentArea(mHorizontalContents);
428 if (horizontal != null) {
429 rect.x = horizontal.start;
430 rect.width = horizontal.getLength();
496 // find horizontal contents area
521 // find horizontal contents area
784 // horizontal stretch
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
H A DGridModel.java97 /** True if this is a vertical layout, and false if it is horizontal (the default) */
406 // Horizontal is the default, so if no value is specified it is horizontal.
882 Object horizontal = horizontalAxis.get(view);
884 Field locations = horizontal.getClass().getDeclaredField("locations"); //$NON-NLS-1$
887 Object horizontalLocations = locations.get(horizontal);
1324 * @param x the horizontal position
1366 * @param x the horizontal position
1656 // TODO: Only do this for horizontal layouts!
1709 // and the exact X location of the split is within the horizontal
1888 // place all horizontal spacer
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
H A DViewMetadataRepository.java667 } else if ("horizontal".equals(resize)) { //$NON-NLS-1$
668 return ResizePolicy.horizontal();

Completed in 200 milliseconds