HomeSort by relevance Sort by last modified time
    Searched refs:eol (Results 1 - 25 of 33) sorted by null

1 2

  /external/oauth/core/src/main/java/net/oauth/
OAuthProblemException.java 62 int eol = msg.indexOf("\n"); local
63 if (eol < 0) {
64 eol = msg.indexOf("\r");
66 if (eol >= 0) {
67 msg = msg.substring(0, eol);
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
ParseException.java 128 expected.append(eol).append(" ");
142 retval += "." + eol;
144 retval += "Was expecting:" + eol + " ";
146 retval += "Was expecting one of:" + eol + " ";
155 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
ParseException.java 128 expected.append(eol).append(" ");
142 retval += "." + eol;
144 retval += "Was expecting:" + eol + " ";
146 retval += "Was expecting one of:" + eol + " ";
155 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
ParseException.java 128 expected.append(eol).append(" ");
142 retval += "." + eol;
144 retval += "Was expecting:" + eol + " ";
146 retval += "Was expecting one of:" + eol + " ";
155 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
CodeAttribute_info.java 143 String eol = System.getProperty ("line.separator"); local
147 s.append ("CodeAttribute_info: [attribute_name_index = " + m_name_index + ", attribute_length = " + m_attribute_length + "]" + eol);
148 s.append (" max_stack/max_locals = " + m_max_stack + '/' + m_max_locals + eol);
149 s.append (" code [length " + m_codeSize + "]" + eol);
153 s.append (" " + m_attributes.get (a) + eol);
  /external/webkit/WebKit/mac/Misc/
WebNSDataExtras.m 281 // According to the HTTP specification EOL is defined as
288 // It returns NULL if EOL is not found or it will return
316 const UInt8 *eol;
319 while ((eol = _findEOL(bytes, length))) {
321 SInt32 lineLength = eol - bytes;
324 bytes = eol + 1;
325 if (('\r' == *eol) && ('\n' == *bytes)) {
356 for (colon = line; *colon != ':' && colon != eol; colon ++) {
359 if (colon == eol) {
368 for (colon++; colon != eol; colon++)
    [all...]
  /external/chromium/base/third_party/symbolize/
symbolize.cc 389 // and "eol", then return true. Otherwise, return false.
393 bool ReadLine(const char **bol, const char **eol) {
427 *eol = eol_;
437 const char *eol() { function in class:__anon2284::LineReader
507 const char *eol; local
508 if (!reader.ReadLine(&cursor, &eol)) { // EOF or malformed line.
520 cursor = GetHex(cursor, eol, &start_address);
521 if (cursor == eol || *cursor != '-') {
528 cursor = GetHex(cursor, eol, &end_address);
529 if (cursor == eol || *cursor != ' ')
    [all...]
  /external/bluetooth/glib/gio/tests/
sleepy-stream.c 161 const gchar *eol,
168 eol_len = 1 + (eol[1] != '\0');
175 g_assert (strstr (str, eol) == NULL);
179 g_string_append (string, eol);
228 static const gchar *eol; variable
253 g_string_append (two, eol);
270 eol = "\n";
  /libcore/luni/src/main/java/java/io/
BufferedReader.java 383 char eol = '\0'; local
392 if (eol == '\n') {
398 return result.length() > 0 || eol != '\0'
404 if (eol == '\0') {
406 eol = c;
408 } else if (eol == '\r' && c == '\n') {
422 if (eol == '\0') {
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 136 eol (); method
142 eol (); method
160 eol (); method
164 eol (); method
173 eol (); method
177 eol (); method
263 super.write (IConstants.EOL, 0, IConstants.EOL.length ());
365 eol (); method
379 eol (); method
392 eol (); method
407 eol (); method
448 eol (); method
479 private void eol () method in class:ReportGenerator
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
introspect.h 55 * without an information structure and the eol parameter set to a non-zero
62 * structure and eol set to zero.
227 typedef void (*pa_sink_info_cb_t)(pa_context *c, const pa_sink_info *i, int eol, void *userdata);
256 typedef void (*pa_source_info_cb_t)(pa_context *c, const pa_source_info *i, int eol, void *userdata);
295 typedef void (*pa_module_info_cb_t) (pa_context *c, const pa_module_info*i, int eol, void *userdata);
312 typedef void (*pa_client_info_cb_t) (pa_context *c, const pa_client_info*i, int eol, void *userdata);
338 typedef void (*pa_sink_input_info_cb_t) (pa_context *c, const pa_sink_input_info *i, int eol, void *userdata);
362 typedef void (*pa_source_output_info_cb_t) (pa_context *c, const pa_source_output_info *i, int eol, void *userdata);
429 typedef void (*pa_sample_info_cb_t)(pa_context *c, const pa_sample_info *i, int eol, void *userdata);
474 typedef void (*pa_autoload_info_cb_t)(pa_context *c, const pa_autoload_info *i, int eol, void *userdata)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLWriter.java 70 public void eol () method in class:HTMLWriter
76 m_out.write (IConstants.EOL);
IElement.java 71 if (DEBUG_HTML) out.eol (); // using ENABLED as DEBUG here
  /external/zlib/
gzread.c 546 unsigned char *eol; local
584 eol = memchr(state->next, '\n', n);
585 if (eol != NULL)
586 n = (unsigned)(eol - state->next) + 1;
595 } while (left && eol == NULL);
  /system/core/init/
property_service.c 426 char *key, *value, *eol, *sol, *tmp; local
429 while((eol = strchr(sol, '\n'))) {
431 *eol++ = 0;
432 sol = eol;
444 tmp = eol - 2;
  /external/ppp/pppd/
utils.c 563 char *p, *eol; local
580 eol = strchr(buf, '\n');
582 l = (eol == NULL)? n: eol - buf;
588 if (eol == NULL)
590 p = eol + 1;
591 eol = strchr(p, '\n');
598 while (eol != NULL) {
599 *eol = 0;
601 p = eol + 1
    [all...]
  /external/webkit/WebKitTools/Scripts/
svn-unapply 106 my $eol = $1;
134 $patch .= $eol;
svn-apply 135 my $eol = $1;
167 $patch .= $eol;
VCSUtils.pm 344 # Input may use a different EOL sequence than $/, so avoid chomp.
439 my $eol = $1;
457 $_ = "=" x 67 . "$eol$_"; # Prepend dividing line ===....
466 $svnConvertedText .= "$_$eol"; # Also restore end-of-line characters.
  /external/webkit/WebCore/plugins/
PluginView.cpp 1163 const char* eol; local
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 339 for (int i = 0; i < hlines; ++ i) eol (); method
341 for (int i = 0; i < flines; ++ i) eol (); method
458 private void eol () method in class:ReportGenerator
  /external/clearsilver/mod_ecs/
mod_ecs.c 109 char *eol; local
113 eol = strchr (idata, '\n');
114 if (eol == NULL)
121 len = eol - idata + 1;
  /external/openssl/crypto/asn1/
asn_mime.c 531 /* Copy text from one BIO to another making the output CRLF at EOL */
535 char eol; local
557 eol = strip_eol(linebuf, &len);
560 if(eol) BIO_write(out, "\r\n", 2);
608 int eol = 0, next_eol = 0; local
635 } else if (eol)
637 eol = next_eol;
  /external/dbus/dbus/
dbus-string.c 2028 int eol; local
    [all...]
dbus-auth.c 1876 int eol; local
    [all...]

Completed in 364 milliseconds

1 2