Searched refs:title (Results 1 - 25 of 374) sorted by relevance

1234567891011>>

/netbsd-current/external/ibm-public/postfix/dist/mantools/
H A Dman2html8 -t) title=$2; shift; shift;;
9 -*) echo "Usage: $0 [-t title] [file(s)]" 1>&2; exit 1;;
19 <title> $title </title>
/netbsd-current/external/gpl2/texinfo/dist/makeinfo/tests/
H A Dhtml-title2 # Test that titles with @ commands don't produce markup in the <title>.
5 if ../makeinfo --no-split --html ${srcdir-.}/html-title.txi; then
6 grep '^<title>@[^<>]*</title>$' html-title.html >/dev/null
12 rm -f html-title.html
/netbsd-current/external/bsd/tmux/dist/compat/
H A Dsetproctitle.c31 char title[16], name[16], *cp; local
36 vsnprintf(title, sizeof title, fmt, ap);
39 used = snprintf(name, sizeof name, "%s: %s", getprogname(), title);
/netbsd-current/share/doc/usd/
H A DMakefile23 SUBARTICLES=title contents
24 SRCS.title=Title
/netbsd-current/external/bsd/wpa/dist/src/utils/
H A Dtrace.h28 #define wpa_trace_dump(title, ptr) \
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)
51 #define wpa_trace_show(title) do { } while (0)
61 void wpa_trace_dump_funcname(const char *title, void *pc);
65 #define wpa_trace_dump_funcname(title, pc) do { } while (0)
H A Dbrowser.c21 char *title; member in struct:browser_context
42 ctx->title ? ctx->title :
48 ctx->title ? ctx->title : "Hotspot 2.0 client");
125 static void view_cb_hovering_over_link(WebKitWebView *view, gchar *title, argument
128 wpa_printf(MSG_DEBUG, "BROWSER:%s title=%s uri=%s", __func__, title,
141 const char *title,
144 wpa_printf(MSG_DEBUG, "BROWSER:%s title
140 view_cb_title_changed(WebKitWebView *view, WebKitWebFrame *frame, const char *title, struct browser_context *ctx) argument
[all...]
H A Dwpa_debug.h81 * @title: title of for the message
89 void wpa_hexdump(int level, const char *title, const void *buf, size_t len);
91 static inline void wpa_hexdump_buf(int level, const char *title, argument
94 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL,
101 * @title: title of for the message
111 void wpa_hexdump_key(int level, const char *title, const void *buf, size_t len);
113 static inline void wpa_hexdump_buf_key(int level, const char *title, argument
116 wpa_hexdump_key(level, title, bu
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dmaps.h25 char *title; member in struct:MAPS
H A Dlogin_sender_match.h26 extern LOGIN_SENDER_MATCH *login_sender_create(const char *title,
H A Dmaps.c11 /* MAPS *maps_create(title, map_names, flags)
12 /* const char *title;
57 /* .IP title
128 MAPS *maps_create(const char *title, const char *map_names, int dict_flags) argument
144 maps->title = mystrdup(title);
205 maps->title, name);
207 maps->title);
212 msg_info("%s: %s: %s: %s = %.100s%s", myname, maps->title,
223 msg_info("%s: %s: %s: %s", myname, maps->title, nam
[all...]
/netbsd-current/external/mit/libuv/dist/src/unix/
H A Dno-proctitle.c35 int uv_set_process_title(const char* title) { argument
H A Dbsd-proctitle.c52 int uv_set_process_title(const char* title) { argument
55 new_title = uv__strdup(title);
64 setproctitle("%s", title);
/netbsd-current/external/gpl2/texinfo/dist/makeinfo/
H A Dfloat.h32 char *title; member in struct:float_elt
42 extern void add_new_float (char *id, char *title, char *shorttitle,
H A Dfloat.c36 add_new_float (char *id, char *title, char *shorttitle, argument
44 new->title = title;
71 /* Plain text output needs sectioning number and its title,
106 return float_stack->title;
247 if (strlen (temp->title) > 0)
253 execute_string ("%s", temp->title);
264 char *title = expansion (temp->title, 0); local
283 and then a colon after the title, t
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Ddict_stream.c158 const char *title; member in struct:testcase
205 for (pass = fail = 0, tp = testcases; tp->title; tp++) {
208 msg_info("RUN test case %ld %s", (long) (tp - testcases), tp->title);
211 msg_info("title=%s", tp->title);
223 msg_warn("test case %s: got stream, expected error", tp->title);
226 tp->title, STR(act_err));
229 tp->title);
233 msg_warn("test case %s: content read error", tp->title);
238 tp->title, ST
[all...]
/netbsd-current/external/historical/nawk/dist/testdir/
H A Dfunstack.awk141 /^ *title *= *\"/ { do_title(); next }
196 if (html_length(Title) <= (MAX_TITLE_CHARS + MIN_LEADERS)) # complete title fits on line
198 else # need to split long title over multiple lines
217 function do_long_title(author,title,pages, last_title,n)
219 title = trim(title) # discard leading and trailing space
220 while (length(title) > 0)
222 n = html_breakpoint(title,MAX_TITLE_CHARS+MIN_LEADERS)
223 last_title = substr(title,1,n)
224 title
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/docs/
H A Dconf.py126 # A shorter title for the navigation bar. Default is the same as html_title.
209 # (source start file, target name, title, author, documentclass [howto/manual]).
216 # the title page.
253 title = f.readline().rstrip('\n')
255 m = re.match(r'^# (\S+) - (.+)$', title)
257 print("error: invalid title in %r "
268 title = f.readline().rstrip('\n')
271 if len(header) != len(title):
272 print('error: invalid header in %r (does not match title)' %
274 if ' - ' not in title
[all...]
/netbsd-current/share/doc/psd/
H A DMakefile31 SUBARTICLES=title contents
32 SRCS.title=Title
/netbsd-current/share/doc/smm/
H A DMakefile30 SUBARTICLES=title contents
31 SRCS.title=Title
/netbsd-current/crypto/external/bsd/openssl/dist/test/recipes/
H A D81-test_cmp_cli.t60 my $title = $$_[0];
64 $title);
69 my $title = $$_[0];
87 $title);
/netbsd-current/external/apache2/llvm/dist/clang/docs/
H A Dconf.py110 # A shorter title for the navigation bar. Default is the same as html_title.
186 # (source start file, target name, title, author, documentclass [howto/manual]).
193 # the title page.
233 title = f.readline().rstrip('\n') variable
236 if len(header) != len(title):
238 "error: invalid header in %r (does not match title)" % (
240 if ' - ' not in title:
242 ("error: invalid title in %r "
246 # Split the name out of the title.
247 name,description = title
[all...]
/netbsd-current/external/bsd/pkg_install/dist/info/
H A Dshow.c104 show_file(const char *buf, const char *title, Boolean separator) argument
109 printf("%s%s", InfoPrefix, title);
136 show_index(const char *buf, const char *title) argument
141 printf("%s%s", InfoPrefix, title);
154 show_plist(const char *title, package_t *plist, pl_ent_t type) argument
160 printf("%s%s", InfoPrefix, title);
219 show_files(const char *title, package_t *plist) argument
226 printf("%s%s", InfoPrefix, title);
253 show_depends(const char *title, package_t *plist) argument
272 printf("%s%s", InfoPrefix, title);
291 show_bld_depends(const char *title, package_t *plist) argument
415 show_list(lpkg_head_t *pkghead, const char *title) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dstyle.exp117 set aliases_expr [style ".*aliases.*" title]
118 set breakpoints_expr [style ".*breakpoints.*" title]
127 "help classes of commands styled with title"
129 set taas_expr [style ".*taas.*" title]
130 set tfaas_expr [style ".*tfaas.*" title]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
H A Dtui-window.py29 win.title = "This Is The Title"
38 # Tries to delete the title attribute. GDB will throw an error.
40 del self.win.title
/netbsd-current/external/ibm-public/postfix/dist/src/dns/
H A Ddns_rr_filter.c11 /* void dns_rr_filter_compile(title, map_names)
12 /* const char *title;
24 /* title and map_names arguments are as with maps_create().
87 void dns_rr_filter_compile(const char *title, const char *map_names) argument
91 dns_rr_filter_maps = maps_create(title, map_names,
112 dns_rr_filter_maps->title, cmd);

Completed in 181 milliseconds

1234567891011>>