Lines Matching refs:cur

156 	xmlChar    *cur;  in PHP_FUNCTION()  local
169 cur = xmlNodeGetContent(node); in PHP_FUNCTION()
170 if (cur == NULL) { in PHP_FUNCTION()
174 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
177 xmlFree(cur); in PHP_FUNCTION()
186 substring = xmlUTF8Strsub(cur, (int)offset, (int)count); in PHP_FUNCTION()
187 xmlFree(cur); in PHP_FUNCTION()
239 xmlChar *cur, *first, *second; in PHP_FUNCTION() local
253 cur = xmlNodeGetContent(node); in PHP_FUNCTION()
254 if (cur == NULL) { in PHP_FUNCTION()
258 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
261 xmlFree(cur); in PHP_FUNCTION()
266 first = xmlUTF8Strndup(cur, (int)offset); in PHP_FUNCTION()
267 second = xmlUTF8Strsub(cur, (int)offset, length - (int)offset); in PHP_FUNCTION()
268 xmlFree(cur); in PHP_FUNCTION()
288 xmlChar *cur, *substring, *second; in PHP_FUNCTION() local
300 cur = xmlNodeGetContent(node); in PHP_FUNCTION()
301 if (cur == NULL) { in PHP_FUNCTION()
305 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
308 xmlFree(cur); in PHP_FUNCTION()
314 substring = xmlUTF8Strsub(cur, 0, (int)offset); in PHP_FUNCTION()
323 second = xmlUTF8Strsub(cur, (int)offset + (int)count, length - (int)offset); in PHP_FUNCTION()
328 xmlFree(cur); in PHP_FUNCTION()
343 xmlChar *cur, *substring, *second = NULL; in PHP_FUNCTION() local
357 cur = xmlNodeGetContent(node); in PHP_FUNCTION()
358 if (cur == NULL) { in PHP_FUNCTION()
362 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
365 xmlFree(cur); in PHP_FUNCTION()
371 substring = xmlUTF8Strsub(cur, 0, (int)offset); in PHP_FUNCTION()
381 second = xmlUTF8Strsub(cur, (int)offset + count, length - (int)offset); in PHP_FUNCTION()
389 xmlFree(cur); in PHP_FUNCTION()