summaryrefslogtreecommitdiffstats
path: root/platform/android/tts_android.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup Android C++ codeMarcel Admiraal2022-05-311-10/+10
|
* Replace most uses of Map by HashMapreduz2022-05-161-3/+3
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Implement text-to-speech support on Android, iOS, HTML5, Linux, macOS and ↵bruvzg2022-04-281-0/+189
Windows. Implement TextServer word break method.