Searched defs:classes (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/tools/bit/
H A Dmake.h29 vector<string> classes; member in struct:Module
/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/core/java/com/android/internal/util/
H A DMessageUtils.java44 * Finds the names of integer constants. Searches the specified {@code classes}, looking for
48 * @param classes the classes to examine.
52 public static SparseArray<String> findMessageNames(Class[] classes, String[] prefixes) { argument
54 for (Class c : classes) {
122 * Finds the names of integer constants. Searches the specified {@code classes}, looking for
125 * @param classNames the classes to examine.
/frameworks/base/tools/preload2/src/com/android/preload/actions/
H A DComputeThresholdAction.java37 * Compute an intersection of classes from the given data. A class is in the intersection if it
39 * used to filter classes from the intersection.
48 * that filters classes.
92 + " classes, would you like to save to disk?", "Save?");
117 Set<String> classes) {
118 for (String className : classes) {
116 updateClassUse(String pkg, Map<String, Set<String>> classUses, Set<String> classes) argument
/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/legacy-test/src/junit/framework/
H A DTestSuite.java36 * <p>A final option is to do the same for a large array of test classes.
174 * Constructs a TestSuite from the given array of classes.
175 * @param classes {@link TestCase}s
177 public TestSuite (Class<?>... classes) { argument
178 for (Class<?> each : classes)
190 * Constructs a TestSuite from the given array of classes with the given name.
193 public TestSuite(Class<? extends TestCase>[] classes, String name) { argument
194 this(classes);
/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/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java95 // classes to rename (so that we can replace them)
107 new String[] { // include classes
110 Collections.emptySet() /* excluded classes */,
125 // classes to inject in the final JAR
133 // classes to refactor (so that we can replace them)
149 new String[] { // include classes
178 // classes to inject in the final JAR
186 // classes to refactor (so that we can replace them)
197 new String[] { // include classes
232 new String[] { // include classes
313 parseZip(String jarPath, Map<String, ClassReader> classes, Map<String, InputStream> filesFound) argument
[all...]
/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/native/services/inputflinger/
H A DEventHub.h101 * Input device classes.
151 * Gets the class that owns an axis, in cases where multiple classes might claim
343 uint32_t classes; member in struct:android::EventHub::Device
H A DInputReader.cpp438 uint32_t classes = mEventHub->getDeviceClasses(deviceId); local
441 InputDevice* device = createDeviceLocked(deviceId, controllerNumber, identifier, classes);
490 const InputDeviceIdentifier& identifier, uint32_t classes) {
492 controllerNumber, identifier, classes);
495 if (classes & INPUT_DEVICE_CLASS_EXTERNAL) {
500 if (classes & INPUT_DEVICE_CLASS_MIC) {
505 if (classes & INPUT_DEVICE_CLASS_SWITCH) {
510 if (classes & INPUT_DEVICE_CLASS_ROTARY_ENCODER) {
515 if (classes & INPUT_DEVICE_CLASS_VIBRATOR) {
522 if (classes
489 createDeviceLocked(int32_t deviceId, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
999 InputDevice(InputReaderContext* context, int32_t id, int32_t generation, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
[all...]
/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...]
/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
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java390 public void clear(Set<String> classes) { argument
395 if (classes.contains(description.type)) {
405 if (classes.contains(renamed.get(key).type)) {
416 if (classes.contains(methodDescription.type)) {
425 if (classes.contains(mStore.untaggableTypes.get(typeName))) {
/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/native/services/inputflinger/tests/
H A DInputReader_test.cpp338 uint32_t classes; member in struct:android::FakeEventHub::Device
351 explicit Device(uint32_t classes) : argument
352 classes(classes) {
370 void addDevice(int32_t deviceId, const String8& name, uint32_t classes) { argument
371 Device* device = new Device(classes);
499 return device ? device->classes : 0;
981 uint32_t classes) {
986 classes);
991 const InputDeviceIdentifier& identifier, uint32_t classes) {
980 newDevice(int32_t deviceId, int32_t controllerNumber, const String8& name, uint32_t classes) argument
990 createDeviceLocked(int32_t deviceId, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
1029 addDevice(int32_t deviceId, const String8& name, uint32_t classes, const PropertyMap* configuration) argument
1042 addDeviceWithFakeInputMapper(int32_t deviceId, int32_t controllerNumber, const String8& name, uint32_t classes, uint32_t sources, const PropertyMap* configuration) argument
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 2858 milliseconds