Searched refs:style (Results 1 - 25 of 263) sorted by relevance

1234567891011

/openbsd-current/libexec/login_radius/
H A Dlogin_radius.h20 raddauth(char *username, char *class, char *style, char *challenge,
H A Dlogin_radius.c90 char *class, *service, *style, *username, *password, *emsg; local
137 if ((style = strrchr(__progname, '/')))
138 ++style;
140 style = __progname;
142 if (strncmp(style, "login_", 6) == 0)
143 style += 6;
145 if (!cleanstring(style))
146 errx(1, "style contains non-printables");
182 c = raddauth(username, class, style,
/openbsd-current/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Dxhtml15.t15 my $style = 'http://amazingpants.com/style.css';
16 $parser->html_css($style);
18 like $results, qr/ href="$style" /, 'CSS is correct when link is passed in';
21 my $link = qq{<link rel="stylesheet" href="$style" type="text/css">};
24 like $results, qr/ href="$style" /, 'CSS is correct when <link> is passed in';
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DPath.h79 Style S = Style::native; ///< The path style to use.
82 friend const_iterator begin(StringRef path, Style style);
105 Style S = Style::native; ///< The path style to use.
107 friend reverse_iterator rbegin(StringRef path, Style style);
122 const_iterator begin(StringRef path, Style style = Style::native);
132 reverse_iterator rbegin(StringRef path, Style style = Style::native);
155 void remove_filename(SmallVectorImpl<char> &path, Style style = Style::native);
170 Style style = Style::native);
191 /// @param style The style use
[all...]
/openbsd-current/usr.bin/dig/lib/dns/include/dns/
H A Dmasterdump.h109 * The style used for debugging, "dig" output, etc.
120 const dns_master_style_t *style,
137 const dns_master_style_t *style,
141 dns_master_stylecreate2(dns_master_style_t **style, unsigned int flags,
147 dns_master_styledestroy(dns_master_style_t **style);
/openbsd-current/usr.bin/tail/
H A Dtail.c57 enum STYLE style; local
78 if (style) \
87 style = (forward); \
93 style = (backward); \
99 style = NOTSET;
125 * style values.
130 if (style == FBYTES)
131 style = RBYTES;
132 else if (style == FLINES)
133 style
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DPath.cpp40 inline Style real_style(Style style) { argument
41 if (style != Style::native)
42 return style;
43 if (is_style_posix(style))
49 inline const char *separators(Style style) { argument
50 if (is_style_windows(style))
55 inline char preferred_separator(Style style) { argument
56 if (real_style(style) == Style::windows)
61 StringRef find_first_component(StringRef path, Style style) { argument
71 if (is_style_windows(style)) {
97 filename_pos(StringRef str, Style style) argument
116 root_dir_start(StringRef str, Style style) argument
139 parent_path_end(StringRef path, Style style) argument
226 begin(StringRef path, Style style) argument
[all...]
/openbsd-current/usr.bin/dig/lib/dns/
H A Dmasterdump.c63 dns_master_style_t style; member in struct:dns_totext_ctx
75 * A style suitable for dns_rdataset_totext().
155 totext_ctx_init(const dns_master_style_t *style, dns_totext_ctx_t *ctx) { argument
158 REQUIRE(style->tab_width != 0);
160 ctx->style = *style;
168 if ((ctx->style.flags & DNS_STYLEFLAG_MULTILINE) != 0) {
182 if ((ctx->style.flags & DNS_STYLEFLAG_COMMENTDATA) != 0) {
190 result = indent(&col, ctx->style.rdata_column,
191 ctx->style
499 dns_master_rdatasettotext(dns_name_t *owner_name, dns_rdataset_t *rdataset, const dns_master_style_t *style, isc_buffer_t *target) argument
518 dns_master_questiontotext(dns_name_t *owner_name, dns_rdataset_t *rdataset, const dns_master_style_t *style, isc_buffer_t *target) argument
543 dns_master_style_t *style; local
565 dns_master_style_t *style; local
[all...]
/openbsd-current/gnu/usr.bin/perl/ext/B/t/
H A Dconcise.t89 like ($@, qr/expecting 3 style-format args/,
99 like ($@, qr/style 'junk' already exists, choose a new name/,
100 "add_style correctly disallows re-adding same style-name" );
105 is ($@, '', "set_style accepts 3 style-format args");
107 @stylespec = (); # bad style
110 like ($@, qr/expecting 3 style-format args/,
111 "set_style rejects bad style-format args");
241 for $style (@styles) {
245 $walker->($style, $mode);
246 $combos{"$style
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dc-aux-info.c105 source code version of a formal parameter list (of some given style) for
107 a pair of surrounding parens) as a string. Note that if the style
112 gen_formal_list_for_type (fntype, style)
114 formals_style style;
119 if (style != ansi)
139 /* If we got to here, then we are trying to generate an ANSI style formal
142 New style prototyped ANSI formal parameter lists should in theory always
157 K&R empty parameter lists and new-style prototyped parameter lists
212 /* Generate a parameter list for a function definition (in some given style).
232 gen_formal_list_for_func_def (fndecl, style)
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Dc-aux-info.c106 source code version of a formal parameter list (of some given style) for
108 a pair of surrounding parens) as a string. Note that if the style
113 gen_formal_list_for_type (tree fntype, formals_style style)
118 if (style != ansi)
138 /* If we got to here, then we are trying to generate an ANSI style formal
141 New style prototyped ANSI formal parameter lists should in theory always
156 K&R empty parameter lists and new-style prototyped parameter lists
210 /* Generate a parameter list for a function definition (in some given style).
230 gen_formal_list_for_func_def (tree fndecl, formals_style style)
240 if (*formal_list && ((style
112 gen_formal_list_for_type(tree fntype, formals_style style) argument
229 gen_formal_list_for_func_def(tree fndecl, formals_style style) argument
302 gen_type(const char *ret_val, tree t, formals_style style) argument
473 gen_decl(tree decl, int is_func_definition, formals_style style) argument
[all...]
/openbsd-current/sys/arch/loongson/loongson/
H A Dlocore0.S34 .set noreorder # Noreorder is default style!
/openbsd-current/sys/arch/octeon/octeon/
H A Dlocore0.S34 .set noreorder # Noreorder is default style!
/openbsd-current/gnu/usr.bin/perl/dist/Data-Dumper/
H A DDumper.xs76 Style *style);
651 AV *postav, const I32 level, SV *apad, Style *style)
674 if (style->maxrecursed)
693 if (SvOBJECT(SvRV(val)) && style->freezer &&
694 SvPOK(style->freezer) && SvCUR(style->freezer) &&
695 gv_fetchmeth(SvSTASH(SvRV(val)), SvPVX_const(style->freezer),
696 SvCUR(style->freezer), -1) != NULL)
700 i = perl_call_method(SvPVX_const(style->freezer), G_EVAL|G_VOID|G_DISCARD);
727 if (style
[all...]
/openbsd-current/lib/libc/gen/
H A Dauthenticate.c323 auth_usercheck(char *name, char *style, char *type, char *password) argument
339 * Split up user:style names if we were not given a style
341 if (style == NULL && (style = strchr(name, ':')) != NULL)
342 *style++ = '\0';
360 if ((style = login_getstyle(lc, style, type)) == NULL) {
376 as = auth_verify(as, style, name, lc->lc_class, (char *)NULL);
383 auth_userokay(char *name, char *style, cha argument
394 auth_userchallenge(char *name, char *style, char *type, char **challengep) argument
453 char *style, *name, *challenge, *class; local
513 auth_verify(auth_session_t *as, char *style, char *name, ...) argument
[all...]
/openbsd-current/regress/usr.bin/ssh/
H A Dproxy-connect.sh25 verbose "username with style"
26 ${SSH} -F $OBJ/ssh_proxy ${USER}:style@999.999.999.999 true || \
/openbsd-current/usr.bin/mandoc/
H A Dmanconf.h36 char *style; member in struct:manoutput
/openbsd-current/gnu/llvm/clang/tools/clang-format/
H A Dclang-format-sublime.py25 # a '.clang-format' or '_clang-format' file to indicate the style that should be
27 style = None variable
36 if style:
37 command.extend(['-style', style])
H A Dclang-format.el11 ;; style options, see <http://clang.llvm.org/docs/ClangFormatStyleOptions.html>.
49 (defcustom clang-format-style nil
52 By default clang-format will load the style configuration from
58 (make-variable-buffer-local 'clang-format-style)
60 (defcustom clang-format-fallback-style "none"
61 "Fallback style to pass to clang-format.
63 This style will be used if clang-format-style is set to \"file\"
70 (make-variable-buffer-local 'clang-format-fallback-style)
135 (defun clang-format-region (start end &optional style assum
[all...]
/openbsd-current/gnu/lib/libiberty/src/testsuite/
H A Dtest-demangle.c101 enum demangling_styles style; local
136 style = auto_demangling;
138 style = cplus_demangle_name_to_style (fstyle);
140 if (style == unknown_demangling)
142 printf ("FAIL at line %d: unknown demangling style %s\n",
148 cplus_demangle_set_style (style);
158 FAIL at line %d, style %s:\n\
/openbsd-current/gnu/usr.bin/binutils/binutils/
H A Dcxxfilt.c169 enum demangling_styles style = auto_demangling; local
201 style = cplus_demangle_name_to_style (optarg);
202 if (style == unknown_demangling)
204 fprintf (stderr, "%s: unknown demangling style `%s'\n",
209 cplus_demangle_set_style (style);
243 fatal ("Internal error: no symbol alphabet for current style");
271 flags |= (int) style;
H A Drcparse.y44 /* This is used when building a style. It is modified by the
47 static unsigned long style;
342 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
350 style = 0;
367 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
377 style = 0;
394 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
405 style = 0;
431 dialog.style |= WS_CAPTION;
432 style |
[all...]
/openbsd-current/gnu/llvm/clang/www/analyzer/scripts/
H A Dexpandcollapse.js72 with (data.style) { height = (CLIP_HEIGHT - EXPANDER_HEIGHT) + "px";
76 with (expander.style) { display = "block"; paddingTop = "5px"; }
103 expandableDiv.style.height = CLIP_HEIGHT + "px";
163 expandableDiv.style.height = newHeight + "px";
170 data.style.height = (newHeight - EXPANDER_HEIGHT) + "px";
175 data.style.height = "";
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Ddemangle.c35 /* Select the default C++ demangling style to use. The default is "auto",
36 which allows gdb to attempt to pick an appropriate demangling style for
37 the executable it has loaded. It can be set to a specific style ("gnu",
39 selection of the style unless you do an explicit "set demangle auto".
49 /* String name for the current demangling style. Set by the
50 "set demangle-style" command, printed as part of the output by the
51 "show demangle-style" command. */
62 /* Set current demangling style. Called by the "set demangle-style"
66 If the user has entered a string that matches a known demangling style
145 set_demangling_style(char *style) argument
[all...]
/openbsd-current/usr.bin/ssh/
H A Dauth-bsdauth.c70 debug3("bsdauth_query: style %s",
71 authctxt->style ? authctxt->style : "<default>");
73 authctxt->style, "auth-ssh", &challenge);

Completed in 469 milliseconds

1234567891011