• Home
Name Date Size #Lines LOC

..--

Android.mkD03-May-20242.3 KiB10761

Asset.cppD03-May-202420.3 KiB865552

AssetDir.cppD03-May-20241.7 KiB6727

AssetManager.cppD03-May-202452.6 KiB1,7621,068

BackupData.cppD03-May-20248.4 KiB369284

BackupHelpers.cppD03-May-202436 KiB1,3151,029

BufferedTextOutput.cppD03-May-20247.4 KiB280197

CallStack.cppD03-May-20248.4 KiB350268

CharacterData.hD03-May-202463 KiB731678

Debug.cppD03-May-20248.5 KiB319248

FileMap.cppD03-May-20245.6 KiB223147

MODULE_LICENSE_APACHE2D03-May-20240

NOTICED03-May-202410.4 KiB191158

READMED03-May-2024527 1510

RefBase.cppD03-May-202414.5 KiB535407

ResourceTypes.cppD03-May-2024147.6 KiB4,1693,557

SharedBuffer.cppD03-May-20242.7 KiB11481

Static.cppD03-May-20242.1 KiB9054

StopWatch.cppD03-May-20242 KiB8047

String16.cppD03-May-202414.7 KiB624505

String8.cppD03-May-202420 KiB851659

StringArray.cppD03-May-20242.6 KiB11458

SystemClock.cppD03-May-20243.3 KiB14089

TextOutput.cppD03-May-20243.5 KiB155113

Threads.cppD03-May-202421.5 KiB743445

Timers.cppD03-May-20243 KiB11670

Unicode.cppD03-May-20245.2 KiB194118

VectorImpl.cppD03-May-202417.1 KiB612494

ZipFileCRO.cppD03-May-20241.8 KiB5532

ZipFileRO.cppD03-May-202421 KiB725440

ZipUtils.cppD03-May-20249.4 KiB344208

misc.cppD03-May-20243.8 KiB186109

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