Searched refs:prio (Results 1 - 25 of 46) sorted by relevance

12

/macosx-10.9.5/tcl-102/tk/tk/library/
H A Dobsolete.tcl33 variable prio "widgetDefault"
38 variable prio
60 # Add these with prio 21 to override value in dialog/msgbox.tcl
73 variable prio
76 option add *$cls.borderWidth 2 $prio; # 1
82 variable prio
86 option add *$cls.borderWidth 2 $prio; # 1
89 option add *$cls.background "#d9d9d9" $prio; # "white"
90 option add *$cls.selectBorderWidth 1 $prio; # 0
96 variable prio
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/style/
H A Dlobster.tcl13 variable prio "widgetDefault"
18 variable prio
24 set prio [lindex $args 1]
35 option add *borderWidth 1 $prio
36 option add *activeBorderWidth 1 $prio
37 option add *selectBorderWidth 1 $prio
38 option add *font LobsterFont $prio
40 option add *padX 2 $prio
41 option add *padY 4 $prio
43 option add *Listbox.background white $prio
[all...]
H A Das.tcl34 variable prio "widgetDefault"
57 variable prio
63 set prio [lindex $args 1]
80 option add *font {Tahoma 7} $prio
81 option add *Button.borderWidth 1 $prio
82 option add *Entry.borderWidth 1 $prio
83 option add *Listbox.borderWidth 1 $prio
84 option add *Spinbox.borderWidth 1 $prio
85 option add *Text.borderWidth 1 $prio
86 option add *Scrollbar.width 11 $prio
[all...]
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dnice.c51 int prio, rv; local
54 prio = getpriority(PRIO_PROCESS, 0);
55 if (prio == -1 && errno)
58 if (prio + incr > NZERO-1)
59 incr = NZERO-1-prio;
61 rv = setpriority(PRIO_PROCESS, 0, prio + incr);
/macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/
H A Dinit.tcl8 proc Widget::_opt_defaults {{prio widgetDefault}} {
19 option add *ListBox.background SystemWindow $prio
20 #option add *Button.padY 0 $prio
21 option add *ButtonBox.padY 0 $prio
22 option add *Dialog.padY 0 $prio
23 option add *Dialog.anchor e $prio
27 option add *Scrollbar.width 12 $prio
28 option add *Scrollbar.borderWidth 1 $prio
29 option add *Dialog.separator 1 $prio
30 option add *MainFrame.relief raised $prio
[all...]
H A Dthemeutils.tcl527 set prio "userDefault"
529 option add *background $BWidget::colors(SystemWindowFrame) $prio
530 option add *foreground $BWidget::colors(SystemWindowText) $prio
531 option add *selectbackground $BWidget::colors(SystemHighlight) $prio
532 option add *selectforeground $BWidget::colors(SystemHighlightText) $prio
534 option add *Entry.highlightColor $BWidget::colors(SystemHighlight) $prio
535 option add *Entry.highlightThickness 2 $prio
537 option add *Text.background $BWidget::colors(SystemWindow) $prio
538 option add *Text.foreground $BWidget::colors(SystemWindowText) $prio
540 $BWidget::colors(SystemHighlight) $prio
[all...]
/macosx-10.9.5/shell_cmds-175/renice/
H A Drenice.c71 int errs, incr, prio, which, who; local
95 if (getnum("priority", *argv, &prio))
118 if (getnum("priority", *argv, &prio)) {
146 errs += donice(which, who, prio, incr);
152 donice(int which, int who, int prio, int incr) argument
163 prio = oldprio + prio;
164 if (prio > PRIO_MAX)
165 prio = PRIO_MAX;
166 if (prio < PRIO_MI
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/
H A Dprioqueue.tcl335 error "wrong # args: should be \"$name put item prio ?item prio ...?\""
338 # check for prio type before adding
341 foreach {item prio} $args {
342 if {![string is integer -strict $prio]} {
343 error "priority \"$prio\" is not an integer type value"
348 foreach {item prio} $args {
349 if {![string is double -strict $prio]} {
350 error "priority \"$prio\" is not a real type value"
364 foreach {item prio}
[all...]
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkVisual.c106 int c, numVisuals, prio, bestPrio, i;
267 prio = 5; break;
269 prio = 1; break;
271 prio = 7; break;
273 prio = 3; break;
275 prio = 1; break;
277 prio = 5; break;
279 prio = 0; break;
283 prio++;
297 if (prio > bestPri
105 int c, numVisuals, prio, bestPrio, i; local
[all...]
H A DtkTextTag.c100 int prio);
560 int prio;
576 prio = tagPtr2->priority - 1;
578 prio = tagPtr2->priority;
581 prio = 0;
583 ChangeTagPriority(textPtr, tagPtr, prio);
831 int prio;
847 prio = tagPtr2->priority;
849 prio = tagPtr2->priority + 1;
852 prio
559 int prio; local
830 int prio; local
1234 int i, j, prio; local
1313 ChangeTagPriority( TkText *textPtr, TkTextTag *tagPtr, int prio) argument
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkVisual.c109 int length, c, numVisuals, prio, bestPrio, i;
271 case DirectColor: prio = 5; break;
272 case GrayScale: prio = 1; break;
273 case PseudoColor: prio = 7; break;
274 case StaticColor: prio = 3; break;
275 case StaticGray: prio = 1; break;
276 case TrueColor: prio = 5; break;
277 default: prio = 0; break;
281 prio++;
295 if (prio > bestPri
108 int length, c, numVisuals, prio, bestPrio, i; local
[all...]
H A DtkTextTag.c77 TkTextTag *tagPtr, int prio));
517 int prio;
535 prio = tagPtr2->priority - 1;
537 prio = tagPtr2->priority;
540 prio = 0;
542 ChangeTagPriority(textPtr, tagPtr, prio);
718 int prio;
736 prio = tagPtr2->priority;
738 prio = tagPtr2->priority + 1;
741 prio
516 int prio; local
717 int prio; local
1011 int i, j, prio; local
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/lib/Log/Log4perl/
H A DLevel.pm31 my ($prio, $intval, $syslog, $log_dispatch_level) = @_;
32 $prio = uc($prio); # just in case;
34 $PRIORITY{$prio} = $intval;
35 $LEVELS{$intval} = $prio;
53 $L4P_TO_LD{$prio} = $log_dispatch_level;
55 $SYSLOG{$prio} = $syslog if defined($syslog);
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet/
H A Dip_encap.c184 int prio, matchprio; local
218 prio = (*ep->func)(m, off, proto, ep->arg);
224 prio = mask_match(ep, (struct sockaddr *)&d,
246 if (prio <= 0)
248 if (prio > matchprio) {
249 matchprio = prio;
291 int prio, matchprio; local
314 prio = (*ep->func)(m, *offp, proto, ep->arg);
320 prio = mask_match(ep, (struct sockaddr *)&d,
325 if (prio <
[all...]
H A Dip_mroute.c1881 int prio; local
1896 prio = 70;
1899 prio = 60;
1902 prio = 55;
1905 prio = 50;
1909 log(LOG_DEBUG, "port %x prio%d\n", ntohs(udp->uh_dport), prio);
1911 prio = 50;
1913 return prio;
/macosx-10.9.5/tcl-102/tcl_ext/tktable/tktable/generic/
H A DtkTableTag.c273 unsigned int prio;
283 prio = TableTagGetPriority(tablePtr, addTag);
285 if ((addTag->anchor != -1) && (prio < jtagPtr->panchor)) {
287 jtagPtr->panchor = prio;
289 if ((addTag->bg != NULL) && (prio < jtagPtr->pbg)) {
291 jtagPtr->pbg = prio;
293 if ((addTag->fg != NULL) && (prio < jtagPtr->pfg)) {
295 jtagPtr->pfg = prio;
297 if ((addTag->ellipsis != NULL) && (prio < jtagPtr->pellipsis)) {
299 jtagPtr->pellipsis = prio;
269 unsigned int prio; local
516 unsigned int prio = 0; local
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DLevel.pm31 my ($prio, $intval, $syslog, $log_dispatch_level) = @_;
32 $prio = uc($prio); # just in case;
34 $PRIORITY{$prio} = $intval;
35 $LEVELS{$intval} = $prio;
53 $L4P_TO_LD{$prio} = $log_dispatch_level;
55 $SYSLOG{$prio} = $syslog if defined($syslog);
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkTagSet.c278 int prio = LOWEST_PRIORITY; local
282 if (OBJ_AT(tag->tagRecord, offset) != 0 && tag->priority < prio) {
284 prio = tag->priority;
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkern_resource.c150 int prio; member in struct:puser_nice_args
161 int prio; member in struct:ppgrp_nice_args
283 error = donice(pun->curp, p, pun->prio);
304 error = donice(pun->curp, p, pun->prio);
332 AUDIT_ARG(value32, uap->prio);
349 error = donice(curp, p, uap->prio);
365 ppgrp.prio = uap->prio;
382 punice.prio = uap->prio;
1424 int prio = (bg ? PRIO_DARWIN_BG : 0); local
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/obsolete/
H A Dhilit19.el655 (defsubst hilit-region-set-face (start end face-name &optional prio prop)
661 (and prio (overlay-put overlay 'priority prio))))
679 ;;(defsubst hilit-region-set-face (start end face-name &optional prio prop)
711 (prio (1- (length patterns)))
728 (message "highlighting %d: %s%s" prio pstart
738 face prio))))
745 face prio)
752 (match-end pend) face prio)))
758 (setq prio (
[all...]
/macosx-10.9.5/shell_cmds-175/su/
H A Dsu.c174 int asme, ch, asthem, fastlogin, prio, i, retcode, local
273 prio = getpriority(PRIO_PROCESS, 0);
275 prio = 0;
434 setpriority(PRIO_PROCESS, 0, prio);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/log/
H A Dlog.tcl417 set prio [lv2priority $level]
420 if {$priorityMap($l) <= $prio} {
/macosx-10.9.5/vim-53/src/proto/
H A Dwindow.pro70 int match_add __ARGS((win_T *wp, char_u *grp, char_u *pat, int prio, int id));
/macosx-10.9.5/adv_cmds-153/ps/
H A Dprint.c1052 unsigned prio, type; local
1056 prio = prtp->prio;
1060 snprintf(str, sizeof(str), "real:%u", prio);
1066 snprintf(str, sizeof(str), "idle:%u", prio);
1069 snprintf(str, sizeof(str), "%u:%u", type, prio);
/macosx-10.9.5/ppp-727.90.1/Helpers/pppd/
H A Doptions.c740 int prio = option_priority; local
745 prio += OPRIO_ROOT;
749 if (prio < mainopt->priority) {
751 if (prio == OPRIO_CMDLINE && mainopt->priority > OPRIO_ROOT) {
758 if (prio > OPRIO_ROOT && mainopt->priority == OPRIO_CMDLINE)
927 mainopt->priority = prio;

Completed in 670 milliseconds

12