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

1 2

  /external/webkit/Source/WebCore/svg/
SVGPathSegListSource.cpp 84 SVGPathSegLinetoHorizontal* horizontal = static_cast<SVGPathSegLinetoHorizontal*>(m_segment.get()); local
85 x = horizontal->x();
  /frameworks/base/libs/hwui/utils/
Blur.cpp 63 void Blur::horizontal(float* weights, int32_t radius, function in class:android::uirenderer::Blur
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GravityHelper.java 41 /** Bitmask for a gravity which includes center horizontal */
44 /** Bitmask for a gravity which includes fill horizontal */
59 /** Bitmask for a gravity which includes any horizontal constraint */
175 int horizontal = gravity & GRAVITY_HORIZ_MASK; local
178 if ((horizontal & GRAVITY_LEFT) != 0) {
180 } else if ((horizontal & GRAVITY_RIGHT) != 0) {
182 } else if ((horizontal & GRAVITY_CENTER_HORIZ) != 0) {
184 } else if ((horizontal & GRAVITY_FILL_HORIZ) != 0) {
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 71 int horizontal = 0; local
79 horizontal += 1;
85 assertEquals(50, horizontal, TOLERANCE);
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
MosaicTypes.h 135 int horizontal; member in struct:__anon22219
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/
MosaicTypes.h 135 int horizontal; member in struct:__anon22226
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 135 int horizontal; member in struct:__anon22233
  /external/webkit/Source/WebKit/chromium/src/
WebScrollbarImpl.cpp 111 bool horizontal = m_scrollbar->orientation() == HorizontalScrollbar; local
113 dir = horizontal ? ScrollRight : ScrollDown;
115 dir = horizontal ? ScrollLeft : ScrollUp;
  /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...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/webkit/Source/WebCore/platform/
ScrollView.h 95 // Functions for setting and retrieving the scrolling mode in each axis (horizontal/vertical). The mode has values of
104 ScrollbarMode horizontalScrollbarMode() const { ScrollbarMode horizontal, vertical; scrollbarModes(horizontal, vertical); return horizontal; } local
105 ScrollbarMode verticalScrollbarMode() const { ScrollbarMode horizontal, vertical; scrollbarModes(horizontal, vertical); return vertical; } local
392 void platformScrollbarModes(ScrollbarMode& horizontal, ScrollbarMode& vertical) const;
  /external/webkit/Tools/DumpRenderTree/gtk/
EventSender.cpp 415 int horizontal = (int)JSValueToNumber(context, arguments[0], exception); local
421 g_return_val_if_fail((!vertical || !horizontal), JSValueMakeUndefined(context));
430 if (horizontal < 0)
432 else if (horizontal > 0)
    [all...]
  /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);
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.cpp 293 // Only one unit can be non-auto in the horizontal direction and
815 bool horizontal = isHorizontalWritingMode(); local
    [all...]
  /external/freetype/src/cff/
cffgload.c 1849 FT_Int horizontal, count; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gpos-table.hh 52 xPlacement = 0x0001, /* Includes horizontal adjustment for placement */
54 xAdvance = 0x0004, /* Includes horizontal adjustment for advance */
56 xPlaDevice = 0x0010, /* Includes horizontal Device table for placement */
58 xAdvDevice = 0x0040, /* Includes horizontal Device table for advance */
68 SHORT xPlacement; /* Horizontal adjustment for
72 SHORT xAdvance; /* Horizontal adjustment for
74 * for horizontal writing) */
79 * horizontal placement--measured from
85 * horizontal advance--measured from
105 hb_bool_t horizontal = HB_DIRECTION_IS_HORIZONTAL (direction) 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
874 Object horizontal = horizontalAxis.get(view); local
    [all...]
  /prebuilts/devtools/tools/lib/
draw9patch.jar 
rule-api.jar 
jcommon-1.0.12.jar 
  /external/freetype/include/freetype/internal/
tttypes.h 423 /* horiBearingX :: The horizontal left bearing. */
425 /* horiBearingY :: The horizontal top bearing. */
427 /* horiAdvance :: The horizontal advance. */
491 /* bitmap strike, for either a horizontal or vertical layout. */
513 /* horizontal advance - */
1269 TT_HoriHeader horizontal; \/* TrueType horizontal header *\/ member in struct:TT_FaceRec_
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp 1617 bool horizontal = style->isHorizontalWritingMode(); local
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 156 * The horizontal orientation.
158 public static final int HORIZONTAL = LinearLayout.HORIZONTAL;
218 private static final int DEFAULT_ORIENTATION = HORIZONTAL;
286 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
306 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
317 * orientation as {@code HORIZONTAL} - because {@code TextView} is capable of
321 * GridLayout, so it's fine to leave GridLayout in {@code HORIZONTAL} mode even if
324 * The default value of this property is {@link #HORIZONTAL}
1166 public final boolean horizontal; field in class:GridLayout.Axis
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 155 * The horizontal orientation.
157 public static final int HORIZONTAL = LinearLayout.HORIZONTAL;
218 private static final int DEFAULT_ORIENTATION = HORIZONTAL;
290 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
304 * The default value of this property is {@link #HORIZONTAL}.
306 * @param orientation either {@link #HORIZONTAL} or {@link #VERTICAL}
521 * When this property is {@code false} GridLayout is at liberty to place the horizontal column
557 static Alignment getAlignment(int gravity, boolean horizontal) {
558 int mask = horizontal ? HORIZONTAL_GRAVITY_MASK : VERTICAL_GRAVITY_MASK
1095 public final boolean horizontal; field in class:GridLayout.Axis
    [all...]

Completed in 850 milliseconds

1 2