Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
Android.mk | 15-Nov-2011 | 3.1K | |
Asset.cpp | 15-Nov-2011 | 20.8K | |
AssetDir.cpp | 15-Nov-2011 | 1.7K | |
AssetManager.cpp | 15-Nov-2011 | 52.7K | |
BackupData.cpp | 15-Nov-2011 | 8.4K | |
BackupHelpers.cpp | 15-Nov-2011 | 36K | |
BufferedTextOutput.cpp | 15-Nov-2011 | 7.4K | |
CallStack.cpp | 15-Nov-2011 | 8.4K | |
Debug.cpp | 15-Nov-2011 | 8.5K | |
FileMap.cpp | 15-Nov-2011 | 5.6K | |
Flattenable.cpp | 15-Nov-2011 | 731 | |
Looper.cpp | 15-Nov-2011 | 17.8K | |
misc.cpp | 15-Nov-2011 | 3.8K | |
MODULE_LICENSE_APACHE2 | 15-Nov-2011 | 0 | |
NOTICE | 15-Nov-2011 | 10.4K | |
ObbFile.cpp | 15-Nov-2011 | 9.5K | |
Pool.cpp | 15-Nov-2011 | 736 | |
README | 15-Nov-2011 | 527 | |
RefBase.cpp | 15-Nov-2011 | 15.3K | |
ResourceTypes.cpp | 15-Nov-2011 | 160K | |
SharedBuffer.cpp | 15-Nov-2011 | 2.7K | |
Static.cpp | 15-Nov-2011 | 2.1K | |
StopWatch.cpp | 15-Nov-2011 | 2K | |
StreamingZipInflater.cpp | 15-Nov-2011 | 7.9K | |
String16.cpp | 15-Nov-2011 | 14.9K | |
String8.cpp | 15-Nov-2011 | 22.5K | |
StringArray.cpp | 15-Nov-2011 | 2.6K | |
SystemClock.cpp | 15-Nov-2011 | 3.3K | |
tests/ | 15-Nov-2011 | ||
TextOutput.cpp | 15-Nov-2011 | 3.5K | |
Threads.cpp | 15-Nov-2011 | 23.8K | |
Timers.cpp | 15-Nov-2011 | 3K | |
VectorImpl.cpp | 15-Nov-2011 | 17.5K | |
ZipFileCRO.cpp | 15-Nov-2011 | 1.8K | |
ZipFileRO.cpp | 15-Nov-2011 | 27.2K | |
ZipUtils.cpp | 15-Nov-2011 | 9.4K |
1 Android Utility Function Library 2 3 If you need a feature that is native to Linux but not present on other 4 platforms, construct a platform-dependent implementation that shares 5 the Linux interface. That way the actual device runs as "light" as 6 possible. 7 8 If that isn't feasible, create a system-independent interface and hide 9 the details. 10 11 The ultimate goal is *not* to create a super-duper platform abstraction 12 layer. The goal is to provide an optimized solution for Linux with 13 reasonable implementations for other platforms. 14 15