Searched refs:eol (Results 1 - 25 of 57) sorted by relevance

123

/freebsd-10.3-release/contrib/subversion/subversion/libsvn_subr/
H A Deol.c2 * eol.c : generic eol/keyword routines
90 char *eol;
92 eol = svn_eol__find_eol_start(buf, len);
93 if (eol)
96 *eolp = eol;
98 if (*eol == '\n')
102 ++eol;
103 if (eol == buf + len || *eol !
89 char *eol; local
[all...]
/freebsd-10.3-release/tools/regression/environ/
H A Denvctl.c92 * Also, use the eol string based upon whether running in test mode or not.
95 print_rtrn_errno(int rtrnVal, const char *eol) argument
97 printf("%d %d%s", rtrnVal, rtrnVal != 0 ? errno : 0, eol);
129 const char *eol = "\n"; local
173 printf("%s%s", value == NULL ? "*NULL*" : value, eol);
177 print_rtrn_errno(putenv(optarg), eol); local
186 atoi(argv[optind])), eol); local
192 atoi(argv[optind + 1])), eol); local
197 eol = " ";
203 eol); local
[all...]
/freebsd-10.3-release/sys/tools/fdt/
H A Dembed_dtb.sh37 eol=`strings -at d $1 | grep "Device Tree Blob STOPS here" | awk '{print $1}'`
38 sz=$((eol - obs));
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_wc/
H A Dtranslate.c2 * translate.c : wc-specific eol/keyword substitution
80 const char *eol;
87 SVN_ERR(svn_wc__get_translate_info(&style, &eol,
118 if (svn_subst_translation_required(style, eol, keywords, special, TRUE))
123 eol = SVN_SUBST_NATIVE_EOL_STR;
131 eol,
142 *stream = svn_subst_stream_translated(*stream, eol, TRUE,
166 const char *eol;
172 SVN_ERR(svn_wc__get_translate_info(&style, &eol,
178 if (! svn_subst_translation_required(style, eol, keyword
79 const char *eol; local
165 const char *eol; local
241 svn_wc__eol_value_from_string(const char **value, const char *eol) argument
256 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...]
H A Dtranslate.h2 * translate.h : eol and keyword translation
43 eol style. Set *EOL to
47 - a null-terminated C string containing the native eol marker
50 - a null-terminated C string containing the eol marker indicated
83 const char **eol,
97 const char *eol);
H A Dmerge.c95 - svn:eol-style
103 If svn:mime-type is considered 'binary', we ignore svn:eol-style (but
109 detranslate with the old keywords and ... eol-style
113 -> detranslate with the old eol-style and keywords
117 -> detranslate with the old keywords and new eol-style
118 (the old detranslation is a no-op w.r.t. eol, and
125 Effect for svn:eol-style
127 I) On add or change of svn:eol-style, use the new value
171 const char *eol;
196 eol
170 const char *eol; local
316 const char *eol; local
[all...]
/freebsd-10.3-release/usr.bin/lam/
H A Dlam.c62 char eol; /* end of line character */ member in struct:openfile
124 if (!ip->eol)
125 ip->eol = (T ? (ip-1)->eol : '\n');
140 ip->eol = *p;
202 if ((*p = c) == ip->eol)
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_client/
H A Dcat.c66 const char *eol = NULL;
120 svn_subst_eol_style_from_value(&style, &eol, eol_style->data);
169 if (eol != NULL || kw != NULL)
172 (eol_style && normalize_eols) ? SVN_SUBST_NATIVE_EOL_STR : eol,
263 /* It's a file with no special eol style or keywords. */
264 svn_subst_eol_style_t eol;
269 svn_subst_eol_style_from_value(&eol, &eol_str, eol_style->data);
272 eol = svn_subst_eol_style_none;
64 const char *eol = NULL; local
262 svn_subst_eol_style_t eol; local
H A Ddiff_local.c203 const char *eol;
204 svn_subst_eol_style_from_value(&style, &eol, val->data);
207 if (eol)
208 file1 = svn_subst_stream_translated(file1, eol, TRUE,
221 const char *eol;
222 svn_subst_eol_style_from_value(&style, &eol, val->data);
225 if (eol)
226 file2 = svn_subst_stream_translated(file2, eol, TRUE,
201 const char *eol; local
219 const char *eol; local
H A Dexport.c81 /* Helper function that gets the eol style and optionally overrides the
84 as the svn:eol-style property values. */ argument
87 const char **eol,
91 svn_subst_eol_style_from_value(style, eol, value);
101 *eol = requested_eol;
150 * 'svn:eol-style' property, if present. If NATIVE_EOL is not NULL, use it
191 const char *eol = NULL;
364 SVN_ERR(get_eol_style(&style, &eol, eol_style->data, eib->native_eol));
415 if (eol || (kw && (apr_hash_count(kw) > 0)))
417 eol,
189 const char *eol = NULL; local
824 const char *eol = NULL; local
1010 const char *eol = NULL; local
[all...]
H A Dimport.c111 const char *eol;
130 svn_subst_eol_style_from_value(&eol_style, &eol, eol_style_val->data);
133 eol = NULL;
155 if (svn_subst_translation_required(eol_style, eol, keywords,
167 /* We're importing, so translate files with 'native' eol-style to
170 eol = SVN_SUBST_NATIVE_EOL_STR;
174 eol,
110 const char *eol; local
/freebsd-10.3-release/contrib/ntp/lib/isc/
H A Dhex.c133 isc_boolean_t eol; local
141 eol = ISC_FALSE;
143 eol = ISC_TRUE;
145 isc_tokentype_string, eol));
H A Dbase64.c184 isc_boolean_t eol; local
192 eol = ISC_FALSE;
194 eol = ISC_TRUE;
196 isc_tokentype_string, eol));
H A Dbase32.c261 isc_boolean_t eol; local
269 eol = ISC_FALSE;
271 eol = ISC_TRUE;
273 isc_tokentype_string, eol));
/freebsd-10.3-release/contrib/nvi/vi/
H A Dv_right.c41 goto eol;
47 eol: v_eol(sp, NULL);
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_diff/
H A Ddiff_file.c356 /* Quickly determine whether there is a eol char in CHUNK.
357 * (mainly copy-n-paste from eol.c#svn_eol__find_eol_start).
403 /* check for eol, and count */
496 /* Back up to the last eol sequence (\n, \r\n or \r) */
501 /* Slide one byte forward, to point past the eol sequence */
606 /* Count an extra line for the last line not ending in an eol. */
621 /* check for eol, and count */
710 /* Slide forward until we find an eol sequence to add the rest of the line
721 /* Slide one or two more bytes, to point past the eol. */
866 char *eol; local
1430 char *eol; local
2087 char *eol; local
2336 const char *eol; local
[all...]
H A Dparse-diff.c288 const char **eol,
303 if (eol)
304 *eol = NULL;
315 SVN_ERR(svn_io_file_readline(file, &str, eol, eof, max_len,
347 const char **eol,
357 stringbuf, eol, eof,
365 const char **eol,
375 stringbuf, eol, eof,
383 const char **eol,
397 if (eol)
285 hunk_readline_original_or_modified(apr_file_t *file, struct svn_diff__hunk_range *range, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, char verboten, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
345 svn_diff_hunk_readline_original_text(svn_diff_hunk_t *hunk, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
363 svn_diff_hunk_readline_modified_text(svn_diff_hunk_t *hunk, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
381 svn_diff_hunk_readline_diff_text(svn_diff_hunk_t *hunk, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-10.3-release/contrib/ntp/lib/isc/include/isc/
H A Dlex.h310 isc_tokentype_t expect, isc_boolean_t eol);
328 isc_lex_getoctaltoken(isc_lex_t *lex, isc_token_t *token, isc_boolean_t eol);
/freebsd-10.3-release/gnu/usr.bin/grep/
H A Dsearch.c328 char eol = eolbyte; local
417 end = memchr(beg, eol, buflim - beg);
423 while (beg > buf && beg[-1] != eol)
477 end = memchr (beg, eol, buflim - beg);
483 while (beg > buf && beg[-1] != eol)
893 char eol = eolbyte; local
955 if (beg > buf && beg[-1] != eol)
957 if (beg + len < buf + size && beg[len] != eol)
1139 if (mlen == 1 && *end == eol)
1147 end = memchr (beg + len, eol, (bu
[all...]
/freebsd-10.3-release/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_parse.y204 | eol statement
207 assign : ASSIGN VARNAME numeric {set_var(ret_number, $2, $3);} eol
208 | ASSIGN VARNAME LHB expr RHB {set_var(ret_number, $2, $<string>4);} eol
209 | ASSIGN VARNAME STRING {set_var(ret_string, $2, $3);} eol
210 | ASSIGN VARNAME BYTE {set_var(ret_byte, $2, $3);} eol
213 call : CALL result fn_name args eol {
218 call2 : CALL2 result result fn_name args eol {
223 call3 : CALL3 result result result fn_name args eol {
228 call4 : CALL4 result result result result fn_name args eol {
233 check : CHECK var returns eol {
431 eol : EOL label
[all...]
/freebsd-10.3-release/lib/libz/
H A Dgzread.c493 unsigned char *eol; local
529 eol = (unsigned char *)memchr(state->x.next, '\n', n);
530 if (eol != NULL)
531 n = (unsigned)(eol - state->x.next) + 1;
540 } while (left && eol == NULL);
/freebsd-10.3-release/contrib/gcclibs/libiberty/
H A Dpex-win32.c639 char *eol; local
641 eol = strchr (buf, '\n');
642 if (eol && strncmp (buf, "#!", 2) == 0)
647 *eol = '\0';
648 while (*--eol == '\r' || *eol == ' ' || *eol == '\t');
/freebsd-10.3-release/contrib/subversion/subversion/include/
H A Dsvn_diff.h487 * - --ignore-eol-style
927 * The line-terminator is detected automatically and stored in @a *eol
928 * if @a eol is not NULL.
929 * If EOF is reached, set @a *eof to TRUE, and set @a *eol to NULL if the
930 * hunk does not end with a newline character and @a eol is not NULL.
945 const char **eol,
953 * The line-terminator is detected automatically and stored in @a *eol
954 * if @a eol is not NULL.
955 * If EOF is reached, set @a *eof to TRUE, and set @a *eol to NULL if the
956 * hunk text does not end with a newline character and @a eol i
[all...]
/freebsd-10.3-release/usr.bin/svn/lib/libsvn_subr/
H A DMakefile14 deprecated.c dirent_uri.c dso.c eol.c error.c gpg_agent.c \
/freebsd-10.3-release/usr.bin/grep/regex/
H A Dfastmatch.h28 bool eol; member in struct:__anon12405

Completed in 414 milliseconds

123