Searched defs:bottom (Results 1 - 25 of 345) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1401.js30 var bottom = 0; variable
38 var size = bottom + 1 + 10;
39 var t = (sizes[++bottom] = size);
/external/v8/test/mjsunit/regress/
H A Dregress-1401.js30 var bottom = 0; variable
38 var size = bottom + 1 + 10;
39 var t = (sizes[++bottom] = size);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebFloatQuad.cpp46 int bottom = static_cast<int>(ceilf(max(max(max(p[0].y, p[1].y), p[2].y), p[3].y))); local
48 return WebRect(left, top, right - left, bottom - top);
/external/dropbear/libtommath/
H A Dbn_mp_lshd.c36 register mp_digit *top, *bottom; local
45 bottom = a->dp + a->used - 1 - b;
49 * the bottom to the top. see bn_mp_rshd.c for more info.
52 *top-- = *bottom--;
H A Dbn_mp_rshd.c35 register mp_digit *bottom, *top; local
39 /* bottom */
40 bottom = a->dp;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
61 *bottom++ = 0;
/external/chromium_org/ui/gfx/
H A Dinsets_f.cc15 InsetsF::InsetsF(float top, float left, float bottom, float right) argument
16 : InsetsBase<InsetsF, float>(top, left, bottom, right) {}
22 return base::StringPrintf("%f,%f,%f,%f", top(), left(), bottom(), right());
H A Dinsets.cc19 Insets::Insets(int top, int left, int bottom, int right) argument
20 : InsetsBase<Insets, int>(top, left, bottom, right) {}
26 border.bottom,
35 return base::StringPrintf("%d,%d,%d,%d", top(), left(), bottom(), right());
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_arrow_model.h60 SkColor bottom; member in struct:InfoBarArrowModel::InfoBarColors
/external/chromium_org/cc/resources/
H A Dlayer_quad.cc39 const Edge& bottom)
43 bottom_(bottom) {}
36 LayerQuad(const Edge& left, const Edge& top, const Edge& right, const Edge& bottom) argument
/external/chromium_org/chrome/browser/ui/panels/
H A Ddocked_panel_drag_handler.cc23 // aligned to the bottom area.
27 int bottom = collection->GetBottomPositionForExpansionState( local
29 if (new_bounds.bottom() != bottom) {
31 if (new_bounds.bottom() > bottom)
32 new_bounds.set_y(bottom - new_bounds.height());
/external/chromium_org/chrome/browser/ui/tabs/
H A Dtab_resources.cc38 SkScalar bottom = SkIntToScalar(height); local
41 path->moveTo(left, bottom);
44 path->lineTo(left + kTabBottomCurveWidth, bottom - kTabBottomCurveWidth);
61 path->lineTo(right - kTabBottomCurveWidth, bottom - kTabBottomCurveWidth);
62 path->lineTo(right, bottom);
65 path->lineTo(left, bottom);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableLengthBox.h41 static PassRefPtr<AnimatableLengthBox> create(PassRefPtr<AnimatableValue> left, PassRefPtr<AnimatableValue> right, PassRefPtr<AnimatableValue> top, PassRefPtr<AnimatableValue> bottom) argument
43 return adoptRef(new AnimatableLengthBox(left, right, top, bottom));
48 const AnimatableValue* bottom() const { return m_bottom.get(); } function in class:WebCore::AnimatableLengthBox
55 AnimatableLengthBox(PassRefPtr<AnimatableValue> left, PassRefPtr<AnimatableValue> right, PassRefPtr<AnimatableValue> top, PassRefPtr<AnimatableValue> bottom) argument
59 , m_bottom(bottom)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DClientRect.h47 float bottom() const { return m_rect.maxY(); } function in class:WebCore::ClientRect
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGCircle.cpp30 SkScalar left, top, right, bottom; local
34 bottom = cy + r;
42 sprintf(scratch, "%g", SkScalarToDouble(bottom));
43 parser._addAttribute("bottom", scratch);
H A DSkSVGEllipse.cpp32 SkScalar left, top, right, bottom; local
36 bottom = cy + ry;
44 sprintf(scratch, "%g", SkScalarToDouble(bottom));
45 parser._addAttribute("bottom", scratch);
/external/chromium_org/ui/base/cocoa/
H A Dappkit_utils.h22 int bottom; member in struct:ui::NinePartImageIds
/external/chromium_org/ui/metro_viewer/
H A Dime_types.h44 int32 bottom; member in struct:metro_viewer::CharacterBounds
/external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
H A DHasCompoundDrawablesMatcher.java16 public HasCompoundDrawablesMatcher(int left, int top, int right, int bottom) { argument
17 expectedCompoundDrawables = new ShadowTextView.CompoundDrawables(left, top, right, bottom);
42 public static Matcher<TextView> hasCompoundDrawables(int left, int top, int right, int bottom) { argument
43 return new HasCompoundDrawablesMatcher(left, top, right, bottom);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMarginLayoutParams.java20 public void setMargins(int left, int top, int right, int bottom) { argument
24 realMarginLayoutParams.bottomMargin = bottom;
/external/skia/bench/
H A DTableBench.cpp52 SkRect bottom = SkRect::MakeLTRB(col * kCellWidth, local
56 canvas->drawRect(bottom, borderPaint);
/external/skia/src/svg/
H A DSkSVGCircle.cpp30 SkScalar left, top, right, bottom; local
34 bottom = cy + r;
42 sprintf(scratch, "%g", SkScalarToDouble(bottom));
43 parser._addAttribute("bottom", scratch);
H A DSkSVGEllipse.cpp32 SkScalar left, top, right, bottom; local
36 bottom = cy + ry;
44 sprintf(scratch, "%g", SkScalarToDouble(bottom));
45 parser._addAttribute("bottom", scratch);
/external/chromium/chrome/browser/prefs/
H A Dpref_service_uitest.cc114 int bottom = 0; local
116 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".bottom",
117 &bottom));
118 EXPECT_EQ(bottom, bounds.y() + bounds.height());
176 int bottom = 0; local
178 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".bottom",
179 &bottom));
180 EXPECT_EQ(bottom, bounds.y() + bounds.height());
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar_button_border.h40 SkBitmap* bottom; member in struct:InfoBarButtonBorder::MBBImageSet
/external/chromium_org/android_webview/native/
H A Daw_picture.cc41 jint left, jint top, jint right, jint bottom) {
46 gfx::Rect(left, top, right - left, bottom - top),
40 Draw(JNIEnv* env, jobject obj, jobject canvas, jint left, jint top, jint right, jint bottom) argument

Completed in 631 milliseconds

1234567891011>>