/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/writer/ |
D | ComponentWriter.java | 48 ArrayList<String> classes = mBindingAdapters.get(simpleName); in ComponentWriter() local 49 if (classes == null) { in ComponentWriter() 50 classes = new ArrayList<>(); in ComponentWriter() 51 mBindingAdapters.put(simpleName, classes); in ComponentWriter() 52 classes.add(bindingAdapter); in ComponentWriter() 53 } else if (!classes.contains(bindingAdapter)) { in ComponentWriter() 54 classes.add(bindingAdapter); in ComponentWriter() 56 bindings.put(binding, classes); in ComponentWriter() 75 final ArrayList<String> classes = entry.getValue(); in ComponentWriter() local 77 if (classes.size() == 1) { in ComponentWriter() [all …]
|
/frameworks/base/tools/layoutlib/create/ |
D | README.txt | 21 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/ |
D | advanced.jd | 5 <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>
|
D | building-graphics.jd | 8 <p>These classes teach you how to accomplish tasks with graphics 11 these classes will help you get there.</p>
|
D | building-wearables.jd | 9 <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
|
D | index.jd | 3 page.metaDescription=Android Training provides a collection of classes that aim to help you build g… 7 <p>Welcome to Training for Android developers. Here you'll find sets of lessons within classes 13 complete each of these classes in order.</p>
|
D | testing.jd | 6 <p>These classes and articles provide information about how to
|
D | building-content-sharing.jd | 8 <p>These classes teach you how to create apps that share data between apps and devices.</p>
|
D | building-multimedia.jd | 8 <p>These classes teach you how to
|
D | best-security.jd | 8 <p>These classes and articles provide information about how to
|
/frameworks/base/location/lib/ |
D | README.txt | 2 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/base/docs/html/training/backward-compatible-ui/ |
D | new-implementation.jd | 40 … subclass the <code>CompatTab</code> and <code>TabHelper</code> abstract classes and use new APIs.… 44 …classes 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—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">
|
D | abstracting.jd | 41 <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/signer/ |
D | README.txt | 2 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/ |
D | README.txt | 2 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/ |
D | EventHub.cpp | 151 classes(0), configuration(NULL), virtualKeyMap(NULL), in Device() 261 return device->classes; in getDeviceClasses() 1170 device->classes |= INPUT_DEVICE_CLASS_KEYBOARD; in openDeviceLocked() 1177 device->classes |= INPUT_DEVICE_CLASS_CURSOR; in openDeviceLocked() 1188 device->classes |= INPUT_DEVICE_CLASS_TOUCH | INPUT_DEVICE_CLASS_TOUCH_MT; in openDeviceLocked() 1194 device->classes |= INPUT_DEVICE_CLASS_TOUCH; in openDeviceLocked() 1200 device->classes |= INPUT_DEVICE_CLASS_EXTERNAL_STYLUS; in openDeviceLocked() 1204 device->classes &= ~INPUT_DEVICE_CLASS_KEYBOARD; in openDeviceLocked() 1211 uint32_t assumedClasses = device->classes | INPUT_DEVICE_CLASS_JOYSTICK; in openDeviceLocked() 1215 device->classes = assumedClasses; in openDeviceLocked() [all …]
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/ |
D | ProcessMethodAdapters.java | 248 HashSet<String> classes = new HashSet<String>(); in clearIncrementalClasses() local 253 classes.add(containingClass.getQualifiedName().toString()); in clearIncrementalClasses() 257 classes.add(((TypeElement) element).getQualifiedName().toString()); in clearIncrementalClasses() 261 classes.add(((TypeElement) element.getEnclosingElement()).getQualifiedName(). in clearIncrementalClasses() 265 classes.add(((TypeElement) element).getQualifiedName().toString()); in clearIncrementalClasses() 267 store.clear(classes); in clearIncrementalClasses()
|
/frameworks/base/docs/html/tools/testing/ |
D | testing_android.jd | 26 <a href="#TestCaseClasses">Test case classes</a> 29 <a href="#AssertionClasses">Assertion classes</a> 32 <a href="#MockObjectClasses">Mock object classes</a> 55 <h2>Key classes</h2> 100 new to Android testing, you can start with general-purpose test case classes such as {@link 101 android.test.AndroidTestCase} and then go on to use more sophisticated classes. 104 The Android JUnit extensions provide component-specific test case classes. These classes 144 structure of tests, test case classes, test packages, and test projects. 148 statements test a part of the application under test. You organize test methods into classes 156 Android test package. In JUnit, you use a test runner to execute test classes. In Android, you [all …]
|
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/ |
D | MultiArgTestAdapter.java | 28 public static String join(BaseMultiBindingClass... classes) { in join() argument 30 for(BaseMultiBindingClass instance : classes) { in join()
|
/frameworks/base/docs/html/training/tv/playback/ |
D | index.jd | 42 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/docs/html/tools/help/uiautomator/ |
D | index.jd | 14 <li><a href="#classes">Classes</a></li> 56 argument is a list of test classes or test methods in {@code <JARS>} to run. 63 You can list multiple classes or methods by using a space as a separator.</p> 77 <td><p>Specify other name-value pairs to be passed to test classes. May be repeated.</p><p class="n… 103 …e <android-sdk>/platforms/} directory. The API includes these key classes, interfaces, and … 105 <h3 id="classes">Classes</h3>
|
/frameworks/base/core/tests/coretests/apks/install_bad_dex/ |
D | Android.mk | 11 $(LOCAL_BUILT_MODULE): PRIVATE_DEX_FILE := $(LOCAL_PATH)/classes.dex
|
/frameworks/base/tools/preload/ |
D | PrintHtmlDiff.java | 88 Iterable<LoadedClass> classes) { in printTable() argument 100 for (LoadedClass clazz : classes) { in printTable()
|
/frameworks/base/docs/html/ndk/reference/ |
D | rect_8h.jd | 12 <a href="#nested-classes">Data Structures</a> | 20 <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
/frameworks/av/media/utils/ |
D | README | 1 This is a common shared library for media utility classes.
|