HomeSort by relevance Sort by last modified time
    Searched defs:class (Results 251 - 262 of 262) sorted by null

<<11

  /frameworks/base/core/java/android/widget/
GridLayout.java 151 public class GridLayout extends ViewGroup {
211 static final String TAG = GridLayout.class.getName();
601 if (c.getClass() == Space.class) {
    [all...]
AbsListView.java 76 * Base class that can be used to implement virtualized lists of items. A list does
77 * not have a spatial definition here. For instance, subclases of this class can
91 public abstract class AbsListView extends AdapterView<ListAdapter> implements TextWatcher,
    [all...]
TextView.java 143 * is a complete text editor, however the basic class is configured to not
226 public class TextView extends View implements ViewTreeObserver.OnPreDrawListener {
296 static class Drawables {
    [all...]
  /frameworks/base/services/java/com/android/server/
NotificationManagerService.java 101 public class NotificationManagerService extends INotificationManager.Stub
202 private class NotificationListenerInfo implements DeathRecipient {
272 private static class Archive {
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 150 public class GridLayout extends android.support.v7.widget.ViewGroup {
210 static final String TAG = GridLayout.class.getName();
581 if (c.getClass() == Space.class) {
    [all...]
  /packages/apps/Phone/src/com/android/phone/
InCallScreen.java 83 public class InCallScreen extends Activity
240 // TODO: If the Activity class ever provides an easy way to get the
324 // since the message display class has been replaced with
722 Profiler.profileViewCreate(getWindow(), InCallScreen.class.getName());
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DataUsageSummary.java 155 public class DataUsageSummary extends Fragment {
547 activity.startPreferencePanel(DataUsageMeteredSettings.class.getCanonicalName(), null,
    [all...]
  /external/elfutils/src/
readelf.c 706 printf (gettext ("\n Class: %s\n"),
1282 int class = gelf_getclass (ebl->elf); local
1458 int class = gelf_getclass (ebl->elf); local
1603 int class = gelf_getclass (ebl->elf); local
1762 int class = gelf_getclass (ebl->elf); local
2050 int class = gelf_getclass (ebl->elf); local
2129 int class = gelf_getclass (ebl->elf); local
2192 int class = gelf_getclass (ebl->elf); local
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios32.c 689 #define PCI_CLASS_DEVICE 0x0a /* Device class */
933 int class; local
937 class = pci_config_readw(d, PCI_CLASS_DEVICE);
940 BX_INFO("PCI: bus=%d devfn=0x%02x: vendor_id=0x%04x device_id=0x%04x class=0x%04x\n",
941 d->bus, d->devfn, vendor_id, device_id, class);
942 switch(class) {
    [all...]
rombios.c 8525 and dl,#0xE0 ;; mask to get device class, including cdroms local
    [all...]
  /frameworks/base/core/java/android/view/
View.java 102 * This class represents the basic building block for user interface components. A View
104 * event handling. View is the base class for <em>widgets</em>, which are
106 * {@link android.view.ViewGroup} subclass is the base class for <em>layouts</em>, which
111 * <div class="special reference">
113 * <p>For information about using this class to develop your application's user interface,
284 * <pre class="prettyprint">
393 * {@link MeasureSpec} class is used by views to tell their parents how they
394 * want to be measured and positioned. The base LayoutParams class just
552 * The View class exposes an {@link #ALPHA} property, as well as several transform-related
570 * how the view is drawn on the display. In particular, the {@link ViewPropertyAnimator} class
    [all...]
ViewGroup.java 59 * (called children.) The view group is the base class for layouts and views
60 * containers. This class also defines the
61 * {@link android.view.ViewGroup.LayoutParams} class which serves as the base
62 * class for layouts parameters.
69 * <div class="special reference">
103 public abstract class ViewGroup extends View implements ViewParent, ViewManager {
213 * the DisplayList class
    [all...]

Completed in 679 milliseconds

<<11