/packages/services/Car/tools/GenericCarApiBuilder/src/com/android/car/tool/apibuilder/ |
D | ParsedDataHelper.java | 38 List<String> classes = new ArrayList<>(); in getClassNamesOnly() local 39 parsedData.packages.values().forEach((packageData) -> packageData.classes.values() in getClassNamesOnly() 40 .forEach((classData) -> classes.add(classData.useableClassName))); in getClassNamesOnly() 41 return classes; in getClassNamesOnly() 48 List<String> classes = new ArrayList<>(); in getNonHiddenClassNamesOnly() local 49 parsedData.packages.values().forEach((packageData) -> packageData.classes.values() in getNonHiddenClassNamesOnly() 54 classes.add(classData.useableClassName); in getNonHiddenClassNamesOnly() 56 return classes; in getNonHiddenClassNamesOnly() 61 parsedData.packages.values().forEach((packageData) -> packageData.classes.values() in getAddedInOrBeforeApisOnly() 69 parsedData.packages.values().forEach((packageData) -> packageData.classes.values() in getAddedInOrBeforeApisOnly() [all …]
|
/packages/modules/ConfigInfrastructure/apex/ |
D | Android.bp | 26 // The following packages contain classes from other modules on the 29 // that package to differentiate them from the classes provided by other 30 // modules. That can include private classes that are not part of the 37 // contain classes from this bootclasspath_fragment. Listing a package 38 // here won't prevent other bootclasspath modules from adding classes in 40 // classes into an API surface, e.g. public, system, etc.. Doing so will
|
/packages/services/Car/tools/GenericCarApiBuilder/src/com/android/car/tool/data/ |
D | PackageData.java | 25 public final Map<String, ClassData> classes = new HashMap<>(); field in PackageData 33 if (classes.containsKey(classData.fullyQualifiedClassName)) { in addClass() 38 classes.put(classData.fullyQualifiedClassName, classData); in addClass()
|
/packages/modules/Uwb/apex/ |
D | Android.bp | 91 // The following packages contain classes from other modules on the 94 // that package to differentiate them from the classes provided by other 95 // modules. That can include private classes that are not part of the 102 // contain classes from this bootclasspath_fragment. Listing a package 103 // here won't prevent other bootclasspath modules from adding classes in 105 // classes into an API surface, e.g. public, system, etc.. Doing so will
|
/packages/modules/Bluetooth/apex/ |
D | Android.bp | 103 // The following packages contain classes from other modules on the 106 // that package to differentiate them from the classes provided by other 107 // modules. That can include private classes that are not part of the 114 // contain classes from this bootclasspath_fragment. Listing a package 115 // here won't prevent other bootclasspath modules from adding classes in 117 // classes into an API surface, e.g. public, system, etc.. Doing so will
|
/packages/modules/AdServices/apex/ |
D | Android.bp | 92 // The following packages contain classes from other modules on the 95 // that package to differentiate them from the classes provided by other 96 // modules. That can include private classes that are not part of the 103 // contain classes from this bootclasspath_fragment. Listing a package 104 // here won't prevent other bootclasspath modules from adding classes in 106 // classes into an API surface, e.g. public, system, etc.. Doing so will
|
/packages/modules/GeoTZ/s2storage/ |
D | Android.bp | 20 // Generic read-only storage classes 35 // Generic read/write storage classes 47 // Generic read-only storage classes 58 // Tests for the generic storage classes
|
/packages/modules/Permission/ |
D | Android.bp | 94 // The following packages contain classes from other modules on the 97 // that package to differentiate them from the classes provided by other 98 // modules. That can include private classes that are not part of the 105 // contain classes from this bootclasspath_fragment. Listing a package 106 // here won't prevent other bootclasspath modules from adding classes in 108 // classes into an API surface, e.g. public, system, etc.. Doing so will
|
/packages/apps/Nfc/apex/ |
D | Android.bp | 120 // The following packages contain classes from other modules on the 123 // that package to differentiate them from the classes provided by other 124 // modules. That can include private classes that are not part of the 132 // contain classes from this bootclasspath_fragment. Listing a package 133 // here won't prevent other bootclasspath modules from adding classes in 135 // classes into an API surface, e.g. public, system, etc.. Doing so will
|
/packages/modules/StatsD/apex/ |
D | Android.bp | 106 // The following packages contain classes from other modules on the 109 // that package to differentiate them from the classes provided by other 110 // modules. That can include private classes that are not part of the 119 // contain classes from this bootclasspath_fragment. Listing a package 120 // here won't prevent other bootclasspath modules from adding classes in 122 // classes into an API surface, e.g. public, system, etc.. Doing so will
|
/packages/apps/Settings/tests/unit/src/com/android/settings/core/codeinspection/ |
D | ClassScanner.java | 33 final List<Class<?>> classes = new ArrayList<>(); in getClassesForPackage() local 54 classes.add(clazz); in getClassesForPackage() 64 return classes; in getClassesForPackage()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/core/codeinspection/ |
D | ClassScanner.java | 33 final List<Class<?>> classes = new ArrayList<>(); in getClassesForPackage() local 54 classes.add(clazz); in getClassesForPackage() 64 return classes; in getClassesForPackage()
|
/packages/modules/Wifi/apex/ |
D | Android.bp | 103 // The following packages contain classes from other modules on the 106 // that package to differentiate them from the classes provided by other 107 // modules. That can include private classes that are not part of the 114 // contain classes from this bootclasspath_fragment. Listing a package 115 // here won't prevent other bootclasspath modules from adding classes in 117 // classes into an API surface, e.g. public, system, etc.. Doing so will
|
/packages/modules/Connectivity/tools/ |
D | Android.bp | 23 // Build tool used to generate jarjar rules for all classes in a jar, except those that are 52 // classes jar due to b/233111644. Statically including it here instead 53 // ensures that it will always get the classes jar. 86 // txt with Test classes to test they aren't included when added to jarjar excludes 88 // two unsupportedappusage lists with different classes to test using multiple lists
|
/packages/services/Car/libs/car-test-lib/src/android/car/test/util/ |
D | AnnotationHelper.java | 55 public static void checkForAnnotation(String[] classes, HashSet<String> addedInOrBeforeApis, in checkForAnnotation() argument 62 for (int i = 0; i < classes.length; i++) { in checkForAnnotation() 63 String className = classes[i]; in checkForAnnotation() 149 public static void checkForAnnotation(String[] classes, Class<?>... annotationClasses) in checkForAnnotation() argument 151 checkForAnnotation(classes, null, annotationClasses); in checkForAnnotation()
|
/packages/modules/Connectivity/framework/ |
D | jarjar-excludes.txt | 23 # of these classes must be protected by a check for >= S SDK. 38 # This is required since android.net.http contains api classes and hidden classes. 39 # TODO: Remove this after hidden classes are moved to different package
|
/packages/apps/Car/LatinIME/ |
D | proguard.flags | 1 # Keep classes and methods that have the @UsedForTesting annotation 7 # Keep classes and methods that have the @ExternallyReferenced annotation 18 # Keep classes that are used as a parameter type of methods that are also marked as keep
|
/packages/modules/AppSearch/service/ |
D | jarjar-rules.txt | 1 # Rename all icing classes to match our module name. OEMs could start using icing lib for some other 8 # Rename all com.android.internal.util classes to prevent class name collisions 9 # between this module and the other versions of the utility classes linked into
|
D | proguard.flags | 19 # The keepclassmembers rule below ignores the Icing proto classes that end in Builder (OrBuilder and 20 # nested Builder classes) and matches all other Icing proto classes. The rule does not keep members 21 # of classes that are not used.
|
/packages/inputmethods/LatinIME/java/ |
D | proguard.flags | 1 # Keep classes and methods that have the @UsedForTesting annotation 7 # Keep classes and methods that have the @ExternallyReferenced annotation 18 # Keep classes that are used as a parameter type of methods that are also marked as keep
|
/packages/apps/Settings/ |
D | proguard.flags | 36 # Keep classes that may be inflated from XML. 54 # Keep classes that implements CustomSliceable, which are used by reflection. 59 # Keep classes that extends SliceBackgroundWorker, which are used by reflection. 64 # Keep WM Jetpack classes and callbacks
|
/packages/apps/CellBroadcastReceiver/ |
D | proguard.flags | 4 # Keep classes and methods that have the @VisibleForTesting annotation 26 # Keep classes that may be inflated from XML. 34 # Keep annotated classes or class members.
|
/packages/apps/Messaging/ |
D | proguard.flags | 19 # Keep classes and methods that have the guava @VisibleForTesting annotation 52 # Keep rastermill classes that need to be accessed from native code (JNI) 60 # Keep the static fields of referenced inner classes of auto-generated R classes, in case we
|
/packages/modules/Connectivity/Tethering/apex/ |
D | Android.bp | 187 // The following packages contain classes from other modules on the 190 // that package to differentiate them from the classes provided by other 191 // modules. That can include private classes that are not part of the 203 // contain classes from this bootclasspath_fragment. Listing a package 204 // here won't prevent other bootclasspath modules from adding classes in 206 // classes into an API surface, e.g. public, system, etc.. Doing so will
|
/packages/services/Car/apex_car_framework/ |
D | Android.bp | 104 // The following packages currently only contain classes from this 105 // bootclasspath_fragment but some of their sub-packages contain classes 114 // contain classes from this bootclasspath_fragment. Listing a package 115 // here won't prevent other bootclasspath modules from adding classes in 117 // classes into an API surface, e.g. public, system, etc.. Doing so will
|