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

<<1112

  /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...]
  /packages/apps/Calendar/src/com/android/calendar/
EventInfoFragment.java 117 public class EventInfoFragment extends DialogFragment implements OnCheckedChangeListener,
450 private class QueryHandler extends AsyncQueryService {
    [all...]
  /frameworks/base/core/java/android/view/
View.java 104 * This class represents the basic building block for user interface components. A View
106 * event handling. View is the base class for <em>widgets</em>, which are
108 * {@link android.view.ViewGroup} subclass is the base class for <em>layouts</em>, which
113 * <div class="special reference">
115 * <p>For information about using this class to develop your application's user interface,
286 * <pre class="prettyprint">
395 * {@link MeasureSpec} class is used by views to tell their parents how they
396 * want to be measured and positioned. The base LayoutParams class just
554 * The View class exposes an {@link #ALPHA} property, as well as several transform-related
572 * how the view is drawn on the display. In particular, the {@link ViewPropertyAnimator} class
    [all...]
ViewGroup.java 60 * (called children.) The view group is the base class for layouts and views
61 * containers. This class also defines the
62 * {@link android.view.ViewGroup.LayoutParams} class which serves as the base
63 * class for layouts parameters.
70 * <div class="special reference">
104 public abstract class ViewGroup extends View implements ViewParent, ViewManager {
214 * the DisplayList class
    [all...]
  /frameworks/base/core/java/android/widget/
AbsListView.java 80 * Base class that can be used to implement virtualized lists of items. A list does
81 * not have a spatial definition here. For instance, subclases of this class can
95 public abstract class AbsListView extends AdapterView<ListAdapter> implements TextWatcher,
    [all...]
TextView.java 145 * is a complete text editor, however the basic class is configured to not
228 public class TextView extends View implements ViewTreeObserver.OnPreDrawListener {
305 static class Drawables {
    [all...]

Completed in 231 milliseconds

<<1112