Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
tests/ | 03-May-2024 | - | 729 | 517 | ||
Android.mk | D | 03-May-2024 | 3.1 KiB | 136 | 81 | |
Asset.cpp | D | 03-May-2024 | 20.8 KiB | 881 | 563 | |
AssetDir.cpp | D | 03-May-2024 | 1.7 KiB | 67 | 27 | |
AssetManager.cpp | D | 03-May-2024 | 52.7 KiB | 1,768 | 1,073 | |
BackupData.cpp | D | 03-May-2024 | 8.4 KiB | 369 | 284 | |
BackupHelpers.cpp | D | 03-May-2024 | 36 KiB | 1,315 | 1,029 | |
BufferedTextOutput.cpp | D | 03-May-2024 | 7.4 KiB | 280 | 197 | |
CallStack.cpp | D | 03-May-2024 | 8.4 KiB | 350 | 268 | |
Debug.cpp | D | 03-May-2024 | 8.5 KiB | 319 | 248 | |
FileMap.cpp | D | 03-May-2024 | 5.6 KiB | 223 | 147 | |
Flattenable.cpp | D | 03-May-2024 | 731 | 25 | 5 | |
Looper.cpp | D | 03-May-2024 | 17.8 KiB | 597 | 494 | |
MODULE_LICENSE_APACHE2 | D | 03-May-2024 | 0 | |||
NOTICE | D | 03-May-2024 | 10.4 KiB | 191 | 158 | |
ObbFile.cpp | D | 03-May-2024 | 9.5 KiB | 355 | 253 | |
Pool.cpp | D | 03-May-2024 | 736 | 38 | 20 | |
README | D | 03-May-2024 | 527 | 15 | 10 | |
RefBase.cpp | D | 03-May-2024 | 15.3 KiB | 559 | 432 | |
ResourceTypes.cpp | D | 03-May-2024 | 160 KiB | 4,430 | 3,812 | |
SharedBuffer.cpp | D | 03-May-2024 | 2.7 KiB | 114 | 81 | |
Static.cpp | D | 03-May-2024 | 2.1 KiB | 90 | 54 | |
StopWatch.cpp | D | 03-May-2024 | 2 KiB | 85 | 51 | |
StreamingZipInflater.cpp | D | 03-May-2024 | 7.9 KiB | 227 | 142 | |
String16.cpp | D | 03-May-2024 | 14.9 KiB | 634 | 515 | |
String8.cpp | D | 03-May-2024 | 22.5 KiB | 941 | 734 | |
StringArray.cpp | D | 03-May-2024 | 2.6 KiB | 114 | 58 | |
SystemClock.cpp | D | 03-May-2024 | 3.3 KiB | 140 | 89 | |
TextOutput.cpp | D | 03-May-2024 | 3.5 KiB | 155 | 113 | |
Threads.cpp | D | 03-May-2024 | 23.8 KiB | 831 | 517 | |
Timers.cpp | D | 03-May-2024 | 3 KiB | 116 | 70 | |
VectorImpl.cpp | D | 03-May-2024 | 17.5 KiB | 625 | 505 | |
ZipFileCRO.cpp | D | 03-May-2024 | 1.8 KiB | 55 | 32 | |
ZipFileRO.cpp | D | 03-May-2024 | 27.2 KiB | 932 | 571 | |
ZipUtils.cpp | D | 03-May-2024 | 9.4 KiB | 344 | 208 | |
misc.cpp | D | 03-May-2024 | 3.8 KiB | 186 | 109 |
README
1Android Utility Function Library 2 3If you need a feature that is native to Linux but not present on other 4platforms, construct a platform-dependent implementation that shares 5the Linux interface. That way the actual device runs as "light" as 6possible. 7 8If that isn't feasible, create a system-independent interface and hide 9the details. 10 11The ultimate goal is *not* to create a super-duper platform abstraction 12layer. The goal is to provide an optimized solution for Linux with 13reasonable implementations for other platforms. 14 15