Home
last modified time | relevance | path

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

12345678910>>...12

/frameworks/base/tools/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/docs/html/training/
Dadvanced.jd5 <p>Advanced Training contains a variety of classes that teach you best practices in Android
6 development. These classes simplify the steps required to enhance your app with powerful
9 <p>What you see now is still the beginning. We plan to add many more classes, expand and refine
10 existing classes, re-organize, and build courses that help you enhance your apps using
11 objective-oriented collections of classes.</p>
Dindex.jd3 page.metaDescription=Android Training provides a collection of classes that aim to help you build g…
11 training classes that describe how to accomplish a specific task with code
17 Android app developer, you should complete each of these classes in order.</p>
34 <div style="clear:left" id="classes"></div>
Dbuilding-graphics.jd8 <p>These classes teach you how to accomplish tasks with graphics
11 these classes will help you get there.</p>
Dbuilding-wearables.jd9 <p>These classes teach you how to build notifications in a handheld app that are automatically
13 classes, see the <a href="{@docRoot}reference/packages-wearable-support.html">Wear API reference
Dtesting.jd6 <p>These classes and articles provide information about how to
Dbuilding-content-sharing.jd8 <p>These classes teach you how to create apps that share data between apps and devices.</p>
Dbuilding-multimedia.jd8 <p>These classes teach you how to
/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/docs/html/training/backward-compatible-ui/
Dnew-implementation.jd40 … subclass the <code>CompatTab</code> and <code>TabHelper</code> abstract classes and use new APIs.…
44classes for <code>CompatTab</code> and <code>TabHelper</code> that use newer APIs are a <em>proxy<…
46 <p>You can directly use newer APIs in these concrete classes&mdash;and not crash on earlier devices…
48 …te classes. For example, the native tab implementation can be provided by <code>CompatTabHoneycomb…
50 <img src="{@docRoot}images/training/backward-compatible-ui-classes-honeycomb.png"
51 alt="Class diagram for the Honeycomb implementation of tabs." id="figure-classes">
Dabstracting.jd41 <p>In this class, you build a tabbed user interface (UI) component that uses abstract classes with …
45 …ing language involves the creation of one or more interfaces or abstract classes to hide implement…
47 …er classes you want to be able to use in a backward compatible way, then create abstract classes, …
49 <p>After creating abstract classes for these new APIs, any number of implementations can be created…
63 …s structure to support these two implementations and their abstract base classes (or interfaces) i…
65 <img src="{@docRoot}images/training/backward-compatible-ui-classes.png"
66 …alt="Class diagram of abstract base classes and version-specific implementations." id="figure-clas…
68 <p class="img-caption"><strong>Figure 1.</strong> Class diagram of abstract base classes and versio…
/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/native/services/inputflinger/
DEventHub.cpp151 classes(0), configuration(NULL), virtualKeyMap(NULL), in Device()
261 return device->classes; in getDeviceClasses()
1184 device->classes |= INPUT_DEVICE_CLASS_KEYBOARD; in openDeviceLocked()
1191 device->classes |= INPUT_DEVICE_CLASS_CURSOR; in openDeviceLocked()
1199 device->classes |= INPUT_DEVICE_CLASS_ROTARY_ENCODER; in openDeviceLocked()
1211 device->classes |= INPUT_DEVICE_CLASS_TOUCH | INPUT_DEVICE_CLASS_TOUCH_MT; in openDeviceLocked()
1217 device->classes |= INPUT_DEVICE_CLASS_TOUCH; in openDeviceLocked()
1223 device->classes |= INPUT_DEVICE_CLASS_EXTERNAL_STYLUS; in openDeviceLocked()
1227 device->classes &= ~INPUT_DEVICE_CLASS_KEYBOARD; in openDeviceLocked()
1234 uint32_t assumedClasses = device->classes | INPUT_DEVICE_CLASS_JOYSTICK; in openDeviceLocked()
[all …]
/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/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.java51 public static SparseArray<String> findMessageNames(Class[] classes, String[] prefixes) { in findMessageNames() argument
53 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/base/docs/html/training/tv/playback/
Dindex.jd42 The Android framework provides classes for building user interfaces for these types of apps with
44 library</a>. This library provides a framework of classes for creating an efficient and familiar
45 interface for browsing and playing media files with minimal coding. The classes are designed to
/frameworks/base/tools/preload/
DPrintHtmlDiff.java88 Iterable<LoadedClass> classes) { in printTable() argument
100 for (LoadedClass clazz : classes) { in printTable()
/frameworks/base/core/tests/coretests/apks/install_bad_dex/
DAndroid.mk11 $(LOCAL_BUILT_MODULE): PRIVATE_DEX_FILE := $(LOCAL_PATH)/classes.dex
/frameworks/av/media/utils/
DREADME1 This is a common shared library for media utility classes.

12345678910>>...12