| /onnv/onnv-gate/usr/src/cmd/fmli/oh/ |
| pathtitle.c | 49 static char title[MAX_WIDTH]; local 73 strncpy(title, str, tcount); 75 * title now has all the leading components of the path.. 78 strcpy(&title[tcount], "..."); /* show something is missing */ 84 strcat(title, part); 92 title[tcount-1] = NULL; /* -1 to prevent double // */ 93 strncat(title, part, width -tcount -3); 96 strncat(title, part, width - tcount -6); 97 strcpy(&title[width-4], "..."); 101 strcpy(title, str) [all...] |
| /onnv/onnv-gate/usr/src/grub/grub-0.97/docs/ |
| menu.lst | 15 title GNU/Hurd 21 title GNU/Linux 27 title GNU/kFreeBSD 32 title GNU/kNetBSD 37 title Utah Mach4 multiboot 44 title FreeBSD 49 title NetBSD 54 title OpenBSD 59 title OS/2 68 title Windows NT / Windows 95 boot men [all...] |
| /onnv/onnv-gate/usr/src/cmd/allocate/ |
| wdwmsg.sh | 31 echo "Usage: `basename $0` TITLE OKBUTTONTEXT [CANCELBUTTONTEXT]" 47 --title="$dialogTitle" \
|
| /onnv/onnv-gate/usr/src/cmd/fmli/vt/ |
| vclose.c | 50 if (v->title) 51 free(v->title);
|
| vdebug.c | 47 _debug(stderr, "VT # %2d(%2d): next = %2d, flags = 0x%x, win = 0x%x, title = '%s'\n", n, v->number, v->next, v->flags, v->win, v->title);
|
| /onnv/onnv-gate/usr/src/cmd/fmli/proc/ |
| open.c | 49 proc_open(int flags, char *title, char *path, ...) 61 return(proc_openv(flags, title, path, argv)); 65 proc_opensys(flags, title, path, arg) 67 char *title, *path; 70 return(proc_open(flags, title, path, "/bin/sh", "-c", arg, NULL)); 74 proc_openv(flags, title, path, argv) 76 char *title, *path; 111 a.odptr = title?strsave(title):NULL;
|
| pctl.c | 48 static char title[MAX_WIDTH]; local 57 len = sprintf(title, "%.*s ", MAX_TITLE, PR_all[p].name); 60 len += sprintf(title+len, "%.*s ", MAX_TITLE-len, 64 **((char ***)(&arg1)) = &title[0];
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/ |
| html.t | 62 <title>Untitled Document</title> 68 test(14,start_html(-Title=>'The world of foo') eq <<END,"start_html()"); 74 <title>The world of foo</title> 84 <html lang="fr"><head><title>Untitled Document</title> 109 test(25,$q->p({title=>"hello worldè"},'hello á') eq '<p title="hello world&egrave;">hello á</p>'); 111 test(26,$q->p({title=>"hello worldè"},'hello á') eq '<p title="hello worldè">hello á</p>') [all...] |
| /onnv/onnv-gate/usr/src/cmd/fmli/wish/ |
| display.c | 43 char title[PATHSIZ]; local 57 sprintf(title, "%s/%s", parent(path), ott->dname); 59 bsd_path_to_title(title,MAX_TITLE - 3 - strlen(ott->display)),
|
| /onnv/onnv-gate/usr/src/grub/ |
| install_menu | 27 title Solaris Express 30 title Solaris Express Serial Console ttya 33 title Solaris Express Serial Console ttyb (for lx50, v60x and v65x)
|
| /onnv/onnv-gate/usr/src/cmd/ssh/etc/ |
| ssh-askpass | 30 exec /usr/bin/zenity --entry --title "ssh-askpass" \
|
| /onnv/onnv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/ |
| pmDialog.java | 52 public pmDialog(Frame owner, String title) { 53 this(owner, title, false); 56 public pmDialog(Frame f, String title, boolean modal) { 58 super(f, title, modal);
|
| pmHelpItem.java | 41 String title; field in class:pmHelpItem 49 title = null; 58 * s += ("\ttitle: " + title + "\n"); 63 return title; 74 title = new String(s);
|
| pmMessageDialog.java | 49 public pmMessageDialog(String title, String msg) { 50 this(null, title, msg, null, null); 53 public pmMessageDialog(Frame f, String title, String msg) { 54 this(f, title, msg, null, null); 58 String title, 63 super(f, title, true); // modal 91 Debug.message("CLNT: MessageDialog: " + title + " , " + msg);
|
| /onnv/onnv-gate/usr/src/lib/libldap4/misc/ |
| ldapsearchprefs.conf | 26 title 28 "Title" 39 "Title" title 11111 "" "" 150 "Document Title" cn 11111 "" ""
|
| /onnv/onnv-gate/usr/src/cmd/tsol/misc/ |
| txzonemgr.sh | 40 title="Labeled Zone Manager" 101 --title="$title" \ 112 --title="$title" \ 165 --title="$title" \ 172 --title="$title: Clone From" \ 199 --title="$title: Copy From" [all...] |
| /onnv/onnv-gate/usr/src/cmd/auditrecord/ |
| mkmsg.pl | 86 my ($name, $description, $title, $skip, @case) = ('', '', '', '', ()); 88 ($name, $description, $title, $skip, @case) = @{$attr{$label}}; 91 $title = $name if (($title eq 'none') || (!defined($title))); 98 addToMsgFile($title);
|
| audit_record_xml | 62 my $title = $event->getTitle; 63 print " title=$title\n" if (defined $title && length($title));
|
| /onnv/onnv-gate/usr/src/cmd/lp/lib/requests/ |
| freerequest.c | 72 if (reqbufp->title) 73 Free (reqbufp->title);
|
| llib-llpreq | 49 char *title; /* optional title for banner page */
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/eg/ |
| customize.cgi | 30 # Adjust the title to incorporate the user's name, if provided. 31 $title = $preferences{'name'} ? 38 print start_html(-title=>$title, 45 print h1($title),<<END;
|
| /onnv/onnv-gate/usr/src/cmd/fmli/inc/ |
| vt.h | 35 char *title; member in struct:vt 50 #define VT_TDIRTY 010 /* title of window changed */
|
| /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/base/ |
| MainHelper.java | 147 String title = win.getName(); local 148 if (title == null || title.equals(/* NOI18N */"")) 149 title = /* NOI18N */"Unnamed"; 151 RootFrame f = new RootFrame(title); 175 String title = group.getPanel().getName(); local 176 if (title == null || title.equals(/* NOI18N */"")) 177 title = /* NOI18N */"Unnamed"; 179 frame = new RootFrame(title); [all...] |
| /onnv/onnv-gate/usr/src/cmd/format/ |
| menu.c | 138 run_menu(menu, title, prompt, display_flag) 140 char *title; 155 (void) strcpy(cur_title, title); 156 fmt_print("\n\n%s MENU:\n", title); 203 (void) strcpy(cur_title, title); 204 fmt_print("\n\n%s MENU:\n", title);
|
| /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/util/ |
| HelpDialog.java | 52 public HelpDialog(Frame parent, String title, boolean mode) { 53 this(parent, title, mode, NUM_ROWS, NUM_COLS); 56 public HelpDialog(Frame parent, String title, boolean mode, int numRows, 58 super(parent, title, mode);
|