Searched refs:classes (Results 1 - 25 of 35) sorted by relevance

12

/frameworks/base/core/tests/coretests/apks/install_bad_dex/
H A DAndroid.mk10 # Override target specific variable PRIVATE_DEX_FILE to inject bad classes.dex file.
11 $(LOCAL_BUILT_MODULE): PRIVATE_DEX_FILE := $(LOCAL_PATH)/classes.dex
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/writer/
H A DComponentWriter.java37 final List<String> classes = bindingAdapters.get(simpleName);
38 if (classes.size() > 1) {
40 for (String className : classes) {
44 addGetter(builder, simpleName, classes.iterator().next(), 0);
/frameworks/base/core/java/com/android/internal/util/
H A DMessageUtils.java44 * Finds the names of integer constants. Searches the specified {@code classes}, looking for
47 * @param classes the classes to examine.
51 public static SparseArray<String> findMessageNames(Class[] classes, String[] prefixes) { argument
53 for (Class c : classes) {
121 * Finds the names of integer constants. Searches the specified {@code classes}, looking for
124 * @param classNames the classes to examine.
/frameworks/base/tests/SmokeTest/tests/
H A DAndroid.mk12 # automatically get all of its classes loaded into our environment.
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
H A DMultiArgTestAdapter.java26 public static String join(BaseMultiBindingClass... classes) { argument
28 for(BaseMultiBindingClass instance : classes) {
/frameworks/native/services/inputflinger/
H A DEventHub.cpp151 classes(0), configuration(NULL), virtualKeyMap(NULL),
261 return device->classes;
1184 device->classes |= INPUT_DEVICE_CLASS_KEYBOARD;
1191 device->classes |= INPUT_DEVICE_CLASS_CURSOR;
1199 device->classes |= INPUT_DEVICE_CLASS_ROTARY_ENCODER;
1211 device->classes |= INPUT_DEVICE_CLASS_TOUCH | INPUT_DEVICE_CLASS_TOUCH_MT;
1217 device->classes |= INPUT_DEVICE_CLASS_TOUCH;
1223 device->classes |= INPUT_DEVICE_CLASS_EXTERNAL_STYLUS;
1227 device->classes &= ~INPUT_DEVICE_CLASS_KEYBOARD;
1234 uint32_t assumedClasses = device->classes | INPUT_DEVICE_CLASS_JOYSTIC
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DProcessMethodAdapters.java314 HashSet<String> classes = new HashSet<String>();
319 classes.add(containingClass.getQualifiedName().toString());
323 classes.add(((TypeElement) element).getQualifiedName().toString());
327 classes.add(((TypeElement) element.getEnclosingElement()).getQualifiedName().
332 classes.add(((TypeElement) element).getQualifiedName().toString());
334 store.clear(classes);
/frameworks/base/tools/preload/
H A DPrintHtmlDiff.java32 = "old-preloaded-classes";
88 Iterable<LoadedClass> classes) {
100 for (LoadedClass clazz : classes) {
87 printTable(PrintStream out, MemoryUsage baseline, Iterable<LoadedClass> classes) argument
/frameworks/base/tools/preload2/src/com/android/preload/actions/
H A DComputeThresholdAction.java38 * Compute an intersection of classes from the given data. A class is in the intersection if it
40 * used to filter classes from the intersection.
49 * that filters classes.
93 + " classes, would you like to save to disk?", "Save?");
120 Set<String> classes) {
121 for (String className : classes) {
119 updateClassUse(String pkg, Map<String, Set<String>> classUses, Set<String> classes) argument
/frameworks/opt/net/wifi/tests/wifitests/
H A DAndroid.mk74 # Provide jack a list of classes to exclude form code coverage
92 # This appends a * to all classes and replace the space separators with commas.
93 # These patterns will match all classes in this module and their inner classes.
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
H A DHprof.java61 Map<String, Set<ClassObj>> classes = Queries.classes(snapshot, null);
63 for (Map.Entry<String, Set<ClassObj>> e : classes.entrySet()) {
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/jdwp/
H A DJDWPClassDataRetriever.java92 // List all classes.
103 System.out.println("Runtime reported " + classCount + " classes.");
105 Map<Long, String> classes = new HashMap<Long, String>();
117 classes.put(typeID, signature);
128 // Parse all classes.
129 for (Map.Entry<Long, String> entry : classes.entrySet()) {
181 // Classloaders of array classes are the same as the component class'.
196 // For array classes, we *need* the signature directly.
/frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DRunTestCommand.java87 System.err.println("No test classes found.");
177 * Add test classes from a potentially comma separated list
178 * @param classes
180 private void addTestClasses(String classes) { argument
181 String[] classArray = classes.split(CLASS_SEPARATOR);
188 * Add test classes from jars passed on the command line. Use this if nothing was explicitly
234 + " <JARS>: a list of jar files containing test classes and dependencies. If\n"
248 + " -e <NAME> <VALUE>: other name-value pairs to be passed to test classes.\n"
/frameworks/base/packages/WAPPushManager/tests/
H A DAndroid.mk31 # automatically get all of its classes loaded into our environment.
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
H A DTestDelegates.java30 * Tests that native delegate classes implement all the required methods.
32 * This looks at {@link CreateInfo#DELEGATE_CLASS_NATIVES} to get the list of classes that
48 final String[] classes = CreateInfo.DELEGATE_CLASS_NATIVES;
50 for (String clazz : classes) {
70 // load the classes
/frameworks/native/opengl/tools/glgen/
H A Dgen94 mkdir classes
95 javac -d classes android/opengl/EGL14.java \
115 echo "Could not compile generated classes."
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
H A DEventBus.java683 ArrayList<Class<?>> classes = new ArrayList<>(mEventTypeMap.keySet());
684 Collections.sort(classes, new Comparator<Class<?>>() {
690 for (int i = 0; i < classes.size(); i++) {
691 Class<?> clz = classes.get(i);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java46 * to list the desired classes and their dependencies.
58 /** Keep all classes that derive from these one (these included). */
60 /** Glob patterns of classes to keep, e.g. "com.foo.*" */
62 /** The set of classes to exclude.*/
66 /** Internal names of classes that contain method calls that need to be rewritten. */
75 * @param deriveFrom Keep all classes that derive from these one (these included).
76 * @param includeGlobs Glob patterns of classes to keep, e.g. "com.foo.*"
95 * Fills the generator with classes & dependencies found.
103 mLog.info("Found %d classes in input JAR%s.", zipClasses.size(),
118 * Parses a JAR file and adds all the classes foun
126 parseZip(List<String> jarPathList, Map<String, ClassReader> classes, Map<String, InputStream> filesFound) argument
[all...]
H A DDependencyFinder.java47 * to list the classes and their dependencies. A "dependency" is a class
76 mLog.info("Found %d classes in input JAR%s.",
149 * Parses a JAR file and returns a list of all classes founds using a map
153 TreeMap<String, ClassReader> classes = new TreeMap<>();
164 classes.put(className, cr);
169 return classes;
197 * Finds all dependencies for all classes in keepClasses which are also
222 mLog.debugNoln("Visited %d classes\r", ++count);
232 * Computes which classes FQCN were found as dependencies that are NOT listed
233 * in the original JAR classes
[all...]
/frameworks/support/
H A Dapicheck.mk21 # $(support_module_java_packages) - list of package names containing public classes
/frameworks/rs/
H A Dupdate_rs_prebuilts.sh46 RENDERSCRIPT_V8_JAR=out/target/common/obj/JAVA_LIBRARIES/android-support-v8-renderscript_intermediates/classes.jar
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java233 public void run(String[] classes) { argument
234 for (String cl : classes) {
279 test classes to a test suite for run
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java95 // classes to inject in the final JAR
117 // classes to rename (so that we can replace them)
155 new String[] { // include classes
158 Collections.<String>emptySet() /* excluded classes */,
173 // classes to inject in the final JAR
197 // classes to rename (so that we can replace them)
203 // classes to refactor (so that we can replace them)
235 new String[] { // include classes
284 // classes to rename (so that we can replace them)
290 // classes t
453 parseZip(String jarPath, Map<String, ClassReader> classes, Map<String, InputStream> filesFound) argument
[all...]
/frameworks/support/v17/leanback/
H A DAndroid.mk35 # Base sub-library contains classes both needed by api-level specific libraries

Completed in 637 milliseconds

12