Searched refs:bottom (Results 1 - 25 of 783) sorted by relevance

1234567891011>>

/macosx-10.9.5/ncurses-42/ncurses/ncurses/base/
H A Dlib_scrreg.c46 wsetscrreg(WINDOW *win, int top, int bottom) argument
48 T((T_CALLED("wsetscrreg(%p,%d,%d)"), win, top, bottom));
52 bottom >= 0 && bottom <= win->_maxy &&
53 bottom > top) {
55 win->_regbottom = (NCURSES_SIZE_T) bottom;
H A Dlib_scroll.c52 NCURSES_SIZE_T const bottom,
61 win, n, (long) top, (long) bottom));
64 || bottom < top
65 || bottom > win->_maxy) {
84 for (line = bottom; line >= limit && line >= 0; line--) {
102 limit = bottom - n;
110 for (line = bottom; line > limit && line >= 0; line--) {
116 touchline(win, top, bottom - top + 1);
49 _nc_scroll_window(WINDOW *win, int const n, NCURSES_SIZE_T const top, NCURSES_SIZE_T const bottom, NCURSES_CH_T blank) argument
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/
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;
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--;
/macosx-10.9.5/tcl-102/tcl/tcl/libtommath/
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;
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--;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DIntRectExtent.h49 IntRectExtent(int top, int right, int bottom, int left) argument
52 , m_bottom(bottom)
63 int bottom() const { return m_bottom; } function in class:WebCore::IntRectExtent
64 void setBottom(int bottom) { m_bottom = bottom; } argument
75 rect.expand(left() + right(), top() + bottom());
79 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
91 && a.bottom() == b.bottom()
104 a.setBottom(a.bottom()
[all...]
H A DLayoutBoxExtent.h43 LayoutBoxExtent(LayoutUnit top, LayoutUnit right, LayoutUnit bottom, LayoutUnit left) argument
44 : m_top(top), m_right(right), m_bottom(bottom), m_left(left) { }
48 inline LayoutUnit bottom() const { return m_bottom; } function in class:WebCore::LayoutBoxExtent
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DRect.idl25 readonly attribute CSSPrimitiveValue bottom;
H A DRect.h34 CSSPrimitiveValue* bottom() const { return m_bottom.get(); } function in class:WebCore::RectBase
39 void setBottom(PassRefPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; } argument
87 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
95 bottom()->customSerializeResolvingVariables(variables),
103 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) argument
105 return "rect(" + top + ' ' + right + ' ' + bottom + ' ' + left + ')';
117 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
125 bottom()->customSerializeResolvingVariables(variables),
133 static String generateCSSString(const String& top, const String& right, const String& bottom, cons argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DClientRect.idl32 readonly attribute float bottom;
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_sleep.rb9 bottom = /linux/ =~ RUBY_PLATFORM && /Linux ([\d.]+)/ =~ `uname -sr` && ($1.split('.')<=>%w/2 6 18/)<1 ? 4.98 : 5.0
10 assert_operator(bottom, :<=, slept)
/macosx-10.9.5/cups-372.4/cups/ppdc/
H A Dppdc-mediasize.cxx51 bottom = bm;
59 if (bottom < 0.0f)
60 bottom = 0.0f;
/macosx-10.9.5/dcerpc-58/www/content/css/blueprint/src/
H A Dtypography.css22 h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
23 h2 { font-size: 2em; margin-bottom: 0.75em; }
24 h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
25 h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
26 h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
52 acronym { border-bottom: 1px dotted #666; }
76 table { margin-bottom: 1.4em; width:100%; }
87 .small { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
88 .large { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
100 .bottom { margi
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_rand.c65 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
88 /* make a random number and set the top and bottom bits */
144 if (bottom) /* set bottom bit if requested */
157 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
159 return bnrand(0, rnd, bits, top, bottom);
162 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
164 return bnrand(1, rnd, bits, top, bottom);
168 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom)
170 return bnrand(2, rnd, bits, top, bottom);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DsplitView.css32 bottom: 0;
51 bottom: 0;
80 bottom: 0;
84 bottom: 0;
100 border-bottom: 1px solid rgb(64%, 64%, 64%);
110 bottom: 0;
128 bottom: 0;
141 bottom: 0;
H A DcanvasProfiler.css37 bottom: 0;
62 bottom: 6px;
70 bottom: 4px;
78 bottom: 0;
H A DpanelEnablerView.css36 bottom: 0;
54 bottom: 0;
71 margin-bottom: 12px;
84 bottom: 0;
124 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 252, 252)), to(rgb(223, 223, 223)));
133 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(250, 250, 250)), to(rgb(235, 235, 235)));
138 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(194, 194, 194)), to(rgb(239, 239, 239)));
145 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 252, 252)), to(rgb(223, 223, 223)));
153 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(194, 194, 194)), to(rgb(239, 239, 239)));
158 -webkit-gradient(linear, left top, left bottom, fro
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cairo/
H A DDrawErrorUnderline.h64 double bottom = y + height; local
75 cairo_line_to(cr, middle, bottom); // B
90 cairo_line_to(cr, middle + halfSquare, bottom - halfSquare); // G
95 cairo_line_to(cr, middle, bottom - halfSquare); // F
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DIntRectWin.cpp35 : m_location(IntPoint(r.left, r.top)), m_size(IntSize(r.right-r.left, r.bottom-r.top))
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dpanedwindow2.rb9 bottom = pw.add(:margin=>10, :minimum=>10)
20 pw.paneconfigure(bottom, :margin=>15)
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXMLViewer.css30 border-bottom: 2px solid black;
31 padding-bottom: 5px;
61 vertical-align: bottom;
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/treeql/docs/
H A Dapi.css11 margin-bottom: 2em;
34 padding-bottom: 0.5em;
58 padding-bottom: 2em;
76 padding-bottom: .25em;
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/tkpiechart/
H A Dpielabel.tcl35 ::stooop::virtual proc update {this left top right bottom}
37 ::stooop::virtual proc updateSlices {this left top right bottom} {}
/macosx-10.9.5/tcl-102/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DExportWithProgress.tcl17 pack [button .exp -text "Export" -command DoExport] -side bottom

Completed in 182 milliseconds

1234567891011>>