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

1 2

  /external/lldb/test/python_api/value/linked_list/
TestValueAPILinkedList.py 90 def eol(val): function in function:ValueAsLinkedListTestCase.linked_list_api
105 for t in task_head.linked_list_iter('next', eol):
125 for t in empty_task_head.linked_list_iter('next', 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/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_org/third_party/WebKit/Source/devtools/front_end/cm/
headlesscodemirror.js 20 eol: function() {return this.pos >= this.string.length;},
149 while (!stream.eol()) {
  /external/chromium_org/third_party/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);
  /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/libunwind/src/
os-linux.h 219 char *eol = NULL; local
225 eol = mi->buf + i;
231 if (!eol)
252 eol = mi->buf + bytes_left + nread - 1;
257 eol = mi->buf + i;
262 mi->buf = eol + 1;
263 *eol = '\0';
  /device/generic/goldfish/camera/
EmulatedCameraFactory.cpp 325 /* Empty list, or list containing just an EOL means that there were no
341 const char* eol = strchr(camera_list, '\n'); local
342 while (eol != NULL) {
344 eol = strchr(eol + 1, '\n');
  /external/chromium_org/chrome/browser/media/
webrtc_logging_handler_host.cc 519 const char eol = '\n'; local
520 circular_buffer_->Write(&eol, 1);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
peer_connection_client.cc 366 size_t eol = control_data_.find('\n', pos); local
367 if (eol == std::string::npos)
372 if (ParseEntry(control_data_.substr(pos, eol - pos), &name, &id,
377 pos = eol + 1;
  /external/chromium_org/base/third_party/symbolize/
symbolize.cc 403 // and "eol", then return true. Otherwise, return false.
407 bool ReadLine(const char **bol, const char **eol) {
441 *eol = eol_;
451 const char *eol() { function in class:__anon7156::LineReader
530 const char *eol; local
531 if (!reader.ReadLine(&cursor, &eol)) { // EOF or malformed line.
543 cursor = GetHex(cursor, eol, &start_address);
544 if (cursor == eol || *cursor != '-') {
551 cursor = GetHex(cursor, eol, &end_address);
552 if (cursor == eol || *cursor != ' ')
    [all...]
  /external/chromium_org/third_party/webrtc/base/
httpbase.cc 143 const char* eol = line + len; local
146 } while ((value < eol) && isspace(static_cast<unsigned char>(*value)));
147 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/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/chromium_org/third_party/sqlite/src/src/
shell.c 325 int eol; local
335 eol = 0;
336 while( !eol ){
348 eol = 1;
356 eol = 1;
    [all...]
tclsqlite.c 950 int eol; local
956 eol = 0;
957 while( !eol ){
969 eol = 1;
976 eol = 1;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
externs.js 435 eol: function () { },
  /external/chromium_org/third_party/icu/source/i18n/
vtzone.cpp 1255 UBool eol = FALSE; local
    [all...]
  /external/icu/icu4c/source/i18n/
vtzone.cpp 1255 UBool eol = FALSE; local
    [all...]
  /external/opencv/cxcore/src/
cxpersistence.cpp 1642 const char* eol; local
2602 const char* eol; local
    [all...]
  /external/elfutils/0.153/src/
readelf.c 7654 const char *eol = memchr (s, '\\n', size); local
    [all...]

Completed in 1938 milliseconds

1 2