summaryrefslogtreecommitdiff
path: root/ext/intl/breakiterator/codepointiterator_methods.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of method mapping of BreakIterator classesMáté Kocsis2020-02-251-1/+1
|
* Use RETURN_THROWS() during ZPP in most of the extensionsMáté Kocsis2019-12-311-1/+1
| | | | Except for some bigger ones: reflection, sodium, spl
* Cleanup return values for Intl when parameter parsing is unsuccessfulMáté Kocsis2019-10-301-1/+1
| | | | Closes GH-4871.
* Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-251-2/+0
| | | | Closes GH-4732.
* Intl: Don't separately report "bad arguments" errorsNikita Popov2019-03-111-2/+0
| | | | | zpp will be throwing for these now, don't report them in addition to that.
* Use ZEND_THIS macro to hide implementation details in extensions code.Dmitry Stogov2018-11-151-1/+1
|
* Eliminate useless $this related checkDmitry Stogov2018-11-141-1/+1
|
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-1/+1
|
* s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|
* master renames phase 1Anatol Belski2014-08-251-1/+1
|
* basic macro replacements, all at onceAnatol Belski2014-08-191-1/+1
|
* Remove compilation warning "warning: no newline at end of file"Christopher Jones2013-08-201-1/+1
|
* Added IntlCodePointBreakIterator.Gustavo André dos Santos Lopes2012-06-221-0/+44
Objects of this class can be instantiated with IntlBreakIterator::createCodePointInstance() The method does not take a locale, as it would not make sense in this context. This class has one additional method: long IntlCodePointIterator::getLastCodePoint() which returns either -1 or the last code point we moved over, if any (and discounting any movement before the last call to IntlBreakIterator::first() or IntlBreakIterator::last()).