Home
last modified time | relevance | path

Searched refs:eol (Results 1 – 25 of 28) sorted by relevance

12

/external/emma/core/java12/com/vladium/emma/report/xml/
DReportGenerator.java136 eol (); in visit()
142 eol (); in visit()
160 eol (); in visit()
164 eol (); in visit()
173 eol (); in visit()
177 eol (); in visit()
365 eol (); in emitStatsCount()
379 eol (); in emitItem()
392 eol (); in emitItem()
407 eol (); in emitItem()
[all …]
/external/bluetooth/glib/gio/tests/
Dsleepy-stream.c161 const gchar *eol, in read_line() argument
168 eol_len = 1 + (eol[1] != '\0'); in read_line()
175 g_assert (strstr (str, eol) == NULL); in read_line()
179 g_string_append (string, eol); in read_line()
228 static const gchar *eol; variable
253 g_string_append (two, eol); in asynch_ready()
270 eol = "\n"; in asynch()
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
DCodeAttribute_info.java143 String eol = System.getProperty ("line.separator"); in toString() local
147 …ttribute_name_index = " + m_name_index + ", attribute_length = " + m_attribute_length + "]" + eol); in toString()
148 s.append (" max_stack/max_locals = " + m_max_stack + '/' + m_max_locals + eol); in toString()
149 s.append (" code [length " + m_codeSize + "]" + eol); in toString()
153 s.append (" " + m_attributes.get (a) + eol); in toString()
/external/ppp/pppd/
Dutils.c563 char *p, *eol; in pr_log() local
580 eol = strchr(buf, '\n'); in pr_log()
582 l = (eol == NULL)? n: eol - buf; in pr_log()
588 if (eol == NULL) in pr_log()
590 p = eol + 1; in pr_log()
591 eol = strchr(p, '\n'); in pr_log()
598 while (eol != NULL) { in pr_log()
599 *eol = 0; in pr_log()
601 p = eol + 1; in pr_log()
602 eol = strchr(p, '\n'); in pr_log()
/external/webkit/WebKit/mac/Misc/
DWebNSDataExtras.m316 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++) {
373 if (colon == eol) {
378 …value = (NSString *)CFMakeCollectable(CFStringCreateWithBytes(NULL, colon, eol-colon, kCFStringEnc…
/external/webkit/WebCore/plugins/
DPluginView.cpp1032 const char* eol; in parseRFC822HeaderFields() local
1037 while ((eol = findEOL(bytes, length))) { in parseRFC822HeaderFields()
1039 int lineLength = eol - bytes; in parseRFC822HeaderFields()
1042 bytes = eol + 1; in parseRFC822HeaderFields()
1043 if ((*eol == '\r') && (*bytes == '\n')) in parseRFC822HeaderFields()
1065 for (colon = line; *colon != ':' && colon != eol; colon++) { in parseRFC822HeaderFields()
1068 if (colon == eol) in parseRFC822HeaderFields()
1075 for (colon++; colon != eol; colon++) { in parseRFC822HeaderFields()
1079 if (colon == eol) in parseRFC822HeaderFields()
1082 value = String(colon, eol - colon); in parseRFC822HeaderFields()
/external/openssl/crypto/asn1/
Dasn_mime.c469 char eol; in SMIME_crlf_copy() local
491 eol = strip_eol(linebuf, &len); in SMIME_crlf_copy()
494 if(eol) BIO_write(out, "\r\n", 2); in SMIME_crlf_copy()
540 int eol = 0, next_eol = 0; in multi_split() local
567 } else if (eol) in multi_split()
569 eol = next_eol; in multi_split()
/external/webkit/WebKitTools/Scripts/
Dsvn-unapply92 my $eol = $1;
120 $patch .= $eol;
Dsvn-apply135 my $eol = $1;
167 $patch .= $eol;
/external/emma/core/java12/com/vladium/emma/report/txt/
DReportGenerator.java339 for (int i = 0; i < hlines; ++ i) eol (); in addTitleRow()
341 for (int i = 0; i < flines; ++ i) eol (); in addTitleRow()
458 private void eol () in eol() method in ReportGenerator
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DHTMLWriter.java70 public void eol () in eol() method in HTMLWriter
DIElement.java71 if (DEBUG_HTML) out.eol (); // using ENABLED as DEBUG here in emit()
/external/clearsilver/mod_ecs/
Dmod_ecs.c109 char *eol; in buf_getline() local
113 eol = strchr (idata, '\n'); in buf_getline()
114 if (eol == NULL) in buf_getline()
121 len = eol - idata + 1; in buf_getline()
/external/dbus/dbus/
Ddbus-string.c2028 int eol; in _dbus_string_pop_line() local
2033 eol = 0; in _dbus_string_pop_line()
2034 if (_dbus_string_find (source, 0, "\n", &eol)) in _dbus_string_pop_line()
2037 eol += 1; /* include newline */ in _dbus_string_pop_line()
2041 eol = _dbus_string_get_length (source); in _dbus_string_pop_line()
2045 if (eol == 0) in _dbus_string_pop_line()
2048 if (!_dbus_string_move_len (source, 0, eol, in _dbus_string_pop_line()
Ddbus-auth.c1876 int eol; in process_command() local
1884 eol = 0; in process_command()
1885 if (!_dbus_string_find (&auth->incoming, 0, "\r\n", &eol)) in process_command()
1901 if (!_dbus_string_copy_len (&auth->incoming, 0, eol, &line, 0)) in process_command()
1942 _dbus_string_delete (&auth->incoming, 0, eol); in process_command()
/external/openssl/crypto/pkcs7/
Dpk7_mime.c388 int eol = 0, next_eol = 0; in multi_split() local
415 } else if (eol) in multi_split()
417 eol = next_eol; in multi_split()
/external/sqlite/dist/
Dshell.c239 int eol; in local_getline() local
249 eol = 0; in local_getline()
250 while( !eol ){ in local_getline()
262 eol = 1; in local_getline()
269 eol = 1; in local_getline()
/external/webkit/V8Binding/v8/test/cctest/
Dtest-log.cc734 char* eol = strchr(entity, '\n'); in PrintCodeEntityInfo() local
735 int len = eol - entity; in PrintCodeEntityInfo()
/external/icu4c/i18n/
Dvtzone.cpp1209 UBool eol = FALSE; in load() local
1231 if (eol) { in load()
1247 eol = FALSE; in load()
1251 eol = TRUE; in load()
1269 eol = FALSE; in load()
/external/webkit/V8Binding/v8/
DChangeLog1131 Changed all text files to have native svn:eol-style.
/external/webkit/WebKit/win/
DChangeLog-2009-06-167664 Fix inconsistent line endings and set svn:eol-style=native
8732 And set the eol style on IWebScriptCallFrame.idl file.
17858 Also, not included in this ChangeLog, I changed the eol property to
/external/webkit/WebKitTools/
DChangeLog-2009-06-1612069 - Set the eol-style to native and made all the line endings the same
12070 so that I avoid messy diffs that show eol changes.
/external/webkit/WebCore/
DChangeLog-2007-10-1426875 Also, deal with svn:eol-style issues on another batch of files that didn't have it set
29528 * rendering/RenderThemeWin.cpp: Set svn:eol-style native.
31868 Set svn:eol-style to native and cleanup line endings on plugins files.
32051 - set eol-style:native on some files and corrected line endings
DChangeLog-2006-05-1015747 Also add svn:eol-style=native to new files.
/external/bison/
DChangeLog11550 just decode them, and keep them as char (before, eol was output as

12