Home
last modified time | relevance | path

Searched defs:bottom (Results 1 – 25 of 445) sorted by relevance

12345678910>>...18

/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
DAnimatableLengthBox.h41 … right, PassRefPtrWillBeRawPtr<AnimatableValue> top, PassRefPtrWillBeRawPtr<AnimatableValue> botto… in create()
48 const AnimatableValue* bottom() const { return m_bottom.get(); } in bottom() function
56 … right, PassRefPtrWillBeRawPtr<AnimatableValue> top, PassRefPtrWillBeRawPtr<AnimatableValue> botto… in AnimatableLengthBox()
/external/chromium_org/ui/gfx/geometry/
Dinsets_base.h19 Type bottom() const { return bottom_; } in bottom() function
33 void Set(Type top, Type left, Type bottom, Type right) { in Set()
61 InsetsBase(Type top, Type left, Type bottom, Type right) in InsetsBase()
/external/chromium_org/net/base/
Dint128.h108 inline uint128::uint128(uint64 top, uint64 bottom) : lo_(bottom), hi_(top) { } in uint128()
111 inline uint128::uint128(uint64 bottom) : lo_(bottom), hi_(0) { } in uint128()
112 inline uint128::uint128(uint32 bottom) : lo_(bottom), hi_(0) { } in uint128()
113 inline uint128::uint128(int bottom) : lo_(bottom), hi_(0) { in uint128()
118 inline void uint128::Initialize(uint64 top, uint64 bottom) { in Initialize()
/external/chromium_org/third_party/skia/tests/
DCanvasStateHelpers.cpp17 float right, float bottom, int32_t spacer) { in complex_layers_draw()
29 float left, float top, float right, float bottom, int32_t spacer) { in complex_layers_draw_from_canvas_state()
40 int32_t right, int32_t bottom, int32_t clipOp, const SkRegion& localRegion) { in complex_clips_draw()
53 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp, in complex_clips_draw_from_canvas_state()
DPathOpsLineIntersectionTest.cpp128 double bottom = SkTMax(line1[0].fY, line1[1].fY); in testOne() local
135 double bottom = SkTMax(line2[0].fY, line2[1].fY); in testOne() local
175 double bottom = SkTMax(line1[0].fY, line1[1].fY); in testOneCoincident() local
184 double bottom = SkTMax(line2[0].fY, line2[1].fY); in testOneCoincident() local
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DIntRectExtent.h47 IntRectExtent(int top, int right, int bottom, int left) in IntRectExtent()
61 int bottom() const { return m_bottom; } in bottom() function
62 void setBottom(int bottom) { m_bottom = bottom; } in setBottom()
DFloatBoxExtent.h47 FloatBoxExtent(float top, float right, float bottom, float left) in FloatBoxExtent()
61 float bottom() const { return m_bottom; } in bottom() function
62 void setBottom(float bottom) { m_bottom = bottom; } in setBottom()
DLayoutBoxExtent.h44 LayoutBoxExtent(LayoutUnit top, LayoutUnit right, LayoutUnit bottom, LayoutUnit left) in LayoutBoxExtent()
49 inline LayoutUnit bottom() const { return m_bottom; } in bottom() function
DIntRect.cpp68 int bottom = std::min(maxY(), other.maxY()); in intersect() local
97 int bottom = std::max(maxY(), other.maxY()); in unite() local
118 int bottom = std::max(maxY(), other.maxY()); in uniteIfNonZero() local
/external/chromium_org/third_party/polymer/components-chromium/core-layout-trbl/
Dcore-layout-trbl-extracted.js90 top: myp, width: info.w + 'px', bottom: myp, left: v + 'px' property
98 top: v + 'px', right: mxp, bottom: hh + 'px', left: mxp property
102 top: myp, right: ww + 'px', bottom: myp, left: v + 'px' property
110 height: info.h + 'px', right: mxp, bottom: v + 'px', left: mxp property
114 top: myp, right: v + 'px', bottom: myp, width: info.w + 'px' property
/external/chromium_org/third_party/WebKit/Source/core/css/
DRect.h36 CSSPrimitiveValue* bottom() const { return m_bottom.get(); } in bottom() function
41 void setBottom(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; } in setBottom()
85 …static String generateCSSString(const String& top, const String& right, const String& bottom, cons… in generateCSSString()
109 …static String generateCSSString(const String& top, const String& right, const String& bottom, cons… in generateCSSString()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
DInspectedPagePlaceholder.js14 this._margins = { top: 0, right: 0, bottom: 0, left: 0 }; property
27 var margins = { top: 0, right: 0, bottom: 0, left: 0 }; property
30 var adjacent = { top: true, right: true, bottom: true, left: true }; property
/external/openssl/crypto/bn/
Dbn_rand.c119 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) in bnrand()
212 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_rand()
217 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_pseudo_rand()
223 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_bntest_rand()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DBorderImageLengthBox.h61 const BorderImageLength& bottom, const BorderImageLength& left) in BorderImageLengthBox()
72 const BorderImageLength& bottom() const { return m_bottom; } in bottom() function
/external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
DHasCompoundDrawablesMatcher.java16 public HasCompoundDrawablesMatcher(int left, int top, int right, int bottom) { in HasCompoundDrawablesMatcher()
42 public static Matcher<TextView> hasCompoundDrawables(int left, int top, int right, int bottom) { in hasCompoundDrawables()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowRect.java14 public void __constructor__(int left, int top, int right, int bottom) { in __constructor__()
34 public void set(int left, int top, int right, int bottom) { in set()
104 public boolean intersect(int left, int top, int right, int bottom) { in intersect()
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcpassthroughrender.h79 float& right, float& bottom) const OVERRIDE { in GetIncomingRenderStreamProperties()
128 const float bottom) OVERRIDE { in SetStreamCropping()
142 const float bottom) OVERRIDE { in ConfigureRenderer()
157 const float right, const float bottom) OVERRIDE { in SetBitmap()
167 const float right, const float bottom) OVERRIDE { in SetText()
/external/chromium_org/third_party/webrtc/modules/video_render/mac/
Dvideo_render_mac_carbon_impl.cc141 const float bottom) in AddIncomingRenderStream()
249 const float bottom) in SetStreamCropping()
259 const float bottom) in ConfigureRenderer()
278 const float bottom) in SetText()
289 const float bottom) in SetBitmap()
/external/chromium_org/third_party/skia/src/core/
DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { in join()
103 SkScalar bottom) { in intersect()
150 SkScalar bottom) { in join()
/external/skia/src/core/
DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { in join()
103 SkScalar bottom) { in intersect()
153 SkScalar bottom) { in join()
/external/chromium_org/ui/views/
Dborder.cc36 int bottom, in SidedSolidBorder()
77 EmptyBorder(int top, int left, int bottom, int right) in EmptyBorder()
148 int bottom, in CreateEmptyBorder()
156 int bottom, in CreateSolidSidedBorder()
/external/chromium_org/third_party/webrtc/modules/video_render/external/
Dvideo_render_external_impl.cc54 const float bottom) in AddIncomingRenderStream()
145 const float bottom) in SetStreamCropping()
157 const float bottom) in ConfigureRenderer()
179 const float bottom) in SetText()
191 const float bottom) in SetBitmap()
/external/skia/tests/
DPathOpsLineIntersectionTest.cpp121 double bottom = SkTMax(line1[0].fY, line1[1].fY); in testOne() local
128 double bottom = SkTMax(line2[0].fY, line2[1].fY); in testOne() local
168 double bottom = SkTMax(line1[0].fY, line1[1].fY); in testOneCoincident() local
177 double bottom = SkTMax(line2[0].fY, line2[1].fY); in testOneCoincident() local
/external/chromium_org/third_party/webrtc/modules/video_render/windows/
Dvideo_render_windows_impl.cc101 const float bottom) in AddIncomingRenderStream()
249 const float bottom) in SetStreamCropping()
270 const float bottom) in ConfigureRenderer()
310 const float bottom) in SetText()
330 const float right, const float bottom) in SetBitmap()
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
Dactive_indicator.js786 bottom: Math.max(r1.bottom, r2.bottom) property
807 cvox.ActiveIndicator.prototype.inset_ = function(r, left, top, right, bottom) { argument
812 bottom: r.bottom - bottom property
901 left, top, right, bottom, argument

12345678910>>...18