Lines Matching refs:temp
716 UChar* temp = buf->currentPos;
724 c = *temp++;
728 if(temp>=buf->bufLimit && buf->currentPos == buf->buffer){
742 if(c ==0x0d && temp+1<=buf->bufLimit && *(temp+1) == 0x0a ){
743 *len = (int32_t)(temp++ - buf->currentPos);
745 buf->currentPos = temp;
750 if (temp>=buf->bufLimit|| ucbuf_isCharNewLine(c)){ /* Unipad inserts 2028 line separators! */
751 *len = (int32_t)(temp - buf->currentPos);
753 buf->currentPos = temp;
762 c = *temp++;
768 if(c ==0x0d && temp+1<=buf->bufLimit && *(temp+1) == 0x0a ){
769 *len = (int32_t)(temp++ - buf->currentPos);
771 buf->currentPos = temp;
775 if (temp>=buf->bufLimit|| ucbuf_isCharNewLine(c)) { /* Unipad inserts 2028 line separators! */
776 *len = (int32_t)(temp - buf->currentPos);
778 buf->currentPos = temp;