| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
IcuIteratorWrapper.java references com.ibm.icu.text.BreakIterator,
which is renamed by our jarjar rule, and so unrecognizable by javadoc,
with annoying error: error: package com.ibm.icu.text does not exist.
We don't want to generate doc for this file anyway.
Change-Id: I815eff9d174561be9a380dd7374800cf25d6ca7a
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
croot
cd libcore
repo start dalvik-is-dead-long-live-dalvik .
repo sync -c .
git rm -r libdvm
git add JavaLibrary.mk (after removing libdvm references, adding explict core-libart references)
git add Docs.mk (after replacing references to libdvm with libart)
git add benchmarks/Android.mk (after adding explict core-libart references)
git add Android.mk (after removing dalvik-host target)
git commit -a -m 'Dalvik is dead, long live Dalvik!'
Bug: 14298175
Change-Id: I977e7b4be8ef1043b70ceb8532ac4947ea1b7ab8
|
|
|
|
|
|
|
|
| |
Also individually @hide the methods we might not want to expose straight
away. These are basically the ones where the mapping to Java types isn't
completely straightforward, usually resulting in a family of similar methods.
Change-Id: I7b3d555c4599dc8c64e23f5c494a358ef68c6777
|
|
|
|
|
|
|
|
| |
With this change, libcore_to_document will be evaluated only once.
As a side effect, this fixes the build log spam reported in:
https://code.google.com/p/android/issues/detail?id=63184
Change-Id: I4fcfbcd70f6d4b119487525825aeafa2926507b4
|
|
|
|
| |
Change-Id: I04498d8d8c4b065dbda8d7b30b8b77ce53e63a77
|
|
|
|
|
|
|
|
| |
Will be replaced with library built from external/junit.
Bug 5826326
Change-Id: I78518a04b57bade113b1797a808ec1a39bd82ad7
|
|
|
|
|
|
|
| |
Before this change the newline character will be carried to the shell
command so no files will be returned.
Change-Id: Id71358a54bff2a672c70a235b37ad06ef65a839b
|
|\
| |
| |
| | |
Change-Id: I7765cd4bf03f0b18e60848c30dcce30cbdd7c77b
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
cp ~/android/dalvik/profiler/src/main/java/dalvik/profiler/* ~/android/master/libcore/dalvik/src/main/java/dalvik/system/profiler/
cp ~/android/dalvik/profiler/src/test/java/dalvik/profiler/* ~/android/master/libcore/dalvik/src/test/java/dalvik/system/profiler/
perl -p -i -e 's/package dalvik.profiler;/package dalvik.system.profiler;/' ~/android/master/libcore/dalvik/src/*/java/dalvik/system/profiler/*.java
perl -p -i -e 's/import dalvik.profiler./import dalvik.system.profiler./' ~/android/master/libcore/dalvik/src/*/java/dalvik/system/profiler/*.java
Change-Id: Iae3f63327f4a9dde7f037e69c22057e2ea704aaa
|
|/
|
|
| |
Change-Id: I0c5e29ac750b9605b1e8f823d6998d31a933b7a4
|
|
Add a local droiddoc target that cuts the review time for javadoc
changes from several minutes to less than a minute.
Docs.mk is the list of directories to javadoc within libcore that was
refactored from frameworks/base/Android.mk
Change-Id: I5c12b48e71b849c2883ebaafaddea5f6c6dea857
|