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

1 2 3 4 5 6 7 8 91011

  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementLayout.java 43 public void setHeight(int height)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGRectTearOff.cpp 79 void SVGRectTearOff::setHeight(float f, ExceptionState& exceptionState)
86 target()->setHeight(f);
SVGRectTearOff.h 50 void setHeight(float, ExceptionState&);
SVGRect.h 64 void setHeight(float f) { m_value.setHeight(f); }
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
VideoCodecInst.java 38 public native void setHeight(int height);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemsExpandOnSelection.java 43 result.setHeight(desiredHeight);
74 setHeight((int) (mDesiredHeight * 1.5));
76 setHeight(mDesiredHeight);
  /external/chromium_org/chrome/browser/ui/cocoa/
animatable_view.h 41 - (void)setHeight:(CGFloat)newHeight;
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthSize.h 48 void setHeight(const Length& height) { m_height = height; }
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXSpinButton.cpp 104 parentRect.setHeight(parentRect.height() / 2);
107 parentRect.setHeight(parentRect.height() / 2);
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRect.h 82 void setHeight(float height) { m_size.setHeight(height); }
114 setHeight(std::max(0.0f, height() - delta));
119 setHeight(std::max(0.0f, height() + delta));
152 m_size.setHeight(m_size.height() + dy + dy);
184 m_size.setHeight(bottom - top);
208 a.setHeight(a.height() + b.height());
FloatRoundedRect.cpp 84 m_topLeft.setHeight(std::max<float>(0, m_topLeft.height() + topWidth));
88 m_topRight.setHeight(std::max<float>(0, m_topRight.height() + topWidth));
92 m_bottomLeft.setHeight(std::max<float>(0, m_bottomLeft.height() + bottomWidth));
96 m_bottomRight.setHeight(std::max<float>(0, m_bottomRight.height() + bottomWidth));
IntRect.cpp 81 m_size.setHeight(bottom - top);
102 m_size.setHeight(bottom - top);
123 m_size.setHeight(bottom - top);
131 m_size.setHeight((int)(height() * s));
IntRect.h 78 void setHeight(int height) { m_size.setHeight(height); }
110 setHeight(std::max(0, height() - delta));
115 setHeight(std::max(0, height() + delta));
144 m_size.setHeight(m_size.height() + dy + dy);
FloatSize.h 60 void setHeight(float height) { m_height = height; }
131 a.setHeight(a.height() + b.height());
138 a.setHeight(a.height() - b.height());
IntSize.h 52 void setHeight(int height) { m_height = height; }
134 a.setHeight(a.height() + b.height());
141 a.setHeight(a.height() - b.height());
LayoutSize.h 59 void setHeight(LayoutUnit height) { m_height = height; }
141 a.setHeight(a.height() + b.height());
148 a.setHeight(a.height() - b.height());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMedia.cpp 68 controlsRenderer->style()->setHeight(Length(newSize.height(), Fixed));
RenderOverflow.h 88 m_layoutOverflow.setHeight(maxY - minY);
100 m_visualOverflow.setHeight(maxY - m_visualOverflow.y());
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
DropdownDividerDrawable.java 34 public void setHeight(int height) {
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
AnimatedStateVectorDrawableTest.java 47 button.setHeight(400);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBitmap.java 44 shadowBitmap.setHeight(height);
66 shadowBitmap.setHeight(dstHeight);
144 public void setHeight(int height) {
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingConstraints.cpp 41 offset.setHeight(viewportRect.y() - m_viewportRectAtLastLayout.y());
43 offset.setHeight(viewportRect.maxY() - m_viewportRectAtLastLayout.maxY());
  /cts/tests/tests/animation/src/android/animation/cts/
ShapeHolder.java 102 public void setHeight(float height) {
  /cts/tests/tests/widget/src/android/widget/cts/util/
ListItemFactory.java 156 result.setHeight(desiredHeight);
196 result.setHeight(desiredHeight);
247 t1.setHeight(desiredHeight);
256 t2.setHeight(desiredHeight);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
ShapeHolder.java 92 public void setHeight(float height) {

Completed in 441 milliseconds

1 2 3 4 5 6 7 8 91011