Lines Matching refs:cur

176 	xmlChar    *cur;  in PHP_FUNCTION()  local
189 cur = xmlNodeGetContent(node); in PHP_FUNCTION()
190 if (cur == NULL) { in PHP_FUNCTION()
194 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
197 xmlFree(cur); in PHP_FUNCTION()
206 substring = xmlUTF8Strsub(cur, offset, count); in PHP_FUNCTION()
207 xmlFree(cur); in PHP_FUNCTION()
259 xmlChar *cur, *first, *second; in PHP_FUNCTION() local
272 cur = xmlNodeGetContent(node); in PHP_FUNCTION()
273 if (cur == NULL) { in PHP_FUNCTION()
277 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
280 xmlFree(cur); in PHP_FUNCTION()
285 first = xmlUTF8Strndup(cur, offset); in PHP_FUNCTION()
286 second = xmlUTF8Strsub(cur, offset, length - offset); in PHP_FUNCTION()
287 xmlFree(cur); in PHP_FUNCTION()
307 xmlChar *cur, *substring, *second; in PHP_FUNCTION() local
319 cur = xmlNodeGetContent(node); in PHP_FUNCTION()
320 if (cur == NULL) { in PHP_FUNCTION()
324 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
327 xmlFree(cur); in PHP_FUNCTION()
333 substring = xmlUTF8Strsub(cur, 0, offset); in PHP_FUNCTION()
342 second = xmlUTF8Strsub(cur, offset + count, length - offset); in PHP_FUNCTION()
347 xmlFree(cur); in PHP_FUNCTION()
362 xmlChar *cur, *substring, *second = NULL; in PHP_FUNCTION() local
375 cur = xmlNodeGetContent(node); in PHP_FUNCTION()
376 if (cur == NULL) { in PHP_FUNCTION()
380 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
383 xmlFree(cur); in PHP_FUNCTION()
389 substring = xmlUTF8Strsub(cur, 0, offset); in PHP_FUNCTION()
399 second = xmlUTF8Strsub(cur, offset + count, length - offset); in PHP_FUNCTION()
407 xmlFree(cur); in PHP_FUNCTION()