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

12

/freebsd-10.0-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.0-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.0-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.0-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.0-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.0-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;
362 SVN_ERR(get_eol_style(&style, &eol, eol_style->data, eib->native_eol));
413 if (eol || (kw && (apr_hash_count(kw) > 0)))
415 eol,
189 const char *eol = NULL; local
822 const char *eol = NULL; local
1008 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.0-release/contrib/nvi/vi/
H A Dv_right.c41 goto eol;
47 eol: v_eol(sp, NULL);
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_diff/
H A Ddiff_file.c344 /* Quickly determine whether there is a eol char in CHUNK.
345 * (mainly copy-n-paste from eol.c#svn_eol__find_eol_start).
391 /* check for eol, and count */
484 /* Back up to the last eol sequence (\n, \r\n or \r) */
489 /* Slide one byte forward, to point past the eol sequence */
594 /* Count an extra line for the last line not ending in an eol. */
609 /* check for eol, and count */
698 /* Slide forward until we find an eol sequence to add the rest of the line
709 /* Slide one or two more bytes, to point past the eol. */
854 char *eol; local
1418 char *eol; local
2075 char *eol; local
2324 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.0-release/contrib/ntp/ntpdate/
H A Dntptime_config.c403 register int eol; local
426 eol = 0;
428 while (!eol) {
435 eol = 1;
441 eol = 1;
444 eol = 1;
/freebsd-10.0-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...]
H A Dgrep.c690 char eol = eolbyte; local
707 while (p[-1] != eol);
716 char const *nl = memchr (p, eol, beg - p);
728 char const *nl = memchr (p, eol, lim - p);
811 char eol = eolbyte; local
854 && memchr (bufbeg, eol ? '\0' : '\200', buflim - bufbeg));
875 beg[-1] = eol;
876 for (lim = buflim; lim[-1] != eol; lim--)
904 while (beg[-1] != eol);
926 *buflim++ = eol;
[all...]
/freebsd-10.0-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.0-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.0-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.
938 const char **eol,
946 * The line-terminator is detected automatically and stored in @a *eol
947 * if @a eol is not NULL.
948 * If EOF is reached, set @a *eof to TRUE, and set @a *eol to NULL if the
949 * hunk text does not end with a newline character and @a eol i
[all...]
H A Dsvn_subst.h50 /** Valid states for 'svn:eol-style' property.
62 /** Translation is set to client's native eol */
70 /** Set @a *style to the appropriate @c svn_subst_eol_style_t and @a *eol to
71 * the appropriate cstring for a given svn:eol-style property value.
73 * Set @a *eol to
77 * - a NULL-terminated C string containing the native eol marker
80 * - a NULL-terminated C string containing the eol marker indicated
87 const char **eol,
93 * fixed eol styles.
100 const char *eol,
[all...]
/freebsd-10.0-release/usr.bin/grep/regex/
H A Dfastmatch.h28 bool eol; member in struct:__anon11427
H A Dtre-fastmatch.c486 fg->eol = true; \
656 fg->eol = true;
751 DPRINT(("tre_compile_fast: pattern: %s, len %zu, bol %c, eol %c, "
753 fg->bol ? 'y' : 'n', fg->eol ? 'y' : 'n',
873 if (fg->bol && fg->eol)
904 if (fg->eol && (eflags & REG_NOTEOL))
912 if ((fg->bol || fg->eol) && !fg->newline && !(eflags & REG_NOTBOL) &&
916 if (!((fg->bol && fg->eol) &&
920 j = fg->eol ? len - (type == STR_WIDE ? fg->wlen : fg->len) : 0;
949 if (fg->eol)
[all...]
/freebsd-10.0-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.0-release/contrib/ipfilter/tools/
H A Dippool_y.y106 line: table role ipftree eol { ip_pool_node_t *n;
117 | table role ipfhash eol { iphtent_t *h;
128 | groupmap role number ipfgroup eol
143 | poolline eol
146 eol: ';' label

Completed in 315 milliseconds

12