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)
179 long offset, count; in PHP_FUNCTION() local
183 …ARGS() TSRMLS_CC, getThis(), "Oll", &id, dom_characterdata_class_entry, &offset, &count) == FAILUR… in PHP_FUNCTION()
196 if (offset < 0 || count < 0 || offset > length) { in PHP_FUNCTION()
202 if ((offset + count) > length) { in PHP_FUNCTION()
203 count = length - offset; in PHP_FUNCTION()
206 substring = xmlUTF8Strsub(cur, offset, count); in PHP_FUNCTION()
262 long offset; in PHP_FUNCTION() local
266 …ARGS() TSRMLS_CC, getThis(), "Ols", &id, dom_characterdata_class_entry, &offset, &arg, &arg_len) =… in PHP_FUNCTION()
279 if (offset < 0 || offset > length) { in PHP_FUNCTION()
285 first = xmlUTF8Strndup(cur, offset); in PHP_FUNCTION()
286 second = xmlUTF8Strsub(cur, offset, length - offset); in PHP_FUNCTION()
309 long offset, count; in PHP_FUNCTION() local
313 …ARGS() TSRMLS_CC, getThis(), "Oll", &id, dom_characterdata_class_entry, &offset, &count) == FAILUR… in PHP_FUNCTION()
326 if (offset < 0 || count < 0 || offset > length) { in PHP_FUNCTION()
332 if (offset > 0) { in PHP_FUNCTION()
333 substring = xmlUTF8Strsub(cur, 0, offset); in PHP_FUNCTION()
338 if ((offset + count) > length) { in PHP_FUNCTION()
339 count = length - offset; in PHP_FUNCTION()
342 second = xmlUTF8Strsub(cur, offset + count, length - offset); in PHP_FUNCTION()
365 long offset, count; in PHP_FUNCTION() local
369 …RGS() TSRMLS_CC, getThis(), "Olls", &id, dom_characterdata_class_entry, &offset, &count, &arg, &ar… in PHP_FUNCTION()
382 if (offset < 0 || count < 0 || offset > length) { in PHP_FUNCTION()
388 if (offset > 0) { in PHP_FUNCTION()
389 substring = xmlUTF8Strsub(cur, 0, offset); in PHP_FUNCTION()
394 if ((offset + count) > length) { in PHP_FUNCTION()
395 count = length - offset; in PHP_FUNCTION()
398 if (offset < length) { in PHP_FUNCTION()
399 second = xmlUTF8Strsub(cur, offset + count, length - offset); in PHP_FUNCTION()