Lines Matching refs:eol
1642 const char* eol; in icvYMLWriteComment() local
1649 eol = strchr(comment, '\n'); in icvYMLWriteComment()
1650 multiline = eol != 0; in icvYMLWriteComment()
1663 if( eol ) in icvYMLWriteComment()
1665 ptr = icvFSResizeWriteBuffer( fs, ptr, (int)(eol - comment) + 1 ); in icvYMLWriteComment()
1666 memcpy( ptr, comment, eol - comment + 1 ); in icvYMLWriteComment()
1667 fs->buffer = ptr + (eol - comment); in icvYMLWriteComment()
1668 comment = eol + 1; in icvYMLWriteComment()
1669 eol = strchr( comment, '\n' ); in icvYMLWriteComment()
2602 const char* eol; in icvXMLWriteComment() local
2612 eol = strchr(comment, '\n'); in icvXMLWriteComment()
2613 multiline = eol != 0; in icvXMLWriteComment()
2640 if( eol ) in icvXMLWriteComment()
2642 ptr = icvFSResizeWriteBuffer( fs, ptr, (int)(eol - comment) + 1 ); in icvXMLWriteComment()
2643 memcpy( ptr, comment, eol - comment + 1 ); in icvXMLWriteComment()
2644 ptr += eol - comment; in icvXMLWriteComment()
2645 comment = eol + 1; in icvXMLWriteComment()
2646 eol = strchr( comment, '\n' ); in icvXMLWriteComment()