Searched refs:top (Results 1 - 25 of 1552) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DNonMovable.tcl6 toplevel .top
7 wm overrideredirect .top 1
8 wm geometry .top +100+100
10 movie .top.m -file $myFile -controller 0
11 pack .top.m
14 .top.m play
/macosx-10.9.5/tcl-102/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/tests/
H A DtestFileConfig.tcl6 {.top.m configure -file $fn2; .top.m play}]
7 toplevel .top
8 pack [movie .top.m -file $fn1]
/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));
51 top >= 0 && top <= win->_maxy &&
53 bottom > top) {
54 win->_regtop = (NCURSES_SIZE_T) top;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/hash/
H A Dhashview.c35 * bot==0 pop top scope
36 * bot==top query
37 * bot!=0 push top on bot
43 hashview(Hash_table_t* top, Hash_table_t* bot) argument
50 if (!top || top->frozen)
52 else if (top == bot)
53 bot = top->scope;
56 if (top->scope)
60 sx = &top
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/rde_critcl/
H A Dstack.c15 long int top; /* Index of the topmost _unused_ cell in the member in struct:RDE_STACK_
34 s->top = 0;
43 if (s->freeCellProc && s->top) {
45 for (i=0; i < s->top; i++) {
58 if (s->top >= s->max) {
66 ASSERT_BOUNDS(s->top,s->max);
67 s->cell [s->top] = item;
68 s->top ++;
74 ASSERT_BOUNDS(s->top-1,s->max);
75 return s->cell [s->top
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/controlwidget/
H A DbindDown.tcl25 # bind tags to a hieararchy of widgets starting with the top of
30 # where the first item is the top of the widget tree, the second the
38 proc bindDown {top tag} {
39 foreach widget [winfo children $top] {
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/gke/
H A Dgkunpack.cpp15 if (const EmbeddedSignatureBlob *top = (const EmbeddedSignatureBlob *)BlobCore::readBlob(stdin)) {
16 if (top->magic() == DetachedSignatureBlob::typeMagic) { // multiple architectures - pick the native one
18 const EmbeddedSignatureBlob *sig = EmbeddedSignatureBlob::specific(top->find(local.cpuType()));
20 sig = EmbeddedSignatureBlob::specific(top->find(local.cpuType() & ~CPU_ARCH_MASK));
21 top = sig;
23 if (top)
24 if (const CodeDirectory *cd = top->find<const CodeDirectory>(cdCodeDirectorySlot)) {
/macosx-10.9.5/tcl-102/tcl_ext/tbcload/tbcload/tests/tcl/
H A Dbreak1.tcl15 set top 8
20 for {set idx 0} {$idx < $top} {} {lappend outer [incr idx]}
25 if {$outerCounter > $top} {
H A Dbreak.tcl15 set top 8
18 if {$outerCounter > $top} {
H A Dbreak2.tcl15 set top 8
19 if {$outerCounter > $top} {
H A Dfor.tcl15 set top 8
17 for {set outerCounter 1} {$outerCounter <= $top} {incr outerCounter} {
H A Dforeach.tcl15 set top 8
20 for {set idx 0} {$idx < $top} {} {lappend outer [incr idx]}
H A Dwhile.tcl15 set top 8
18 while {$outerCounter <= $top} {
/macosx-10.9.5/tcl-102/tk/tk/library/ttk/
H A Dnotebook.tcl99 # TLNotebooks($top) keeps track of the list of all traversal-enabled
105 set top [winfo toplevel $nb]
107 if {![info exists TLNotebooks($top)]} {
108 # Augment $top bindings:
110 bind $top <Control-Key-Next> {+ttk::notebook::TLCycleTab %W 1}
111 bind $top <Control-Key-Prior> {+ttk::notebook::TLCycleTab %W -1}
112 bind $top <Control-Key-Tab> {+ttk::notebook::TLCycleTab %W 1}
113 bind $top <Shift-Control-Key-Tab> {+ttk::notebook::TLCycleTab %W -1}
115 bind $top <Control-Key-ISO_Left_Tab> {+ttk::notebook::TLCycleTab %W -1}
118 bind $top <Optio
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/
H A Dbn_mp_rshd.c35 register mp_digit *bottom, *top; local
42 /* top [offset into digits] */
43 top = a->dp + b;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
59 /* zero the top digits */
H A Dbn_mp_lshd.c36 register mp_digit *top, *bottom; local
41 /* top */
42 top = a->dp + a->used - 1;
49 * the bottom to the top. see bn_mp_rshd.c for more info.
52 *top-- = *bottom--;
56 top = a->dp;
58 *top++ = 0;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DIntRectExtent.h49 IntRectExtent(int top, int right, int bottom, int left) argument
50 : m_top(top)
57 int top() const { return m_top; } function in class:WebCore::IntRectExtent
58 void setTop(int top) { m_top = top; } argument
74 rect.move(-left(), -top());
75 rect.expand(left() + right(), top() + bottom());
79 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
89 return a.top() == b.top()
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/libtommath/
H A Dbn_mp_rshd.c35 register mp_digit *bottom, *top; local
42 /* top [offset into digits] */
43 top = a->dp + b;
47 * the top of the window are copied to the bottom
56 *bottom++ = *top++;
59 /* zero the top digits */
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/pairing_heap_/
H A Dfind_fn_imps.hpp50 top() const function in class:PB_DS_CLASS_C_DEC
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/Regress/
H A Dregress-111557.js51 * NOTE: have defined |top| as |this| to make this a standalone JS shell test.
52 * This came from the HTML of a frame, where |top| would have its DOM meaning.
54 var top = this;
56 top.authors = new Array();
57 top.titles = new Array();
61 top.authors[i] = "zPROD xA.5375.";
62 top.titles[i] = "NDS Libraries for C";
65 top.authors[i] = "zFLDR xB.5375.0100.";
66 top.titles[i] = "NDS Backup Services";
69 top
[all...]
/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/dtrace-118.1/DTTk/Bin/
H A Dcpudists8 # USAGE: cpudists [-ahV] [-t top] [interval [count]]
12 # -t num # print top num only
57 opt_all=0; opt_time=1; opt_top=0; top=0; interval=1; count=1
64 t) opt_top=1; top=$OPTARG ;;
66 USAGE: cpudists [-ahV] [-t top] [interval [count]]
70 -t num # print top num only
97 inline int TOP = '$top';
H A Dcputimes14 # USAGE: cputimes [-ahTV] [-t top] [interval [count]]
19 # -t num # print top num lines only
23 # cputimes -at 8 5 # print top 8 lines every 5 secs
67 top=0; interval=1; count=1
75 t) opt_top=1; top=$OPTARG ;;
77 USAGE: cputimes [-ahTV] [-t top] [interval [count]]
82 -t num # print top num lines only
86 cputimes -at 8 5 # top 8 lines every 5 secs
114 inline int TOP = '$top';
/macosx-10.9.5/dtrace-118.1/DTTk/Kernel/
H A Dcpudists8 # USAGE: cpudists [-ahV] [-t top] [interval [count]]
12 # -t num # print top num only
57 opt_all=0; opt_time=1; opt_top=0; top=0; interval=1; count=1
64 t) opt_top=1; top=$OPTARG ;;
66 USAGE: cpudists [-ahV] [-t top] [interval [count]]
70 -t num # print top num only
97 inline int TOP = '$top';
H A Dcputimes14 # USAGE: cputimes [-ahTV] [-t top] [interval [count]]
19 # -t num # print top num lines only
23 # cputimes -at 8 5 # print top 8 lines every 5 secs
67 top=0; interval=1; count=1
75 t) opt_top=1; top=$OPTARG ;;
77 USAGE: cputimes [-ahTV] [-t top] [interval [count]]
82 -t num # print top num lines only
86 cputimes -at 8 5 # top 8 lines every 5 secs
114 inline int TOP = '$top';

Completed in 296 milliseconds

1234567891011>>