Home
last modified time | relevance | path

Searched refs:classes (Results 1 – 25 of 74) sorted by relevance

123

/frameworks/layoutlib/create/
DREADME.txt21 generated by the Android build, right before the classes are converted to a DEX format.
25 - some classes need to be overridden, for example all the drawing code that is replaced by Java 2D
27 - some of the classes that need to be changed are final and/or we need access to their private
32 - modifies some of the classes directly using some bytecode manipulation,
34 - injects some new classes,
42 platform as new classes are added, changed or removed. Some configuration that may be platform
61 The goal of the analyzer is to create a graph of all the classes from the input JAR with their
64 To do that, the analyzer is created with a list of base classes to keep -- everything that derives
73 The analyzer is also given a list of classes to exclude. A fake implementation of these classes is
76 With this information, the analyzer parses the input zip to find all the classes. All classes
[all …]
/frameworks/base/location/lib/
DREADME.txt2 containing classes required by unbundled location providers.
9 o This library can see and instantiate internal platform classes (such as
12 library because they cannot see the internal platform classes.
21 can not use internal platform classes.
23 So ideally all of these classes would be part of the public platform SDK API,
29 It wraps internal platform classes (like ProviderRequest) with a stable
30 API that does not leak the internal classes.
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/writer/
DComponentWriter.java37 final List<String> classes = bindingAdapters.get(simpleName); in createComponent() local
38 if (classes.size() > 1) { in createComponent()
40 for (String className : classes) { in createComponent()
44 addGetter(builder, simpleName, classes.iterator().next(), 0); in createComponent()
/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
DUtils.java30 String[] classes = classList.split(","); in getTargetsFromLegacyJackConfig() local
34 int total = classes.length; in getTargetsFromLegacyJackConfig()
41 config.add(new LockTarget(classes[i], requests[i], resets[i])); in getTargetsFromLegacyJackConfig()
/frameworks/base/tools/bit/
Dmake.cpp177 get_values(value, "class", &module.classes); in read_modules()
182 for (ssize_t i = module.classes.size() - 1; i >= 0; i--) { in read_modules()
183 string cl = module.classes[i]; in read_modules()
186 module.classes.erase(module.classes.begin() + i); in read_modules()
189 if (module.classes.size() == 0) { in read_modules()
Dmake.h29 vector<string> classes; member
/frameworks/base/media/lib/tvremote/
DREADME.txt2 containing classes required by unbundled atv remote providers.
9 o This library can see and instantiate internal platform classes, but it must not
11 break clients of the library because they cannot see the internal platform classes.
20 platform classes.
/frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/processor/
DCustomConverterProcessor.kt57 val classes = AnnotationMirrors.getAnnotationValue(annotation, "value") in <lambda>() constant
62 val converters = classes in <lambda>()
70 ProcessResult(classes, converters.map(::CustomTypeConverterWrapper)) in <lambda>()
139 open class ProcessResult(val classes: LinkedHashSet<TypeMirror>, in <lambda>() constant in android.arch.persistence.room.processor.CustomConverterProcessor.ProcessResult
144 newClasses.addAll(classes) in <lambda>()
145 newClasses.addAll(other.classes) in <lambda>()
DContext.kt94 val canReUseAdapterStore = processConvertersResult.classes.isEmpty() in fork()
102 val subCache = Cache(cache, subTypeConverters.classes, subSuppressedWarnings) in fork()
/frameworks/base/media/lib/signer/
DREADME.txt2 containing classes required by unbundled apps running on devices that use
11 o This library can see and instantiate internal platform classes, but it must not
13 break clients of the library because they cannot see the internal platform classes.
21 Unbundled apps cannot use internal platform classes.
/frameworks/base/media/lib/remotedisplay/
DREADME.txt2 containing classes required by unbundled remote display providers.
9 o This library can see and instantiate internal platform classes, but it must not
11 break clients of the library because they cannot see the internal platform classes.
20 platform classes.
/frameworks/native/services/inputflinger/
DEventHub.cpp151 classes(0), configuration(NULL), virtualKeyMap(NULL), in Device()
281 return device->classes; in getDeviceClasses()
1222 device->classes |= INPUT_DEVICE_CLASS_KEYBOARD; in openDeviceLocked()
1229 device->classes |= INPUT_DEVICE_CLASS_CURSOR; in openDeviceLocked()
1237 device->classes |= INPUT_DEVICE_CLASS_ROTARY_ENCODER; in openDeviceLocked()
1249 device->classes |= INPUT_DEVICE_CLASS_TOUCH | INPUT_DEVICE_CLASS_TOUCH_MT; in openDeviceLocked()
1255 device->classes |= INPUT_DEVICE_CLASS_TOUCH; in openDeviceLocked()
1261 device->classes |= INPUT_DEVICE_CLASS_EXTERNAL_STYLUS; in openDeviceLocked()
1265 device->classes &= ~INPUT_DEVICE_CLASS_KEYBOARD; in openDeviceLocked()
1272 uint32_t assumedClasses = device->classes | INPUT_DEVICE_CLASS_JOYSTICK; in openDeviceLocked()
[all …]
/frameworks/base/legacy-test/src/junit/framework/
DTestSuite.java177 public TestSuite (Class<?>... classes) {
178 for (Class<?> each : classes)
193 public TestSuite(Class<? extends TestCase>[] classes, String name) {
194 this(classes);
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
DProcessMethodAdapters.java314 HashSet<String> classes = new HashSet<String>(); in clearIncrementalClasses() local
319 classes.add(containingClass.getQualifiedName().toString()); in clearIncrementalClasses()
323 classes.add(((TypeElement) element).getQualifiedName().toString()); in clearIncrementalClasses()
327 classes.add(((TypeElement) element.getEnclosingElement()).getQualifiedName(). in clearIncrementalClasses()
332 classes.add(((TypeElement) element).getQualifiedName().toString()); in clearIncrementalClasses()
334 store.clear(classes); in clearIncrementalClasses()
/frameworks/base/core/java/com/android/internal/util/
DMessageUtils.java52 public static SparseArray<String> findMessageNames(Class[] classes, String[] prefixes) { in findMessageNames() argument
54 for (Class c : classes) { in findMessageNames()
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
DHprof.java61 Map<String, Set<ClassObj>> classes = Queries.classes(snapshot, null); in analyzeHprof() local
63 for (Map.Entry<String, Set<ClassObj>> e : classes.entrySet()) { in analyzeHprof()
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
DMultiArgTestAdapter.java26 public static String join(BaseMultiBindingClass... classes) { in join() argument
28 for(BaseMultiBindingClass instance : classes) { in join()
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/jdwp/
DJDWPClassDataRetriever.java105 Map<Long, String> classes = new HashMap<Long, String>(); in retrieveImpl() local
117 classes.put(typeID, signature); in retrieveImpl()
129 for (Map.Entry<Long, String> entry : classes.entrySet()) { in retrieveImpl()
/frameworks/support/annotations/
Dbuild.gradle9 // Strip out typedef classes. For Android libraries, this is done
35 task sourcesJar(type: Jar, dependsOn:classes) {
/frameworks/av/media/libaaudio/src/legacy/
DREADME.md1 The legacy folder contains the classes that implement AAudio AudioStream on top of
/frameworks/base/core/tests/coretests/apks/install_bad_dex/
DAndroid.mk11 $(LOCAL_BUILT_MODULE): PRIVATE_DEX_FILE := $(LOCAL_PATH)/classes.dex
/frameworks/base/tools/preload/
DPrintHtmlDiff.java88 Iterable<LoadedClass> classes) { in printTable() argument
100 for (LoadedClass clazz : classes) { in printTable()
/frameworks/av/media/utils/
DREADME1 This is a common shared library for media utility classes.
/frameworks/base/tools/preload2/src/com/android/preload/actions/
DComputeThresholdAction.java117 Set<String> classes) { in updateClassUse() argument
118 for (String className : classes) { in updateClassUse()
/frameworks/base/core/java/android/ddm/
DREADME.txt1 Some classes that handle DDM traffic.

123