HomeSort by relevance Sort by last modified time
    Searched refs:HORIZONTAL (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/webkit/WebCore/dom/
OverflowEvent.idl 28 const unsigned short HORIZONTAL = 0;
OverflowEvent.cpp 51 m_orient = HORIZONTAL;
OverflowEvent.h 37 HORIZONTAL = 1,
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ClipDrawableTest.java 58 new ClipDrawable((Drawable) null, Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
61 new ClipDrawable(bmpDrawable, Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
76 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
99 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
107 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
121 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
125 clipDrawable = new ClipDrawable(mockDrawable, Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
141 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
147 clipDrawable = new ClipDrawable(bmpDrawable, Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
161 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
    [all...]
  /external/webkit/WebCore/rendering/
RenderFlexibleBox.h 58 bool isHorizontal() const { return style()->boxOrient() == HORIZONTAL; }
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
GoneParentFocusedChild.java 59 mLayout.setOrientation(LinearLayout.HORIZONTAL);
66 mGoneGroup.setOrientation(LinearLayout.HORIZONTAL);
AdjacentVerticalRectLists.java 67 mLayout.setOrientation(LinearLayout.HORIZONTAL);
HorizontalFocusSearch.java 62 mLayout.setOrientation(LinearLayout.HORIZONTAL);
VerticalFocusSearch.java 29 * Holds a few buttons of various sizes and horizontal placements in a
134 ll.setOrientation(LinearLayout.HORIZONTAL);
  /external/junit/src/junit/swingui/
CounterPanel.java 39 GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL,
48 GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL,
57 GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL,
TestRunner.java 456 addGrid(panel, suiteLabel, 0, 0, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
457 addGrid(panel, fSuiteCombo, 0, 1, 1, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
459 addGrid(panel, fRun, 2, 1, 1, GridBagConstraints.HORIZONTAL, 0.0, GridBagConstraints.CENTER);
462 //addGrid(panel, new JSeparator(), 0, 3, 3, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
465 addGrid(panel, fProgressIndicator, 0, 3, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
469 addGrid(panel, new JSeparator(), 0, 5, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
470 addGrid(panel, new JLabel("Results:"), 0, 6, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
475 addGrid(panel, failedPanel, 2, 7, 1, GridBagConstraints.HORIZONTAL, 0.0, GridBagConstraints.NORTH/*CENTER*/);
477 addGrid(panel, fStatusLine, 0, 9, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.CENTER);
478 addGrid(panel, fQuitButton, 2, 9, 1, GridBagConstraints.HORIZONTAL, 0.0, GridBagConstraints.CENTER)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiSeparatorAttributeNode.java 87 Label sep = toolkit.createSeparator(row, SWT.HORIZONTAL);
95 sep = toolkit.createSeparator(row, SWT.HORIZONTAL);
  /external/junit/src/junit/awtui/
TestRunner.java 300 addGrid(panel, suiteLabel, 0, 0, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
302 addGrid(panel, fSuiteField, 0, 1, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
303 addGrid(panel, fRun, 2, 1, 1, GridBagConstraints.HORIZONTAL, 0.0, GridBagConstraints.CENTER);
305 addGrid(panel, fProgressIndicator, 0, 3, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
310 addGrid(panel, failureLabel, 0, 5, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
312 addGrid(panel, failedPanel, 2, 6, 1, GridBagConstraints.HORIZONTAL, 0.0, GridBagConstraints.CENTER);
315 addGrid(panel, fStatusLine, 0, 8, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.CENTER);
316 addGrid(panel, fQuitButton, 2, 8, 1, GridBagConstraints.HORIZONTAL, 0.0, GridBagConstraints.CENTER);
336 GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL,
350 GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL,
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
InternalSelectionFocus.java 47 layout.setOrientation(LinearLayout.HORIZONTAL);
LinearLayout8.java 32 * Demonstrates horizontal and vertical gravity
80 mLinearLayout.setOrientation(LinearLayout.HORIZONTAL);
  /external/proguard/src/proguard/gui/
FilterDialog.java 73 textConstraints.fill = GridBagConstraints.HORIZONTAL;
85 textFieldConstraints.fill = GridBagConstraints.HORIZONTAL;
92 panelConstraints.fill = GridBagConstraints.HORIZONTAL;
TabbedPane.java 75 buttonConstraints.fill = GridBagConstraints.HORIZONTAL;
OptimizationsDialog.java 68 constraintsLastStretch.fill = GridBagConstraints.HORIZONTAL;
75 panelConstraints.fill = GridBagConstraints.HORIZONTAL;
MemberSpecificationDialog.java 87 constraintsStretch.fill = GridBagConstraints.HORIZONTAL;
99 constraintsLastStretch.fill = GridBagConstraints.HORIZONTAL;
106 panelConstraints.fill = GridBagConstraints.HORIZONTAL;
  /frameworks/base/graphics/java/android/graphics/drawable/
ClipDrawable.java 52 public static final int HORIZONTAL = 1;
60 * @param orientation Bitwise-or of {@link #HORIZONTAL} and/or {@link #VERTICAL}
85 HORIZONTAL);
201 if ((mClipState.mOrientation & HORIZONTAL) != 0) {
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
AdjacentListsWithAdjacentISVsInside.java 91 ll.setOrientation(LinearLayout.HORIZONTAL);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
OccurrenceRenderer.java 80 if (orientation == PlotOrientation.HORIZONTAL) {
  /cts/tests/src/android/widget/cts/util/
ListItemFactory.java 84 * Create a horizontal linear layout divided into thirds (with some margins
94 ll.setOrientation(LinearLayout.HORIZONTAL);
237 ll.setOrientation(LinearLayout.HORIZONTAL);
  /frameworks/base/core/tests/coretests/src/android/util/
ListItemFactory.java 84 * Create a horizontal linear layout divided into thirds (with some margins
94 ll.setOrientation(LinearLayout.HORIZONTAL);
238 ll.setOrientation(LinearLayout.HORIZONTAL);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
EditFilterDialog.java 176 l = new Label(mShell, SWT.SEPARATOR | SWT.HORIZONTAL);
262 l = new Label(mShell, SWT.SEPARATOR | SWT.HORIZONTAL);

Completed in 661 milliseconds

1 2 3 4