Lines Matching refs:offset
33 ZEND_ARG_INFO(0, offset)
42 ZEND_ARG_INFO(0, offset)
47 ZEND_ARG_INFO(0, offset)
52 ZEND_ARG_INFO(0, offset)
172 long offset, count; in PHP_FUNCTION() local
176 …ARGS() TSRMLS_CC, getThis(), "Oll", &id, dom_characterdata_class_entry, &offset, &count) == FAILUR… in PHP_FUNCTION()
189 if (offset < 0 || count < 0 || offset > length) { in PHP_FUNCTION()
195 if ((offset + count) > length) { in PHP_FUNCTION()
196 count = length - offset; in PHP_FUNCTION()
199 substring = xmlUTF8Strsub(cur, offset, count); in PHP_FUNCTION()
255 long offset; in PHP_FUNCTION() local
259 …ARGS() TSRMLS_CC, getThis(), "Ols", &id, dom_characterdata_class_entry, &offset, &arg, &arg_len) =… in PHP_FUNCTION()
272 if (offset < 0 || offset > length) { in PHP_FUNCTION()
278 first = xmlUTF8Strndup(cur, offset); in PHP_FUNCTION()
279 second = xmlUTF8Strsub(cur, offset, length - offset); in PHP_FUNCTION()
302 long offset, count; in PHP_FUNCTION() local
306 …ARGS() TSRMLS_CC, getThis(), "Oll", &id, dom_characterdata_class_entry, &offset, &count) == FAILUR… in PHP_FUNCTION()
319 if (offset < 0 || count < 0 || offset > length) { in PHP_FUNCTION()
325 if (offset > 0) { in PHP_FUNCTION()
326 substring = xmlUTF8Strsub(cur, 0, offset); in PHP_FUNCTION()
331 if ((offset + count) > length) { in PHP_FUNCTION()
332 count = length - offset; in PHP_FUNCTION()
335 second = xmlUTF8Strsub(cur, offset + count, length - offset); in PHP_FUNCTION()
358 long offset, count; in PHP_FUNCTION() local
362 …RGS() TSRMLS_CC, getThis(), "Olls", &id, dom_characterdata_class_entry, &offset, &count, &arg, &ar… in PHP_FUNCTION()
375 if (offset < 0 || count < 0 || offset > length) { in PHP_FUNCTION()
381 if (offset > 0) { in PHP_FUNCTION()
382 substring = xmlUTF8Strsub(cur, 0, offset); in PHP_FUNCTION()
387 if ((offset + count) > length) { in PHP_FUNCTION()
388 count = length - offset; in PHP_FUNCTION()
391 if (offset < length) { in PHP_FUNCTION()
392 second = xmlUTF8Strsub(cur, offset + count, length - offset); in PHP_FUNCTION()