Lines Matching refs:second
239 xmlChar *cur, *first, *second; in PHP_FUNCTION() local
267 second = xmlUTF8Strsub(cur, (int)offset, length - (int)offset); in PHP_FUNCTION()
272 xmlNodeAddContent(node, second); in PHP_FUNCTION()
275 xmlFree(second); in PHP_FUNCTION()
288 xmlChar *cur, *substring, *second; in PHP_FUNCTION() local
323 second = xmlUTF8Strsub(cur, (int)offset + (int)count, length - (int)offset); in PHP_FUNCTION()
324 substring = xmlStrcat(substring, second); in PHP_FUNCTION()
329 xmlFree(second); in PHP_FUNCTION()
343 xmlChar *cur, *substring, *second = NULL; in PHP_FUNCTION() local
381 second = xmlUTF8Strsub(cur, (int)offset + count, length - (int)offset); in PHP_FUNCTION()
385 substring = xmlStrcat(substring, second); in PHP_FUNCTION()
390 if (second) { in PHP_FUNCTION()
391 xmlFree(second); in PHP_FUNCTION()