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

12

/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/writer/
H A DComponentWriter.java48 ArrayList<String> classes = mBindingAdapters.get(simpleName);
49 if (classes == null) {
50 classes = new ArrayList<>();
51 mBindingAdapters.put(simpleName, classes);
52 classes.add(bindingAdapter);
53 } else if (!classes.contains(bindingAdapter)) {
54 classes.add(bindingAdapter);
56 bindings.put(binding, classes);
75 final ArrayList<String> classes = entry.getValue();
77 if (classes
[all...]
/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/base/tests/SmokeTest/tests/
H A DAndroid.mk12 # automatically get all of its classes loaded into our environment.
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DProcessMethodAdapters.java248 HashSet<String> classes = new HashSet<String>();
253 classes.add(containingClass.getQualifiedName().toString());
257 classes.add(((TypeElement) element).getQualifiedName().toString());
261 classes.add(((TypeElement) element.getEnclosingElement()).getQualifiedName().
265 classes.add(((TypeElement) element).getQualifiedName().toString());
267 store.clear(classes);
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
H A DMultiArgTestAdapter.java28 public static String join(BaseMultiBindingClass... classes) { argument
30 for(BaseMultiBindingClass instance : classes) {
/frameworks/native/services/inputflinger/
H A DEventHub.cpp151 classes(0), configuration(NULL), virtualKeyMap(NULL),
261 return device->classes;
1170 device->classes |= INPUT_DEVICE_CLASS_KEYBOARD;
1177 device->classes |= INPUT_DEVICE_CLASS_CURSOR;
1188 device->classes |= INPUT_DEVICE_CLASS_TOUCH | INPUT_DEVICE_CLASS_TOUCH_MT;
1194 device->classes |= INPUT_DEVICE_CLASS_TOUCH;
1200 device->classes |= INPUT_DEVICE_CLASS_EXTERNAL_STYLUS;
1204 device->classes &= ~INPUT_DEVICE_CLASS_KEYBOARD;
1211 uint32_t assumedClasses = device->classes | INPUT_DEVICE_CLASS_JOYSTICK;
1215 device->classes
[all...]
H A DInputReader.cpp382 uint32_t classes = mEventHub->getDeviceClasses(deviceId); local
385 InputDevice* device = createDeviceLocked(deviceId, controllerNumber, identifier, classes);
434 const InputDeviceIdentifier& identifier, uint32_t classes) {
436 controllerNumber, identifier, classes);
439 if (classes & INPUT_DEVICE_CLASS_EXTERNAL) {
444 if (classes & INPUT_DEVICE_CLASS_MIC) {
449 if (classes & INPUT_DEVICE_CLASS_SWITCH) {
454 if (classes & INPUT_DEVICE_CLASS_VIBRATOR) {
461 if (classes & INPUT_DEVICE_CLASS_KEYBOARD) {
464 if (classes
433 createDeviceLocked(int32_t deviceId, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
920 InputDevice(InputReaderContext* context, int32_t id, int32_t generation, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
[all...]
/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/aidl/
H A Dgenerate_java.cpp77 document->classes.push_back(cl);
H A DAST.cpp906 N = this->classes.size();
908 Class* c = this->classes[i];
H A DAST.h363 vector<Class*> classes; member in struct:Document
/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 \
114 echo "Could not compile generated classes."
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java47 * to list the desired classes and their dependencies.
59 /** Keep all classes that derive from these one (these included). */
61 /** Glob patterns of classes to keep, e.g. "com.foo.*" */
63 /** The set of classes to exclude.*/
67 /** Internal names of classes that contain method calls that need to be rewritten. */
76 * @param deriveFrom Keep all classes that derive from these one (these included).
77 * @param includeGlobs Glob patterns of classes to keep, e.g. "com.foo.*"
96 * Fills the generator with classes & dependencies found.
104 mLog.info("Found %d classes in input JAR%s.", zipClasses.size(),
119 * Parses a JAR file and adds all the classes foun
127 parseZip(List<String> jarPathList, Map<String, ClassReader> classes, Map<String, InputStream> filesFound) argument
[all...]
H A DDependencyFinder.java48 * to list the classes and their dependencies. A "dependency" is a class
77 mLog.info("Found %d classes in input JAR%s.",
150 * Parses a JAR file and returns a list of all classes founds using a map
154 TreeMap<String, ClassReader> classes = new TreeMap<String, ClassReader>();
165 classes.put(className, cr);
170 return classes;
198 * Finds all dependencies for all classes in keepClasses which are also
223 mLog.debugNoln("Visited %d classes\r", ++count);
233 * Computes which classes FQCN were found as dependencies that are NOT listed
234 * 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.sh43 # able to get classes.jar.
164 cp $MY_ANDROID_DIR/out/target/common/obj/JAVA_LIBRARIES/android-support-v8-renderscript_intermediates/classes.jar renderscript/lib/javalib.jar
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java311 public void clear(Set<String> classes) { argument
316 if (classes.contains(description.type)) {
326 if (classes.contains(renamed.get(key).type)) {
337 if (classes.contains(methodDescription.type)) {
346 if (classes.contains(mStore.untaggableTypes.get(typeName))) {
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java232 public void run(String[] classes) { argument
233 for (String cl : classes) {
278 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 new HashSet<String>(0) /* 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
459 parseZip(String jarPath, Map<String, ClassReader> classes, Map<String, InputStream> filesFound) argument
[all...]
/frameworks/support/v17/leanback/
H A DAndroid.mk33 # Base sub-library contains classes both needed by api-level specific libraries
/frameworks/wilhelm/src/
H A DAndroid.mk73 classes.c \
/frameworks/base/media/java/android/media/
H A DWebVttRenderer.java120 public void onStart(String tag, String[] classes, String annotation) { } argument
295 String[] classes = null;
298 classes = mName.substring(dotAt + 1).split("\\.");
301 mListener.onStart(mName, classes, mAnnotation);
332 void onStart(String tag, String[] classes, String annotation); argument

Completed in 3590 milliseconds

12