Searched refs:keywords (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-10-stable/sbin/route/
H A DMakefile8 SRCS= route.c keywords.h
10 CLEANFILES+=keywords.h
21 keywords.h: keywords
25 }' < ${.CURDIR}/keywords > ${.TARGET} || (rm -f ${.TARGET}; false)
/freebsd-10-stable/crypto/openssh/
H A Dfreebsd-pre-merge.sh6 :>keywords
11 egrep -l '^(#|\.\\"|/\*)[[:space:]]+\$FreeBSD[:\$]' $f >>keywords
14 sort -u keywords rcsid | xargs perl -n -i -e '
H A Dfreebsd-post-merge.sh9 ' <keywords
/freebsd-10-stable/contrib/subversion/subversion/include/
H A Dsvn_subst.h24 * @brief Data substitution (keywords and EOL style)
101 apr_hash_t *keywords,
115 * was not selected in the svn:keywords property.
128 * Set @a *kw to a new keywords hash filled with the appropriate contents
129 * given a @a keywords_string (the contents of the svn:keywords
134 * Custom keywords defined in svn:keywords properties are expanded
150 * Custom keywords are defined by appending '=' to the keyword name, followed
195 * an existing structure @a *kw instead of creating a keywords hash.
210 /** Return @c TRUE if @a a and @a b do not hold the same keywords
[all...]
/freebsd-10-stable/contrib/subversion/subversion/libsvn_wc/
H A Dtranslate.c66 apr_hash_t *keywords;
73 &keywords,
103 if (svn_subst_translation_required(style, eol, keywords, special, TRUE))
118 keywords,
129 keywords, TRUE, result_pool);
154 apr_hash_t *keywords;
160 &keywords,
165 if (! svn_subst_translation_required(style, eol, keywords, special, TRUE)
216 keywords,
246 apr_hash_t **keywords,
65 apr_hash_t *keywords; local
153 apr_hash_t *keywords; 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
291 svn_wc__expand_keywords(apr_hash_t **keywords, svn_wc__db_t *db, const char *local_abspath, const char *wri_abspath, const char *keyword_list, svn_boolean_t for_normalization, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
H A Dtranslate.h56 If KEYWORDS is not NULL Expand keywords for the file at LOCAL_ABSPATH
57 in DB, by parsing a whitespace-delimited list of keywords. If any keywords
59 with mappings from (const char *) keywords to their (svn_string_t *)
63 available, do not create a hash entry for it. If no keywords are
75 If FOR_NORMALIZATION is TRUE, just return a list of keywords instead of
84 apr_hash_t **keywords,
99 /* Expand keywords for the file at LOCAL_ABSPATH in DB, by parsing a
100 whitespace-delimited list of keywords KEYWORD_LIST. If any keywords
[all...]
H A Dquestions.c88 * style and keywords to repository-normal form according to its properties,
90 * TRUE, translate PRISTINE_STREAM's EOL style and keywords to working-copy
119 apr_hash_t *keywords;
132 &keywords,
139 keywords, special,
187 keywords,
197 keywords, TRUE,
117 apr_hash_t *keywords; local
H A Dmerge.c97 - svn:keywords
105 still translate keywords).
110 detranslate with the old keywords and ... eol-style
111 (the new re+detranslation is a no-op w.r.t. keywords [1])
114 -> detranslate with the old eol-style and keywords
118 -> detranslate with the old keywords and new eol-style
120 the new re+detranslation is a no-op w.r.t. keywords [1])
123 -> detranslate with the old keywords
132 Effect for svn:keywords
136 [1] Translation of keywords fro
172 apr_hash_t *keywords; local
[all...]
H A Dworkqueue.c198 /* In the commit, newlines and keywords may have been
285 /* Install the new file, which may involve expanding keywords.
469 apr_hash_t *keywords; local
531 &keywords,
554 if (svn_subst_translation_required(style, eol, keywords,
561 keywords,
911 apr_hash_t *keywords; local
929 &keywords,
936 keywords, TRUE /* expand */,
/freebsd-10-stable/contrib/subversion/subversion/libsvn_client/
H A Dcat.c65 svn_string_t *eol_style, *keywords, *special;
116 keywords = svn_hash_gets(props, SVN_PROP_KEYWORDS);
122 if (keywords)
163 SVN_ERR(svn_subst_build_keywords3(&kw, keywords->data, rev_str, url,
194 svn_string_t *keywords;
267 keywords = svn_hash_gets(props, SVN_PROP_KEYWORDS);
269 if (eol_style || keywords)
271 /* It's a file with no special eol style or keywords. */
285 if (keywords && expand_keywords)
296 SVN_ERR(svn_subst_build_keywords3(&kw, keywords
63 svn_string_t *eol_style, *keywords, *special; local
192 svn_string_t *keywords; local
[all...]
H A Ddiff_local.c314 apr_hash_t *keywords;
333 SVN_ERR(svn_subst_build_keywords3(&keywords, keywords_val->data,
337 keywords = NULL;
339 if (!svn_subst_translation_required(eol_style, eol, keywords, FALSE, FALSE))
350 keywords, FALSE /* expand */,
312 apr_hash_t *keywords; local
H A Dimport.c102 apr_hash_t *keywords;
104 /* If there are properties, look for EOL-style and keywords ones. */
128 SVN_ERR(svn_subst_build_keywords3(&keywords, keywords_val->data,
132 keywords = NULL;
144 /* If we have EOL styles or keywords, then detranslate the file. */
145 if (svn_subst_translation_required(eol_style, eol, keywords,
166 keywords,
101 apr_hash_t *keywords; local
/freebsd-10-stable/contrib/subversion/subversion/libsvn_subr/
H A Dsubst.c111 apr_hash_t *keywords,
115 return (special || keywords
322 /* Custom keywords must be allowed to match the name of an
324 * in case new fixed keywords are added to Subversion which
608 apr_hash_t *keywords)
612 /* Early return for ignored keywords */
613 if (! keywords)
621 return svn_hash_gets(keywords, keyword_name) != NULL;
645 apr_hash_t *keywords)
653 /* Early return for ignored keywords */
108 svn_subst_translation_required(svn_subst_eol_style_t style, const char *eol, apr_hash_t *keywords, svn_boolean_t special, svn_boolean_t force_eol_check) argument
602 match_keyword(char *buf, apr_size_t len, char *keyword_name, apr_hash_t *keywords) argument
638 translate_keyword(char *buf, apr_size_t *len, const char *keyword_name, svn_boolean_t expand, apr_hash_t *keywords) argument
872 apr_hash_t *keywords; member in struct:translation_baton
914 create_translation_baton(const char *eol_str, svn_boolean_t *translated_eol, svn_boolean_t repair, apr_hash_t *keywords, svn_boolean_t expand, apr_pool_t *pool) argument
1486 stream_translated(svn_stream_t *stream, const char *eol_str, svn_boolean_t *translated_eol, svn_boolean_t repair, apr_hash_t *keywords, svn_boolean_t expand, apr_pool_t *result_pool) argument
1557 svn_subst_stream_translated(svn_stream_t *stream, const char *eol_str, svn_boolean_t repair, apr_hash_t *keywords, svn_boolean_t expand, apr_pool_t *result_pool) argument
1574 translate_cstring(const char **dst, svn_boolean_t *translated_eol, const char *src, const char *eol_str, svn_boolean_t repair, apr_hash_t *keywords, svn_boolean_t expand, apr_pool_t *pool) argument
1616 svn_subst_translate_cstring2(const char *src, const char **dst, const char *eol_str, svn_boolean_t repair, apr_hash_t *keywords, svn_boolean_t expand, apr_pool_t *pool) argument
1741 svn_subst_copy_and_translate4(const char *src, const char *dst, const char *eol_str, svn_boolean_t repair, apr_hash_t *keywords, svn_boolean_t expand, svn_boolean_t special, svn_cancel_func_t cancel_func, void *cancel_baton, apr_pool_t *pool) argument
[all...]
H A Ddeprecated.c66 * keywords hash. Keyword values are shallow copies, so the produced
115 apr_hash_t *keywords,
120 SVN_ERR_ASSERT(eol_str || keywords);
129 keywords, expand, pool);
140 const svn_subst_keywords_t *keywords,
144 apr_hash_t *kh = kwstruct_to_kwhash(keywords, pool);
155 const svn_subst_keywords_t *keywords,
160 keywords, expand, pool);
170 const svn_subst_keywords_t *keywords,
174 apr_hash_t *kh = kwstruct_to_kwhash(keywords, poo
109 svn_subst_translate_stream3(svn_stream_t *src_stream, svn_stream_t *dst_stream, const char *eol_str, svn_boolean_t repair, apr_hash_t *keywords, svn_boolean_t expand, apr_pool_t *pool) argument
134 svn_subst_translate_stream2(svn_stream_t *s, svn_stream_t *d, const char *eol_str, svn_boolean_t repair, const svn_subst_keywords_t *keywords, svn_boolean_t expand, apr_pool_t *pool) argument
149 svn_subst_translate_stream(svn_stream_t *s, svn_stream_t *d, const char *eol_str, svn_boolean_t repair, const svn_subst_keywords_t *keywords, svn_boolean_t expand) argument
164 svn_subst_translate_cstring(const char *src, const char **dst, const char *eol_str, svn_boolean_t repair, const svn_subst_keywords_t *keywords, svn_boolean_t expand, apr_pool_t *pool) argument
180 svn_subst_copy_and_translate(const char *src, const char *dst, const char *eol_str, svn_boolean_t repair, const svn_subst_keywords_t *keywords, svn_boolean_t expand, apr_pool_t *pool) argument
194 svn_subst_copy_and_translate2(const char *src, const char *dst, const char *eol_str, svn_boolean_t repair, const svn_subst_keywords_t *keywords, svn_boolean_t expand, svn_boolean_t special, apr_pool_t *pool) argument
211 svn_subst_copy_and_translate3(const char *src, const char *dst, const char *eol_str, svn_boolean_t repair, apr_hash_t *keywords, svn_boolean_t expand, svn_boolean_t special, apr_pool_t *pool) argument
229 svn_subst_stream_translated_to_normal_form(svn_stream_t **stream, svn_stream_t *source, svn_subst_eol_style_t eol_style, const char *eol_str, svn_boolean_t always_repair_eols, apr_hash_t *keywords, apr_pool_t *pool) argument
262 svn_subst_stream_detranslated(svn_stream_t **stream_p, const char *src, svn_subst_eol_style_t eol_style, const char *eol_str, svn_boolean_t always_repair_eols, apr_hash_t *keywords, svn_boolean_t special, apr_pool_t *pool) argument
288 svn_subst_translate_to_normal_form(const char *src, const char *dst, svn_subst_eol_style_t eol_style, const char *eol_str, svn_boolean_t always_repair_eols, apr_hash_t *keywords, svn_boolean_t special, apr_pool_t *pool) argument
[all...]
/freebsd-10-stable/usr.bin/csup/
H A Dkeyword.c44 * The keyword API is used to expand the CVS/RCS keywords in files,
79 STAILQ_HEAD(, tag) keywords; /* Enabled keywords. */
84 /* Default CVS keywords. */
113 STAILQ_INIT(&new->keywords);
118 STAILQ_INSERT_TAIL(&new->keywords, tag, next);
185 while (!STAILQ_EMPTY(&keyword->keywords)) {
186 tag = STAILQ_FIRST(&keyword->keywords);
187 STAILQ_REMOVE_HEAD(&keyword->keywords, next);
198 STAILQ_FOREACH(tag, &keyword->keywords, nex
[all...]
/freebsd-10-stable/contrib/netbsd-tests/bin/ps/
H A Dt_ps.sh37 # Parse the "keywords" file into a load of shell variables
42 # for all normal keywords (except aliases), and
66 *) atf_fail "unknown flag in keywords"
69 done <"$(atf_get_srcdir)/keywords"
91 done <"$(atf_get_srcdir)/keywords"
93 # default sets of keywords
102 # Convert a list of keywords like "pid comm" to a regexp
106 local keywords="$1"
108 regexp="$(echo "$keywords" | \
159 # from the specified keywords
[all...]
/freebsd-10-stable/contrib/one-true-awk/
H A Dlex.c46 Keyword keywords[] ={ /* keep sorted: binary searched */ variable
460 n = binsearch(w, keywords, sizeof(keywords)/sizeof(keywords[0]));
462 kp = keywords + n;
/freebsd-10-stable/contrib/subversion/subversion/svn/
H A Dinfo-cmd.c118 /* Mapping between option keywords and info_item_t. */
179 svn_cl__simcheck_t **keywords = apr_palloc(
187 keywords[i] = &kwbuf[i];
193 switch (svn_cl__similarity_check(keyword, keywords,
201 kw0 = keywords[0]->data;
214 kw0 = keywords[0]->data;
223 kw0 = keywords[0]->data;
224 kw1 = keywords[1]->data;
233 kw0 = keywords[0]->data;
234 kw1 = keywords[
177 svn_cl__simcheck_t **keywords = apr_palloc( local
[all...]
/freebsd-10-stable/usr.sbin/makefs/
H A Dmtree.c743 mtree_error("%s: both link and contents keywords "
761 mtree_error("%s: file type and defined keywords to not match",
836 * any keywords that may appear on the line as well.
/freebsd-10-stable/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmpimport.c283 } keywords[] = { variable in typeref:struct:__anon2253
455 for (c = 0; keywords[c].str != NULL; c++)
456 if (strcmp(keywords[c].str, nexttok) == 0) {
457 val = keywords[c].val;
458 return (keywords[c].tok);
/freebsd-10-stable/contrib/bsnmp/gensnmptree/
H A Dgensnmptree.c400 } keywords[] = { variable in typeref:struct:__anon86
586 for (c = 0; keywords[c].str != NULL; c++)
587 if (strcmp(keywords[c].str, str) == 0) {
588 val = keywords[c].val;
589 return (keywords[c].tok);
1094 for (i = 0; keywords[i].str != NULL; i++)
1095 if (keywords[i].tok == TOK_TYPE &&
1096 keywords[i].val == syntax) {
1097 printf(" %s", keywords[i].str);
/freebsd-10-stable/usr.bin/man/
H A Dman.sh759 local IFS bad cmd f good key keywords loc opt out path rval wlist
803 for key in $keywords; do
885 keywords="$*"
/freebsd-10-stable/contrib/gperf/src/
H A Dinput.cc275 const char *keywords; local
351 keywords = p;
358 keywords = input;
748 /* Parse the keywords section. */
754 for (const char *line = keywords; line < keywords_end; )
768 " declarations are not allowed in the keywords section.\n"
985 fprintf (stderr, "%s: No keywords in input file!\n",
/freebsd-10-stable/contrib/byacc/test/
H A Dgrammar.y1045 /* Initialize the table of type qualifier keywords recognized by the lexical
1051 static const char *keywords[] = {
1120 for (i = 0; i < sizeof(keywords)/sizeof(keywords[0]); ++i) {
1121 new_symbol(type_qualifiers, keywords[i], NULL, DS_NONE);
/freebsd-10-stable/contrib/byacc/
H A Dreader.c292 keywords[] = { variable in typeref:struct:keyword
355 /* treat keywords spelled with '_' as if it were '-' */
366 if ((key = bsearch(cache, keywords,
367 sizeof(keywords) / sizeof(*key),

Completed in 487 milliseconds

12