Automated: Canonicalize spelling of Android-changed across libcore

This applies the same regexp replacement across libcore that
http://r.android.com/345826 had only applied to ojluni.

Most of the previous noncanonical spellings were a lowercased
"android-" that should be "Android-".

This CL was created by running the following command on top of
the above CL. No manual changes were made.

find . -name \*\.java | xargs sed -i \
 -e 's/Android[- ]changed/Android-changed/ig' \
 -e 's/Android-changed :/Android-changed:/g' \
 -e 's/Android-changed \(BEGIN\|END\)/\1 Android-changed/g' \
 -e 's/Android-changed - /Android-changed: /g' \
 -e 's/Android[- ]removed/Android-removed/ig' \
 -e 's/Android-removed :/Android-removed:/g' \
 -e 's/Android-removed \(BEGIN\|END\)/\1 Android-removed/g' \
 -e 's/Android-removed - /Android-removed: /g' \
 -e 's/Android[- ]added/Android-added/ig' \
 -e 's/Android-added :/Android-added:/g' \
 -e 's/Android-added \(BEGIN\|END\)/\1 Android-added/g' \
 -e 's/Android-added - /Android-added: /g' \
 -e 's/----- \(BEGIN\|END\) android\( -----\)\?/\1 Android-changed/g' \
 -e 's/\/\* \(BEGIN\|END\) Android-changed \*\//\/\/ \1 Android-changed/g'

Bug: 35841464
Test: make droid cts

Change-Id: I060c7236b7607763e5d27d60aa395d2507703a95
diff --git a/jsr166-tests/src/test/java/jsr166/JSR166TestCase.java b/jsr166-tests/src/test/java/jsr166/JSR166TestCase.java
index ca2add3..ea6e576 100644
--- a/jsr166-tests/src/test/java/jsr166/JSR166TestCase.java
+++ b/jsr166-tests/src/test/java/jsr166/JSR166TestCase.java
@@ -1089,7 +1089,7 @@
      * getPolicy/setPolicy.
      */
     public void runWithPermissions(Runnable r, Permission... permissions) {
-        // Android-changed - no SecurityManager
+        // Android-changed: no SecurityManager
         // SecurityManager sm = System.getSecurityManager();
         // if (sm == null) {
         //     r.run();
@@ -1107,7 +1107,7 @@
      */
     public void runWithSecurityManagerWithPermissions(Runnable r,
                                                       Permission... permissions) {
-        // Android-changed - no SecurityManager
+        // Android-changed: no SecurityManager
         // SecurityManager sm = System.getSecurityManager();
         // if (sm == null) {
         //     Policy savedPolicy = Policy.getPolicy();