HomeSort by relevance Sort by last modified time
    Searched defs:horizontal (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ItemAlignment.java 17 import static android.support.v7.widget.RecyclerView.HORIZONTAL;
45 private int mOrientation = HORIZONTAL;
49 final public Axis horizontal = new Axis(HORIZONTAL); field in class:ItemAlignment
51 private Axis mMainAxis = horizontal;
65 if (mOrientation == HORIZONTAL) {
66 mMainAxis = horizontal;
70 mSecondAxis = horizontal;
WindowAlignment.java 21 import static android.support.v7.widget.RecyclerView.HORIZONTAL;
336 private int mOrientation = HORIZONTAL;
340 public final Axis horizontal = new Axis("horizontal"); field in class:WindowAlignment
342 private Axis mMainAxis = horizontal;
356 if (mOrientation == HORIZONTAL) {
357 mMainAxis = horizontal;
361 mSecondAxis = horizontal;
375 return new StringBuffer().append("horizontal=")
376 .append(horizontal.toString()
    [all...]
  /frameworks/base/libs/hwui/utils/
Blur.cpp 94 void Blur::horizontal(float* weights, int32_t radius, function in class:android::uirenderer::Blur
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 135 int horizontal; member in struct:__anon44471
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GravityHelper.java 46 /** 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; local
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 & GRAVITY_END) != 0)
    [all...]
GridLayoutRule.java 167 .<String> asList("Set Horizontal Orientation", "Set Vertical Orientation"),
169 "horizontal", "vertical"), getCurrentOrientation(parentNode),
272 * defined, in which case the default horizontal value is returned)
390 String horizontal = GRAVITY_VALUE_LEFT; local
393 horizontal = GRAVITY_VALUE_FILL_HORIZONTAL;
399 if (horizontal == GRAVITY_VALUE_FILL_HORIZONTAL
403 gravity = horizontal + '|' + vertical;
405 gravity = horizontal;
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
PathShapeTest.java 82 int horizontal = 0; local
90 horizontal += 1;
96 assertEquals(50, horizontal, TOLERANCE);
  /external/libvpx/libvpx/vp9/encoder/
vp9_context_tree.h 84 PICK_MODE_CONTEXT horizontal[2]; member in struct:PC_TREE
  /external/skia/src/pathops/
SkDConicLineIntersection.cpp 347 int SkIntersections::horizontal(const SkDConic& conic, double left, double right, double y, function in class:SkIntersections
SkDCubicLineIntersection.cpp 20 y = i*x + j (if the line is more horizontal)
56 The near-horizontal case, in terms of: Ax^3 + Bx^2 + Cx + D == 0
68 For horizontal lines:
418 int SkIntersections::horizontal(const SkDCubic& cubic, double left, double right, double y, function in class:SkIntersections
SkDLineIntersection.cpp 79 // note that this only works if both lines are neither horizontal nor vertical
200 int SkIntersections::horizontal(const SkDLine& line, double left, double right, function in class:SkIntersections
SkDQuadLineIntersection.cpp 56 Using the results above (when the line tends towards horizontal)
141 solve by rotating line+quad so line is horizontal, then finding the roots
423 int SkIntersections::horizontal(const SkDQuad& quad, double left, double right, double y, function in class:SkIntersections
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/harfbuzz_ng/src/
hb-ot-cbdt-table.hh 268 horizontal.sanitize (c) &&
282 SBitLineMetrics horizontal; member in struct:OT::BitmapSizeTable
hb-ot-layout-gpos-table.hh 61 xPlacement = 0x0001u, /* Includes horizontal adjustment for placement */
63 xAdvance = 0x0004u, /* Includes horizontal adjustment for advance */
65 xPlaDevice = 0x0010u, /* Includes horizontal Device table for placement */
67 xAdvDevice = 0x0040u, /* Includes horizontal Device table for advance */
77 SHORT xPlacement; /* Horizontal adjustment for
81 SHORT xAdvance; /* Horizontal adjustment for
83 * for horizontal writing) */
88 * horizontal placement--measured from
94 * horizontal advance--measured from
115 hb_bool_t horizontal = HB_DIRECTION_IS_HORIZONTAL (c->direction) local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java 146 // 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); local
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 ? 1 : 0
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 617 private int mOrientation = ScrollAdapterView.HORIZONTAL;
623 final public Axis horizontal = new Axis(mLerper, "horizontal"); field in class:ScrollController
625 private Axis mMainAxis = horizontal;
638 /** the major movement is in horizontal or vertical */
670 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
671 mMainAxis = horizontal;
675 mSecondAxis = horizontal;
732 return (dx == 0 || horizontal.canScroll(dx < 0)) &&
767 horizontal.setOperationMode(operationMode)
    [all...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /frameworks/base/media/java/android/media/
TimedText.java 146 * horizontal justification 0: left, 1: centered, -1: right
157 * @param horizontal the horizontal justification of the text.
160 public Justification(int horizontal, int vertical) {
161 this.horizontalJustification = horizontal;
485 int horizontal = parcel.readInt(); local
487 mJustification = new Justification(horizontal, vertical);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
NinePatchedImage.java 258 // horizontal
411 // find horizontal patches
419 Tick horizontal = getContentArea(mHorizontalContents); local
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
844 return "HORIZONTAL";
    [all...]
  /external/ImageMagick/coders/
tiff.c 1401 horizontal, local
    [all...]
  /external/freetype/src/cff/
cffgload.c 1919 FT_Int horizontal, count; local
    [all...]
  /external/pdfium/third_party/freetype/src/cff/
cffgload.c 1871 FT_Int horizontal, count; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 97 /** 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.
492 // Horizontal GridLayout: this is the default. Row and column numbers
882 Object horizontal = horizontalAxis.get(view); local
    [all...]
  /prebuilts/devtools/tools/lib/
draw9patch.jar 

Completed in 950 milliseconds

1 2 3 4 5 6