| /freebsd-14.2/contrib/googletest/docs/_data/ |
| H A D | navigation.yml | 4 - title: "Supported Platforms" 6 - title: "Quickstart: Bazel" 8 - title: "Quickstart: CMake" 12 - title: "GoogleTest Primer" 14 - title: "Advanced Topics" 28 - title: "Assertions" 30 - title: "Matchers" 32 - title: "Actions" 34 - title: "Testing FAQ" 36 - title: "Mocking FAQ" [all …]
|
| /freebsd-14.2/usr.sbin/spkrtest/ |
| H A D | spkrtest.sh | 55 /usr/bin/bsddialog --title " Speaker test " --checklist \ 74 title="(default melody)" 78 title="Reveille" 82 title="Contact theme from Close Encounters" 86 title="Lord of the Dance (aka Simple Gifts)" 90 title="Loony Toons theme" 94 title="standard villain's entrance music" 98 title="a trope from 'The Right Stuff' score by Bill Conti" 102 title="opening bars of Bach's Toccata and Fugue in D Minor" 106 title="opening bars of the theme from Star Trek Classic" [all …]
|
| /freebsd-14.2/contrib/one-true-awk/testdir/ |
| H A D | funstack.awk | 219 title = trim(title) # discard leading and trailing space 220 while (length(title) > 0) 223 last_title = substr(title,1,n) 224 title = substr(title,n+1) 225 sub(/^ +/,"",title) # discard any leading space 517 for (k = min(maxlength,length(title)); k < length(title); ++k) 519 if (substr(title,k+1,1) == " ") 529 for (k = min(maxlength,length(title)) - 1; \ 530 (k > 0) && (substr(title,k+1,1) != " "); --k) 539 k = length(title) [all …]
|
| /freebsd-14.2/contrib/dialog/ |
| H A D | dialog.pl | 107 . "ed($title) 123 . "ed($title) 145 . "ed($title) 161 . "ed($title) 187 . "ed($title) 221 . "ed($title) 262 . "ed($title) 301 . "ed($title) 333 . "ed($title) 380 . "ed($title) [all …]
|
| H A D | guage.c | 42 char *title; member 274 free(obj->title); in my_cleanup() 298 const char *title, in dlg_reallocate_gauge() argument 341 if (obj->title == 0 || strcmp(obj->title, title)) { in dlg_reallocate_gauge() 342 dlg_finish_string(obj->title); in dlg_reallocate_gauge() 343 free(obj->title); in dlg_reallocate_gauge() 344 obj->title = dlg_strclone(title); in dlg_reallocate_gauge() 381 if (obj->title) in dlg_free_gauge() 382 free(obj->title); in dlg_free_gauge() 401 dialog_gauge(const char *title, in dialog_gauge() argument [all …]
|
| H A D | progressbox.c | 84 start_obj(MY_OBJ * obj, const char *title, const char *cprompt) in start_obj() argument 90 dlg_auto_size(title, obj->prompt, &obj->high, &obj->wide, MIN_HIGH, MIN_WIDE); in start_obj() 107 dlg_draw_title(obj->obj.win, title); in start_obj() 278 pause_for_ok(MY_OBJ * obj, const char *title, const char *cprompt) in pause_for_ok() argument 296 (void) title; in pause_for_ok() 352 start_obj(obj, title, cprompt); in pause_for_ok() 382 dlg_progressbox(const char *title, in dlg_progressbox() argument 396 DLG_TRACE2S("title", title); in dlg_progressbox() 418 start_obj(obj, title, cprompt); in dlg_progressbox() 462 result = pause_for_ok(obj, title, cprompt); in dlg_progressbox() [all …]
|
| /freebsd-14.2/contrib/dialog/samples/ |
| H A D | dialog.py | 97 def __handleTitle(self, title): argument 98 if len(title) == 0: 101 return '--title "%s" ' % title 104 def yesno(self, text, height=10, width=30, title=''): argument 120 self.__perform(self.__handleTitle(title) +\ 134 (c, o) = self.__perform(self.__handleTitle(title) +\ 147 if title is None: 148 title = filename 149 self.__perform(self.__handleTitle(title) +\ 247 self.__perform(self.__handleTitle(title) +\ [all …]
|
| H A D | msgbox1 | 6 $DIALOG --title "MESSAGE BOX" --clear "$@" \ 13 $DIALOG --aspect 12 --title "MESSAGE BOX aspect=12" --clear "$@" \ 20 $DIALOG --aspect 6 --title "MESSAGE BOX aspect=6" --clear "$@" \ 27 $DIALOG --aspect 6 --cr-wrap --title "MESSAGE BOX aspect=6 with --cr-wrap" \
|
| H A D | msgbox2 | 6 $DIALOG --title "MESSAGE BOX" --trim "$@" \ 13 $DIALOG --aspect 12 --title "MESSAGE BOX aspect=12" --trim "$@" \ 20 $DIALOG --aspect 6 --title "MESSAGE BOX aspect=6" --trim "$@" \ 27 $DIALOG --aspect 6 --cr-wrap --title "MESSAGE BOX aspect=6 with --cr-wrap" \
|
| /freebsd-14.2/contrib/wpa/src/utils/ |
| H A D | trace.h | 28 #define wpa_trace_dump(title, ptr) \ argument 29 wpa_trace_dump_func((title), (ptr)->btrace, (ptr)->btrace_num) 30 void wpa_trace_dump_func(const char *title, void **btrace, int btrace_num); 33 void wpa_trace_show(const char *title); 49 #define wpa_trace_dump(title, ptr) do { } while (0) argument 51 #define wpa_trace_show(title) do { } while (0) argument 61 void wpa_trace_dump_funcname(const char *title, void *pc); 65 #define wpa_trace_dump_funcname(title, pc) do { } while (0) argument
|
| H A D | browser.c | 26 char *title; member 50 ctx->title ? ctx->title : in browser_update_title() 56 ctx->title ? ctx->title : "Hotspot 2.0 client"); in browser_update_title() 186 const char *title; in view_cb_notify_title() local 188 title = webkit_web_view_get_title(ctx->view); in view_cb_notify_title() 190 os_free(ctx->title); in view_cb_notify_title() 191 ctx->title = os_strdup(title); in view_cb_notify_title() 280 const char *title, in view_cb_title_changed() argument 284 os_free(ctx->title); in view_cb_title_changed() 285 ctx->title = os_strdup(title); in view_cb_title_changed() [all …]
|
| H A D | wpa_debug.c | 267 level, title, (unsigned long) len); in _wpa_hexdump() 348 title, (unsigned long) len, display); in _wpa_hexdump() 358 title, (unsigned long) len); in _wpa_hexdump() 387 _wpa_hexdump(level, title, buf, len, 1, 0); in wpa_hexdump() 408 level, title, (unsigned long) len); in _wpa_hexdump_ascii() 426 _wpa_hexdump(level, title, buf, len, show, 0); in _wpa_hexdump_ascii() 438 title, (unsigned long) len); in _wpa_hexdump_ascii() 444 title, (unsigned long) len); in _wpa_hexdump_ascii() 448 title, (unsigned long) len); in _wpa_hexdump_ascii() 475 title, (unsigned long) len); in _wpa_hexdump_ascii() [all …]
|
| H A D | wpa_debug.h | 88 void wpa_hexdump(int level, const char *title, const void *buf, size_t len); 90 static inline void wpa_hexdump_buf(int level, const char *title, in wpa_hexdump_buf() argument 93 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL, in wpa_hexdump_buf() 110 void wpa_hexdump_key(int level, const char *title, const void *buf, size_t len); 112 static inline void wpa_hexdump_buf_key(int level, const char *title, in wpa_hexdump_buf_key() argument 115 wpa_hexdump_key(level, title, buf ? wpabuf_head(buf) : NULL, in wpa_hexdump_buf_key() 132 void wpa_hexdump_ascii(int level, const char *title, const void *buf, 149 void wpa_hexdump_ascii_key(int level, const char *title, const void *buf,
|
| /freebsd-14.2/usr.sbin/tzsetup/ |
| H A D | tzsetup.c | 100 char *title; member 125 conf.title = title; in xdialog_menu() 189 char title[30]; member 223 snprintf(title, sizeof(title), "Countries in %s", in continent_country_menu() 224 continent->title); in continent_country_menu() 227 snprintf(title, sizeof(title), "Islands and groups in the %s", in continent_country_menu() 228 continent->title); in continent_country_menu() 619 continents[i].title = continent_items[i].title; in make_menus() 655 dmi->title = cp->name; in make_menus() 683 snprintf(title, sizeof(title), "%s Time Zones", cp->name); in set_zone_menu() [all …]
|
| /freebsd-14.2/contrib/wpa/wpa_supplicant/doc/docbook/ |
| H A D | wpa_passphrase.sgml | 25 <title>Overview</title> 34 <title>Options</title> 54 <title>See Also</title> 68 <title>Legal</title>
|
| H A D | wpa_gui.sgml | 30 <title>Overview</title> 42 <title>Command Arguments</title> 84 <title>See Also</title> 97 <title>Legal</title>
|
| /freebsd-14.2/crypto/openssl/test/recipes/ |
| H A D | 25-test_verify_store.t | 102 my $title = shift; 104 ok(run(app([qw(openssl verify), @_])), $title); 108 my $title = shift; 110 ok(run(app([qw(openssl req), @_])), $title); 114 my $title = shift; 116 ok(run(app([qw(openssl x509), @_])), $title);
|
| H A D | 81-test_cmp_cli.t | 60 my $title = $$_[0]; 64 $title); 69 my $title = $$_[0]; 87 $title);
|
| /freebsd-14.2/crypto/openssl/test/ |
| H A D | pkits-test.pl | 763 my ( $tnum, $title ) = @$_; 764 print "$tnum $title\n" if $verbose; 767 my ( $tnum, $title, $exp_ret ) = @$_; 768 my $filename = $title; 793 print "$tnum $title : Failed!\n"; 803 my ( $tnum, $title, $exargs, $exp_epol, $exp_aset, $exp_uset, $exp_ret ) 805 my $filename = $title; 887 print "$tnum $title : Failed!\n";
|
| /freebsd-14.2/usr.sbin/lpr/lp/ |
| H A D | lp.sh | 46 title="" 74 title="${OPTARG}";; 82 exec /usr/bin/lpr "-P${dest}" ${symlink} ${ncopies} ${mailafter} ${title:+-J"${title}"} "$@"
|
| /freebsd-14.2/usr.sbin/bsdinstall/ |
| H A D | startbsdinstall | 49 …bsddialog --backtitle "FreeBSD Installer" --title "Installing" --msgbox "FreeBSD is being installe… 52 …bsddialog --backtitle "FreeBSD Installer" --title "Complete" --no-cancel --ok-label "Reboot" --pau… 55 bsddialog --backtitle "FreeBSD Installer" --title "Error" --textbox /tmp/bsdinstall_log 0 0 60 bsddialog --backtitle "FreeBSD Installer" --title "Welcome" --extra-button --extra-label "Shell" --… 73 …bsddialog --backtitle "FreeBSD Installer" --title "Complete" --ok-label "Reboot" --extra-button --…
|
| /freebsd-14.2/share/doc/papers/ |
| H A D | bsdreferences.bib | 9 title = {{TESLA: temporally enhanced system logic assertions}}, 90 title = {Evaluation of Source Code Copy Detection Methods on Freebsd}, 166 title = {Forth and the FreeBSD Bootloader}, 185 title = {Reasoning About SMP in FreeBSD}, 200 title = {The Evolution of FreeBSD and Linux}, 218 title = {Optimizing the BSD Routing System for Parallel Processing}, 236 title = {The Design and Implementation of the 4.4BSD Operating System}, 262 title = {Thread Scheduling in FreeBSD 5.2}, 281 title = {An Implementation of the Yarrow PRNG for FreeBSD}, 296 title = {Global Software Development in the freeBSD Project}, [all …]
|
| /freebsd-14.2/usr.sbin/bsdinstall/scripts/ |
| H A D | auto | 74 local title="$msg_abort" 83 "$title" "$btitle" "$prompt" "$hline" 86 --title "$title" \ 106 local title="$DIALOG_TITLE" 132 --title "$title" \ 370 --title "Add User Accounts" --yesno \ 377 --title "Final Configuration" --no-cancel --menu \ 439 dialog --backtitle "$OSNAME Installer" --title "Manual Configuration" \
|
| /freebsd-14.2/contrib/libxo/tests/core/saved/ |
| H A D | test_03.H.out | 1 …title"> Type</div><div class="text"> </div><div class="title">InUse</div><div class="text"…
|
| /freebsd-14.2/usr.sbin/bsdconfig/timezone/ |
| H A D | timezone | 82 local title="$DIALOG_TITLE" 213 --title "$title" \ 222 --title "$title" \ 329 f_dialog_title "$title" 337 f_dialog_title "$title" 404 f_dialog_title "$title"
|