Searched defs:bottom (Results 26 - 50 of 345) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/prefs/
H A Dpref_service_browsertest.cc142 int bottom = 0; local
144 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".bottom",
145 &bottom));
146 EXPECT_EQ(bottom, bounds.y() + bounds.height());
206 int bottom = 0; local
208 EXPECT_TRUE(root_dict->GetInteger(kBrowserWindowPlacement + ".bottom",
209 &bottom));
210 EXPECT_EQ(bottom, bounds.y() + bounds.height());
/external/chromium_org/chrome/browser/ui/webui/chromeos/first_run/
H A Dfirst_run_actor.cc35 FirstRunActor::StepPosition::SetBottom(int bottom) { argument
36 bottom_ = bottom;
52 result->SetInteger("bottom", bottom_);
/external/chromium_org/remoting/host/
H A Dchromoting_param_traits.cc67 m->WriteInt(p.bottom());
74 int left, right, top, bottom; local
76 !m->ReadInt(iter, &right) || !m->ReadInt(iter, &bottom)) {
79 *r = webrtc::DesktopRect::MakeLTRB(left, top, right, bottom);
87 p.left(), p.top(), p.right(), p.bottom()));
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBorderImageLengthBox.h61 const BorderImageLength& bottom, const BorderImageLength& left)
65 , m_bottom(bottom)
72 const BorderImageLength& bottom() const { return m_bottom; } function in class:WebCore::BorderImageLengthBox
60 BorderImageLengthBox(const BorderImageLength& top, const BorderImageLength& right, const BorderImageLength& bottom, const BorderImageLength& left) argument
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLengthBox.h75 Length bottom() const { return m_bottom; } function in class:WebCore::LengthBox
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutBoxExtent.h44 LayoutBoxExtent(LayoutUnit top, LayoutUnit right, LayoutUnit bottom, LayoutUnit left) argument
45 : m_top(top), m_right(right), m_bottom(bottom), m_left(left) { }
49 inline LayoutUnit bottom() const { return m_bottom; } function in class:WebCore::LayoutBoxExtent
H A DIntRectExtent.h47 IntRectExtent(int top, int right, int bottom, int left) argument
50 , m_bottom(bottom)
61 int bottom() const { return m_bottom; } function in class:WebCore::IntRectExtent
62 void setBottom(int bottom) { m_bottom = bottom; } argument
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
75 rect.expand(left() + right(), top() + bottom());
89 && a.bottom() == b.bottom()
102 a.setBottom(a.bottom()
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsBounds.h25 void add(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) { argument
29 if (bottom > fBottom) fBottom = bottom;
/external/chromium_org/ui/gfx/
H A Dshadow_value.cc53 int bottom = 0; local
64 bottom = std::max(bottom, blur + shadow.y());
67 return Insets(-top, -left, -bottom, -right);
H A Dinsets_base.h19 Type bottom() const { return bottom_; } function in class:gfx::InsetsBase
27 // top and bottom insets.
33 void Set(Type top, Type left, Type bottom, Type right) { argument
36 bottom_ = bottom;
61 InsetsBase(Type top, Type left, Type bottom, Type right) argument
64 bottom_(bottom),
H A Dquad_unittest.cc250 float bottom = 6.2f; local
251 EXPECT_EQ(RectF(left, top, right - left, bottom - top).ToString(),
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cc85 ReportStack *bottom = 0; local
93 bottom->next = cur_entry;
94 bottom = cur_entry;
/external/skia/src/pathops/
H A DSkPathOpsBounds.h25 void add(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) { argument
29 if (bottom > fBottom) fBottom = bottom;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DXUnresolvedVariable.java157 * @param bottom The point at which the search should terminate, normally
160 public void setVarStackContext(int bottom) argument
162 m_varStackContext = bottom;
/external/chromium/chrome/browser/ui/views/bubble/
H A Dborder_contents.cc72 insets.right() + kRightMargin, insets.bottom() + kBottomMargin);
133 // | bottom |
137 int bottom = std::max(0, window_bounds.bottom() - monitor_bounds.bottom()); local
140 offscreen_insets->Set(top, left, bottom, right);
/external/chromium_org/cc/output/
H A Dfilter_operations_unittest.cc17 int top, right, bottom, left; local
18 top = right = bottom = left = 0;
19 ops.GetOutsets(&top, &right, &bottom, &left);
22 EXPECT_EQ(57, bottom);
29 int top, right, bottom, left; local
30 top = right = bottom = left = 0;
31 ops.GetOutsets(&top, &right, &bottom, &left);
34 EXPECT_EQ(65, bottom);
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_positioner.cc29 int bottom) {
31 work_area.Inset(left, top, right, bottom);
75 anchor = gfx::Point(screen_rect.x(), work_area.bottom());
102 gfx::Point(work_area.x() + work_area.width() / 2, work_area.bottom());
127 anchor = gfx::Point(cursor.x(), work_area.bottom());
152 if (shelf_rect.bottom() == screen_rect.bottom())
182 return std::max(0, work_area.bottom() - cursor.y());
26 WorkAreaInset(int left, int top, int right, int bottom) argument
/external/chromium_org/printing/
H A Dpage_setup.h25 // Vertical space for the overlay from the bottom of the sheet.
31 int bottom; member in class:printing::PageMargins
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbn_rand.c118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
141 /* make a random number and set the top and bottom bits */
197 if (bottom) /* set bottom bit if requested */
211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
213 return bnrand(0, rnd, bits, top, bottom);
216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
218 return bnrand(1, rnd, bits, top, bottom);
222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
224 return bnrand(2, rnd, bits, top, bottom);
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
25 if (bottom > fBottom) fBottom = bottom;
134 SkScalar bottom) {
135 if (left < right && top < bottom && !this->isEmpty() && // check for empties
136 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
141 if (fBottom > bottom) fBottom = bottom;
133 intersect(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
167 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/chromium_org/third_party/skia/src/pipe/utils/
H A DSamplePipeControllers.cpp48 int32_t bottom; local
52 bottom = i + 1 == NumberOfTiles ? bitmap.height() : top + height;
53 rect.setLTRB(0, top, bitmap.width(), bottom);
54 top = bottom;
/external/chromium_org/ui/views/controls/
H A Dfocusable_border.cc66 void FocusableBorder::SetInsets(int top, int left, int bottom, int right) { argument
67 insets_.Set(top, left, bottom, right);
/external/chromium_org/ui/views/window/
H A Dframe_background.cc41 const gfx::ImageSkia* bottom) {
45 bottom_edge_ = bottom;
187 // Fill the bottom area.
38 SetSideImages(const gfx::ImageSkia* left, const gfx::ImageSkia* top, const gfx::ImageSkia* right, const gfx::ImageSkia* bottom) argument
/external/grub/stage2/
H A Dcommon.c106 mmap_avail_at (unsigned long bottom) argument
112 top = bottom;
136 return (unsigned long) top - bottom;
/external/openssl/crypto/bn/
H A Dbn_rand.c118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
141 /* make a random number and set the top and bottom bits */
197 if (bottom) /* set bottom bit if requested */
211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
213 return bnrand(0, rnd, bits, top, bottom);
216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
218 return bnrand(1, rnd, bits, top, bottom);
222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
224 return bnrand(2, rnd, bits, top, bottom);
[all...]

Completed in 2318 milliseconds

1234567891011>>