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

123456

/freebsd-13-stable/contrib/kyua/admin/
H A DMakefile.am.inc29 PHONY_TARGETS += check-style
30 check-style:
31 @$(srcdir)/admin/check-style.sh \
36 EXTRA_DIST += admin/check-style-common.awk \
37 admin/check-style-cpp.awk \
38 admin/check-style-make.awk \
39 admin/check-style-man.awk \
40 admin/check-style-shell.awk \
41 admin/check-style.sh
/freebsd-13-stable/contrib/elftoolchain/libelftc/
H A Delftc_demangle.c39 is_mangled(const char *s, unsigned int style) argument
42 switch (style) {
43 case ELFTC_DEM_ARM: return (is_cpp_mangled_ARM(s) ? style : 0);
44 case ELFTC_DEM_GNU2: return (is_cpp_mangled_gnu2(s) ? style : 0);
45 case ELFTC_DEM_GNU3: return (is_cpp_mangled_gnu3(s) ? style : 0);
48 /* No style or invalid style spcified, try to guess. */
61 demangle(const char *s, unsigned int style, unsigned int rc) argument
65 switch (style) {
79 unsigned int style, r local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DPath.h58 Style S = Style::native; ///< The path style to use.
61 friend const_iterator begin(StringRef path, Style style);
84 Style S = Style::native; ///< The path style to use.
86 friend reverse_iterator rbegin(StringRef path, Style style);
101 const_iterator begin(StringRef path, Style style = Style::native);
111 reverse_iterator rbegin(StringRef path, Style style = Style::native);
134 void remove_filename(SmallVectorImpl<char> &path, Style style = Style::native);
149 Style style = Style::native);
170 /// @param style The style use
[all...]
/freebsd-13-stable/contrib/openpam/lib/libpam/
H A Dpam_prompt.c57 int style,
66 r = pam_vprompt(pamh, style, resp, fmt, ap);
56 pam_prompt(const pam_handle_t *pamh, int style, char **resp, const char *fmt, ...) argument
H A Dopenpam_configure.c159 openpam_style_t style)
184 if (style == pam_conf_style &&
345 openpam_style_t style)
373 f, filename, style);
393 openpam_style_t style; local
401 style = pam_conf_style;
403 style = pam_d_style;
405 service, style);
423 style = pam_d_style;
425 style
154 openpam_parse_chain(pam_handle_t *pamh, const char *service, pam_facility_t facility, FILE *f, const char *filename, openpam_style_t style) argument
341 openpam_load_file(pam_handle_t *pamh, const char *service, pam_facility_t facility, const char *filename, openpam_style_t style) argument
[all...]
H A Dpam_get_authtok.c76 int pitem, r, style, twice; local
136 style = openpam_get_option(pamh, "echo_pass") ?
138 r = pam_prompt(pamh, style, &resp, "%s", prompt);
142 r = pam_prompt(pamh, style, &resp2, "Retype %s", prompt);
H A Dpam_vprompt.c58 int style,
81 msg.msg_style = style;
105 * The =style argument specifies the type of interaction requested, and
57 pam_vprompt(const pam_handle_t *pamh, int style, char **resp, const char *fmt, va_list ap) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp39 inline Style real_style(Style style) { argument
41 return (style == Style::posix) ? Style::posix : Style::windows;
43 return (style == Style::windows) ? Style::windows : Style::posix;
47 inline const char *separators(Style style) { argument
48 if (real_style(style) == Style::windows)
53 inline char preferred_separator(Style style) { argument
54 if (real_style(style) == Style::windows)
59 StringRef find_first_component(StringRef path, Style style) { argument
69 if (real_style(style) == Style::windows) {
77 if ((path.size() > 2) && is_separator(path[0], style)
95 filename_pos(StringRef str, Style style) argument
114 root_dir_start(StringRef str, Style style) argument
137 parent_path_end(StringRef path, Style style) argument
224 begin(StringRef path, Style style) argument
[all...]
/freebsd-13-stable/crypto/openssh/regress/
H A Dproxy-connect.sh19 verbose "username with style"
20 ${SSH} -F $OBJ/ssh_proxy ${USER}:style@999.999.999.999 true || \
/freebsd-13-stable/usr.bin/tail/
H A Dtail.c90 enum STYLE style; local
109 if (style) \
118 style = (forward); \
124 style = (backward); \
130 style = NOTSET;
183 * style values.
188 if (style == FBYTES)
189 style = RBYTES;
190 else if (style == FLINES)
191 style
[all...]
H A Dreverse.c85 reverse(FILE *fp, const char *fn, enum STYLE style, off_t off, struct stat *sbp) argument
87 if (style != REVERSE && off == 0)
91 r_reg(fp, fn, style, off, sbp);
93 switch(style) {
114 r_reg(FILE *fp, const char *fn, enum STYLE style, off_t off, struct stat *sbp) argument
143 if (style == RBYTES && --off == 0)
161 if (style == RLINES)
164 if (off == 0 && style != REVERSE) {
/freebsd-13-stable/contrib/mandoc/
H A Dmanconf.h32 char *style; member in struct:manoutput
/freebsd-13-stable/usr.sbin/ntp/doc/drivers/scripts/
H A DMakefile8 FILES= footer.txt style.css
/freebsd-13-stable/lib/libpam/modules/pam_opie/
H A Dpam_opie.c71 int style; local
118 style = PAM_PROMPT_ECHO_OFF;
120 retval = pam_prompt(pamh, style, &response,
133 style = PAM_PROMPT_ECHO_ON;
/freebsd-13-stable/contrib/subversion/subversion/libsvn_wc/
H A Dtranslate.c64 svn_subst_eol_style_t style;
72 SVN_ERR(svn_wc__get_translate_info(&style, &eol,
103 if (svn_subst_translation_required(style, eol, keywords, special, TRUE))
107 if (style == svn_subst_eol_style_native)
109 else if (style == svn_subst_eol_style_fixed)
111 else if (style != svn_subst_eol_style_none)
152 svn_subst_eol_style_t style;
159 SVN_ERR(svn_wc__get_translate_info(&style, &eol,
165 if (! svn_subst_translation_required(style, eol, keywords, special, TRUE)
206 if (style
63 svn_subst_eol_style_t style; local
151 svn_subst_eol_style_t style; local
243 svn_wc__get_translate_info(svn_subst_eol_style_t *style, const char **eol, apr_hash_t **keywords, svn_boolean_t *special, svn_wc__db_t *db, const char *local_abspath, apr_hash_t *props, svn_boolean_t for_normalization, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp45 bool PathStyleIsPosix(FileSpec::Style style) { argument
46 return (style == FileSpec::Style::posix ||
47 (style == FileSpec::Style::native &&
51 const char *GetPathSeparators(FileSpec::Style style) { argument
52 return llvm::sys::path::get_separator(style).data();
55 char GetPreferredPathSeparator(FileSpec::Style style) { argument
56 return GetPathSeparators(style)[0];
59 void Denormalize(llvm::SmallVectorImpl<char> &path, FileSpec::Style style) { argument
60 if (PathStyleIsPosix(style))
71 FileSpec::FileSpec(llvm::StringRef path, Style style) argument
174 SetFile(llvm::StringRef pathname, Style style) argument
552 FileSpecStyle style = f.m_style; local
[all...]
/freebsd-13-stable/crypto/openssh/
H A Dauth-bsdauth.c75 debug3("bsdauth_query: style %s",
76 authctxt->style ? authctxt->style : "<default>");
78 authctxt->style, "auth-ssh", &challenge);
/freebsd-13-stable/usr.sbin/bsdconfig/dot/
H A Ddot65 # begin_nodelist $shape $color $fillcolor $style
67 # Create a new multi-node list rendering nodes in a specific style described by
72 local shape="$1" color="$2" fillcolor="$3" style="$4"
81 [ "$style" ] &&
82 printf '\t\tstyle = "%s",\n' "$style"
357 shape=circle color=black fillcolor=yellow style=filled
358 begin_nodelist "$shape" "$color" "$fillcolor" "$style"
366 shape=box color=black fillcolor=lightblue style=filled
367 begin_nodelist "$shape" "$color" "$fillcolor" "$style"
377 shape=box color=black fillcolor=lightblue style
[all...]
/freebsd-13-stable/contrib/libxo/xohtml/
H A Dxohtml.js50 style: "qtip-tipped"
/freebsd-13-stable/contrib/expat/doc/
H A DMakefile.am57 style.css \
/freebsd-13-stable/contrib/ntp/sntp/unity/
H A Dunity.c120 void UnityPrintNumberByStyle(const _U_SINT number, const UNITY_DISPLAY_STYLE_T style) argument
122 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT)
126 else if ((style & UNITY_DISPLAY_RANGE_UINT) == UNITY_DISPLAY_RANGE_UINT)
128 UnityPrintNumberUnsigned( (_U_UINT)number & UnitySizeMask[((_U_UINT)style & (_U_UINT)0x0F) - 1] );
132 UnityPrintNumberHex((_U_UINT)number, (char)((style & 0x000F) << 1));
474 const UNITY_DISPLAY_STYLE_T style)
482 UnityPrintNumberByStyle(expected, style);
484 UnityPrintNumberByStyle(actual, style);
496 const UNITY_DISPLAY_STYLE_T style)
515 // If style i
470 UnityAssertEqualNumber(const _U_SINT expected, const _U_SINT actual, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_DISPLAY_STYLE_T style) argument
491 UnityAssertEqualIntArray(UNITY_PTR_ATTRIBUTE const void* expected, UNITY_PTR_ATTRIBUTE const void* actual, const _UU32 num_elements, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_DISPLAY_STYLE_T style) argument
703 UnityAssertFloatSpecial(const _UF actual, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_FLOAT_TRAIT_T style) argument
865 UnityAssertDoubleSpecial(const _UD actual, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_FLOAT_TRAIT_T style) argument
932 UnityAssertNumbersWithin( const _U_SINT delta, const _U_SINT expected, const _U_SINT actual, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_DISPLAY_STYLE_T style) argument
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_diff/
H A Ddeprecated.c254 svn_diff_conflict_display_style_t style =
258 style = svn_diff_conflict_display_resolved_modified_latest;
261 style = svn_diff_conflict_display_modified_original_latest;
272 style,
371 svn_diff_conflict_display_style_t style =
375 style = svn_diff_conflict_display_resolved_modified_latest;
378 style = svn_diff_conflict_display_modified_original_latest;
389 style,
403 svn_diff_conflict_display_style_t style,
413 style,
252 svn_diff_conflict_display_style_t style = local
369 svn_diff_conflict_display_style_t style = local
392 svn_diff_mem_string_output_merge2(svn_stream_t *output_stream, svn_diff_t *diff, const svn_string_t *original, const svn_string_t *modified, const svn_string_t *latest, const char *conflict_original, const char *conflict_modified, const char *conflict_latest, const char *conflict_separator, svn_diff_conflict_display_style_t style, apr_pool_t *pool) argument
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
H A Dxml.c683 enum svn_xml_open_tag_style style,
711 if (style == svn_xml_self_closing) argument
714 if (style != svn_xml_protect_pcdata)
722 enum svn_xml_open_tag_style style,
729 svn_xml_make_open_tag_hash(str, pool, style, tagname, ht);
738 enum svn_xml_open_tag_style style,
745 svn_xml_make_open_tag_v(str, pool, style, tagname, ap);
672 svn_xml_make_open_tag_hash(svn_stringbuf_t **str, apr_pool_t *pool, enum svn_xml_open_tag_style style, const char *tagname, apr_hash_t *attributes) argument
727 svn_xml_make_open_tag(svn_stringbuf_t **str, apr_pool_t *pool, enum svn_xml_open_tag_style style, const char *tagname, ...) argument
/freebsd-13-stable/contrib/apr-util/xml/
H A Dapr_xml.c664 static apr_size_t elem_size(const apr_xml_elem *elem, int style, argument
669 if (style == APR_XML_X2T_FULL || style == APR_XML_X2T_FULL_NS_LANG ||
670 style == APR_XML_X2T_PARSED) {
675 if (style == APR_XML_X2T_FULL_NS_LANG) {
694 else if (style == APR_XML_X2T_PARSED) {
713 else if (style == APR_XML_X2T_PARSED) {
742 else if (style == APR_XML_X2T_PARSED) {
765 else if (style == APR_XML_X2T_LANG_INNER) {
767 * This style prepend
796 write_elem(char *s, const apr_xml_elem *elem, int style, apr_array_header_t *namespaces, int *ns_map) argument
941 apr_xml_to_text(apr_pool_t * p, const apr_xml_elem *elem, int style, apr_array_header_t *namespaces, int *ns_map, const char **pbuf, apr_size_t *psize) argument
[all...]
/freebsd-13-stable/usr.bin/compress/
H A Dcompress.c75 enum {COMPRESS, DECOMPRESS} style; local
86 style = DECOMPRESS;
88 style = COMPRESS;
91 style = DECOMPRESS;
107 style = DECOMPRESS;
117 usage(style == COMPRESS);
123 switch(style) {
134 if (cat == 1 && style == COMPRESS && argc > 1)
138 switch(style) {

Completed in 292 milliseconds

123456