Searched refs:top (Results 51 - 75 of 1627) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DDrawErrorUnderline.h65 double top = y; local
68 cairo_move_to(cr, x - halfSquare, top + halfSquare); // A
78 cairo_line_to(cr, right + halfSquare, top + halfSquare); // D
80 cairo_line_to(cr, right, top + square); // C
93 cairo_line_to(cr, right, top); // E
98 cairo_line_to(cr, left, top); // H
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dlabeledframe.rb10 Tk::Iwidgets::Entryfield.new(cs, :labeltext=>'Name:').pack(:side=>:top, :fill=>:x)
11 Tk::Iwidgets::Spinint.new(cs, :labeltext=>'Number:').pack(:side=>:top, :fill=>:x)
12 Tk::Iwidgets::Pushbutton.new(cs, :text=>'Details:').pack(:side=>:top, :fill=>:x)
/macosx-10.10/WebCore-7600.1.25/css/
H A DRect.h32 CSSPrimitiveValue* top() const { return m_top.get(); } function in class:WebCore::RectBase
37 void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; } argument
77 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
83 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) argument
85 return "rect(" + top + ", " + right + ", " + bottom + ", " + left + ')';
97 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
103 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) argument
107 result.reserveCapacity(top.length() + right.length() + bottom.length() + left.length() + 3);
108 result.append(top);
[all...]
/macosx-10.10/BerkeleyDB-21/db/mod_db4/
H A Dskiplist.c52 sl->top = NULL;
155 m = sl->top;
203 if(!sl->top) {
205 sl->topend = sl->bottomend = sl->top = sl->bottom =
207 assert(sl->top);
208 sl->top->next = (struct skiplistnode *) NULL;
209 sl->top->data = (struct skiplistnode *) NULL;
210 sl->top->prev =(struct skiplistnode *) NULL;
211 sl->top->up = (struct skiplistnode *) NULL;
212 sl->top
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/term/
H A Dimenu.tcl81 upvar 1 empty empty at at map map top top
110 set top 0
114 variable top 0
120 upvar 1 options(-in) in options(-column) col top top
126 set bot [expr {$top + $height - 1}]
130 set i $top
131 foreach l [lrange $labels $top $bot] {
162 if {$at < $top} {inc
[all...]
/macosx-10.10/OpenSSL098-52/src/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 */
177 if (top != -1)
179 if (top)
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, botto
[all...]
H A Dbn_lib.c231 int i = a->top - 1;
289 ret->top=0;
328 for (i=b->top>>2; i>0; i--,A+=4,B+=4)
343 switch (b->top&3)
349 * the switch table by doing a=top&3; a--; goto jump_table[a];
350 * which fails for top== 0 */
357 memcpy(A,b->d,sizeof(b->d[0])*b->top);
382 * words <= b->dmax && top < words
396 r->top = b->top;
[all...]
/macosx-10.10/Security-57031.1.35/Security/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 */
124 if (top != -1)
126 if (top)
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, botto
[all...]
H A Dbn_lib.c266 if (a->top == 0) return(0);
267 l=a->d[a->top-1];
268 i=(a->top-1)*BN_BITS2;
321 ret->top=0;
361 /* This lot is an unrolled loop to copy b->top
387 for (i=b->top&(~7); i>0; i-=8)
394 switch (b->top&7)
414 * a=top&7
417 * If top is 0, this makes us jump to 0xffffffc
424 for (i=b->top>>
[all...]
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_scroll.c51 NCURSES_SIZE_T const top,
61 win, n, (long) top, (long) bottom));
63 if (top < 0
64 || bottom < top
83 limit = top - n;
92 for (line = top; line < limit && line <= win->_maxy; line++) {
103 for (line = top; line <= limit && line <= win->_maxy; 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.10/ruby-106/ruby/ext/tk/sample/
H A Dtkdialog.rb5 top = TkFrame.new(root) {
9 msg = TkMessage.new(top) {
17 top.pack('fill'=>'both')
33 top.bind "Enter", proc{state 'active'}
36 top.bind "Leave", proc{state 'normal'}
54 root.pack('side'=>'top', 'fill'=>'both', 'expand'=>'yes')
H A Dtkbiff.rb74 $top = TkRoot.new
75 if ((TkWinfo.interps($top) - [my_appname]).find{|ip| ip =~ /^tkbiff/})
80 $top.withdraw
81 $list = TkScrollbox.new($top) {
88 TkButton.new($top) {
90 command proc {$top.withdraw}
93 $top.bind "Control-c", proc{exit}
94 $top.bind "Control-q", proc{exit}
95 $top.bind "space", proc{exit}
144 $top
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/dns/include/dns/
H A Dmaster.h101 dns_name_t *top,
110 dns_name_t *top,
120 dns_name_t *top,
131 dns_name_t *top,
140 dns_name_t *top,
149 dns_name_t *top,
158 dns_name_t *top,
169 dns_name_t *top,
181 dns_name_t *top,
194 dns_name_t *top,
[all...]
/macosx-10.10/cups-408/cups/ppdc/
H A Dppdc-mediasize.cxx53 top = tm;
63 if (top < 0.0f)
64 top = 0.0f;
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/treeql/docs/
H A Dapi.css10 margin-top: 2em;
22 margin-top: 0.5em;
26 padding-top: 1.5em;
64 padding-top: .125em;
70 padding-top: .125em;
75 padding-top: .25em;
/macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/wsock/config/
H A Didnconf.tcl632 set top .wrap
633 toplevel $top
634 grab $top
635 wm title $top "idn wrapper - Wrap Executable"
637 frame $top.f1 -bd 1 -relief raised
638 frame $top.f2 -bd 1 -relief raised
639 pack $top.f1 -side top -fill x -expand on
640 pack $top.f2 -side top
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DClientRect.idl30 readonly attribute unrestricted float top;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLayoutTimelineOverviewGraph.css27 margin-top: 8px;
H A DScriptTimelineOverviewGraph.css27 margin-top: 8px;
H A DTimelineOverview.css47 top: 0;
55 top: 22px;
71 border-top: 1px solid rgba(0, 0, 0, 0.09);
76 top: 0;
/macosx-10.10/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml5 (* top ::= definition | external | expression | ';' *)
10 (* ignore top-level semicolons. *)
25 (* Evaluate a top-level expression into an anonymous function. *)
27 print_endline "parsed a top-level expr";
/macosx-10.10/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml7 (* top ::= definition | external | expression | ';' *)
12 (* ignore top-level semicolons. *)
29 (* Evaluate a top-level expression into an anonymous function. *)
31 print_endline "parsed a top-level expr";
/macosx-10.10/ruby-106/ruby/ext/curses/
H A Dview2.rb13 @top = nil
43 @top = 0
57 if( @top > 0 )
59 @top -= 1
60 str = @data_lines[@top]
73 if( @top + @screen.maxy < @data_lines.length )
75 @top += 1
76 str = @data_lines[@top + @screen.maxy - 1]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/tablelist/
H A Dbrowse.tcl28 # contained in a newly created top-level widget. Returns the name of the
40 # Create a top-level widget of the class DemoTop
42 set top .browseTop
43 for {set n 2} {[winfo exists $top]} {incr n} {
44 set top .browseTop$n
46 toplevel $top -class DemoTop
50 # columns and interactive sort capability within the top-level
52 set tf $top.tf
94 set menu $top.menu
104 bind $bodyTag <<Button3>> +[list demo::postPopupMenu $top
[all...]
H A Dbrowse_tile.tcl35 # contained in a newly created top-level widget. Returns the name of the
47 # Create a top-level widget of the class DemoTop
49 set top .browseTop
50 for {set n 2} {[winfo exists $top]} {incr n} {
51 set top .browseTop$n
53 toplevel $top -class DemoTop
57 # columns and interactive sort capability within the top-level
59 set tf $top.tf
101 set menu $top.menu
111 bind $bodyTag <<Button3>> +[list demo::postPopupMenu $top
[all...]

Completed in 178 milliseconds

1234567891011>>