Lines Matching refs:cur
1028 const char *cur;
1041 for (cur = str;*cur != 0;cur++) {
1048 buf->content[buf->use++] = *cur;
1112 const xmlChar *cur, *base;
1125 base = cur = string;
1126 while(*cur != 0){
1127 if(*cur == '"'){
1128 if (base != cur)
1129 xmlBufAdd(buf, base, cur - base);
1131 cur++;
1132 base = cur;
1135 cur++;
1138 if (base != cur)
1139 xmlBufAdd(buf, base, cur - base);
1287 input->base = input->cur = buf->content;
1325 * @cur: the cur value relative to the beginning of the buffer
1327 * Update the input to use the base and cur relative to the buffer
1334 size_t base, size_t cur) {
1339 input->cur = input->base + cur;