/external/chromium_org/third_party/WebKit/Source/core/events/ |
OverflowEvent.idl | 30 const unsigned short VERTICAL = 1;
|
OverflowEvent.cpp | 42 , m_orient(VERTICAL) 62 m_orient = VERTICAL;
|
OverflowEvent.h | 45 VERTICAL = 1,
|
/external/chromium_org/ui/views/ |
view_model_utils_unittest.cc | 53 // Try the same when vertical. 59 model, &v1, ViewModelUtils::VERTICAL, 0, -10)); 61 model, &v1, ViewModelUtils::VERTICAL, 0, 4)); 63 model, &v1, ViewModelUtils::VERTICAL, 0, 506)); 65 model, &v1, ViewModelUtils::VERTICAL, 0, 1010)); 67 model, &v1, ViewModelUtils::VERTICAL, 0, 2000)); 70 model, &v2, ViewModelUtils::VERTICAL, 0, -10)); 72 model, &v2, ViewModelUtils::VERTICAL, 0, 4)); 74 model, &v2, ViewModelUtils::VERTICAL, 0, 12));
|
view_model_utils.h | 20 VERTICAL
|
/external/chromium_org/ui/views/bubble/ |
bubble_border.h | 31 // 2 bit specifies horizontal or vertical. 36 VERTICAL = 0x04, 45 LEFT_TOP = VERTICAL, 46 RIGHT_TOP = VERTICAL | RIGHT, 47 LEFT_BOTTOM = VERTICAL | BOTTOM, 48 RIGHT_BOTTOM = VERTICAL | BOTTOM | RIGHT, 51 LEFT_CENTER = CENTER | VERTICAL, 52 RIGHT_CENTER = CENTER | VERTICAL | RIGHT, 107 return a >= NONE ? false : !(a & VERTICAL);
|
/external/chromium_org/cc/input/ |
scrollbar.h | 16 enum ScrollbarOrientation { HORIZONTAL, VERTICAL };
|
/external/chromium_org/ui/views/controls/ |
separator.h | 21 VERTICAL
|
/external/chromium_org/chromeos/ime/ |
candidate_window.h | 22 VERTICAL = 1, 80 return property_->is_vertical ? VERTICAL : HORIZONTAL; 83 property_->is_vertical = (orientation == VERTICAL);
|
/frameworks/base/core/tests/coretests/src/android/view/ |
Merge.java | 38 mLayout.setOrientation(LinearLayout.VERTICAL);
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
SelfOrientingSashForm.java | 75 * SWT.VERTICAL if the controls in the SashForm are laid out top to bottom. 77 * @return SWT.HORIZONTAL or SWT.VERTICAL 132 newOrientation = SWT.VERTICAL; 145 return SWT.VERTICAL;
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
FilterMirrorRepresentation.java | 41 NONE('N'), VERTICAL('V'), HORIZONTAL('H'), BOTH('B'); 57 return VERTICAL; 126 || mMirror == Mirror.VERTICAL) { 141 mMirror = Mirror.VERTICAL; 143 case VERTICAL:
|
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/ |
AwTestRunnerActivity.java | 25 mLinearLayout.setOrientation(LinearLayout.VERTICAL);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderDeprecatedFlexibleBox.h | 61 bool isVertical() const { return style()->boxOrient() == VERTICAL; }
|
/external/droiddriver/src/com/google/android/droiddriver/scroll/ |
Direction.java | 39 VERTICAL {
|
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/ |
LinearLayoutTest.java | 30 container.setOrientation(LinearLayout.VERTICAL);
|
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/ |
ManyEditTextActivityScrollResize.java | 43 layout.setOrientation(LinearLayout.VERTICAL);
|
DialogActivity.java | 47 mLayout.setOrientation(LinearLayout.VERTICAL); 98 layout.setOrientation(LinearLayout.VERTICAL);
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/ |
NavigationBar.java | 42 if (orientation == LinearLayout.VERTICAL || (isRtl && !rtlEnabled)) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
Tkconstants.py | 43 VERTICAL='vertical'
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
Tkconstants.py | 43 VERTICAL='vertical'
|
/development/samples/Home/src/com/example/android/home/ |
ApplicationsStackLayout.java | 38 * This layout supports two different orientations: vertical and horizontal. When horizontal, 43 * When vertical, the layout is the following: 55 * orientation: horizontal or vertical 63 public static final int VERTICAL = 1; 74 private int mOrientation = VERTICAL; 97 mOrientation = a.getInt(R.styleable.ApplicationsStackLayout_stackOrientation, VERTICAL); 122 * Return the current orientation, either VERTICAL (default) or HORIZONTAL. 138 if (mOrientation == VERTICAL) { 148 if (mOrientation == VERTICAL) { 187 if (mOrientation == VERTICAL) { [all...] |
/frameworks/support/v4/java/android/support/v4/widget/ |
AutoScrollHelper.java | 59 * {@link #setRelativeEdges}. Default value is 20% for both vertical and 74 * Default value is 100% per second for both vertical and horizontal. 134 private static final int VERTICAL = 1; 289 * @param verticalMax The maximum vertical scrolling velocity, or 295 mMaximumVelocity[VERTICAL] = verticalMax / 1000f; 307 * @param verticalMin The minimum vertical scrolling velocity, or 313 mMinimumVelocity[VERTICAL] = verticalMin / 1000f; 327 * @param vertical The target vertical velocity as a fraction of the host 332 public AutoScrollHelper setRelativeVelocity(float horizontal, float vertical) { [all...] |
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
TextGammaActivity.java | 38 layout.setOrientation(LinearLayout.VERTICAL); 89 layout.setOrientation(LinearLayout.VERTICAL);
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
candidate_window_view.cc | 27 // the vertical candidate window. 81 candidate_window.orientation() != CandidateWindow::VERTICAL) 95 if (orientation == CandidateWindow::VERTICAL) { 123 (orientation == CandidateWindow::VERTICAL ? 130 if (orientation == CandidateWindow::VERTICAL) { 155 if (orientation == CandidateWindow::VERTICAL) { 374 // If orientation is vertical, each column width is fixed. 377 orientation_ == CandidateWindow::VERTICAL ? 381 orientation_ == CandidateWindow::VERTICAL ? 4 : 6; 391 orientation_ == CandidateWindow::VERTICAL [all...] |