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

1 2

  /external/valgrind/main/coregrind/m_ume/
script.c 83 Int eol; local
112 eol = (*cp == '\n');
116 if (!eol && cp < end) {
121 /* arg is from here to eol */
  /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);
  /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/qemu/android/
async-utils.h 140 char eol; member in struct:__anon10373
160 * By default, asyncLineReader_init will set EOL to be '\n'. Sometimes it's more
165 asyncLineReader_setEOL(AsyncLineReader* alr, char eol)
167 alr->eol = eol;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
PythonTarget.java 76 int eol = text.indexOf("\n", idx); local
77 if ( eol == -1 ) {
82 l.add(text.substring(idx, eol+1));
83 idx = eol+1;
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
picasa_client.js 341 var eol = '\n'; variable
342 var postData = '<entry xmlns="http://www.w3.org/2005/Atom"' + eol;
343 postData += 'xmlns:media="http://search.yahoo.com/mrss/"' + eol;
344 postData += 'xmlns:gphoto="http://schemas.google.com/photos/2007">' + eol;
345 postData += '<title type="text">' + escape(album.title) + '</title>' + eol;
347 '</summary>' + eol;
349 '</gphoto:location>' + eol;
352 'term="http://schemas.google.com/photos/2007#album"></category>' + eol;
353 postData += '</entry>' + eol;
  /external/zlib/
gzread.c 480 unsigned char *eol; local
516 eol = memchr(state->x.next, '\n', n);
517 if (eol != NULL)
518 n = (unsigned)(eol - state->x.next) + 1;
527 } while (left && eol == NULL);
  /frameworks/native/libs/utils/
Tokenizer.cpp 120 const char* eol = mCurrent; local
121 while (eol != end) {
122 char ch = *eol;
126 eol += 1;
128 return String8(mCurrent, eol - mCurrent);
  /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
  /development/tools/emulator/system/camera/
EmulatedCameraFactory.cpp 268 /* Empty list, or list containing just an EOL means that there were no
284 const char* eol = strchr(camera_list, '\n'); local
285 while (eol != NULL) {
287 eol = strchr(eol + 1, '\n');
  /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";
  /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);
  /libcore/luni/src/main/java/java/io/
BufferedReader.java 377 char eol = '\0'; local
386 if (eol == '\n') {
392 return result.length() > 0 || eol != '\0'
398 if (eol == '\0') {
400 eol = c;
402 } else if (eol == '\r' && c == '\n') {
416 if (eol == '\0') {
  /system/core/fs_mgr/
fs_mgr.c 174 int eol = 0; local
192 eol = 1;
206 } else if (eol) {
  /system/core/init/
property_service.c 416 char *key, *value, *eol, *sol, *tmp; local
419 while((eol = strchr(sol, '\n'))) {
421 *eol++ = 0;
422 sol = eol;
434 tmp = eol - 2;
  /external/chromium/third_party/libjingle/source/talk/base/
httpbase.cc 163 const char* eol = line + len; local
166 } while ((value < eol) && isspace(static_cast<unsigned char>(*value)));
167 size_t vlen = eol - value;
  /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/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...]
  /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/jmonkeyengine/engine/src/core/com/jme3/font/
LetterQuad.java 32 private boolean eol; field in class:LetterQuad
67 this.eol = isLineFeed();
182 eol = isLineFeed();
291 if (previous.isHead() || previous.eol) {
341 this.eol = true;
345 return eol;
355 } else if (previous.eol) {
364 return x0 == 0 || (previous != null && previous.eol);
  /external/openssl/crypto/asn1/
asn_mime.c 535 /* Copy text from one BIO to another making the output CRLF at EOL */
539 char eol; local
561 eol = strip_eol(linebuf, &len);
564 if(eol) BIO_write(out, "\r\n", 2);
612 int eol = 0, next_eol = 0; local
639 } else if (eol)
641 eol = next_eol;
  /external/dbus/dbus/
dbus-string.c 2200 int eol, eol_len; local
    [all...]

Completed in 766 milliseconds

1 2