/frameworks/support/v4/java/android/support/v4/widget/ |
SlidingPaneLayout.java | 89 public class SlidingPaneLayout extends ViewGroup { 237 public static class SimplePanelSlideListener implements PanelSlideListener { [all...] |
DrawerLayout.java | 86 public class DrawerLayout extends ViewGroup implements DrawerLayoutImpl { 238 public static abstract class SimpleDrawerListener implements DrawerListener { 263 static class DrawerLayoutCompatImplBase implements DrawerLayoutCompatImpl { 281 static class DrawerLayoutCompatImplApi21 implements DrawerLayoutCompatImpl { [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/ |
AbstractPreferencesTest.java | 45 public class AbstractPreferencesTest extends TestCase { 47 public static final class TestPreferencesFactory implements PreferencesFactory { 88 parent = (AbstractPreferences) Preferences.userNodeForPackage(Preferences.class); 147 assertSame(p.getLock().getClass(), Object.class); [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
ManageApplications.java | 85 final class CanBeOnSdCardChecker { 137 public class ManageApplications extends Fragment implements 179 public static class TabInfo implements OnItemClickListener { 490 class MyPagerAdapter extends PagerAdapter 555 static class ApplicationsAdapter extends BaseAdapter implements Filterable, [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/ |
mootools-1.2.2-core-nc.js | 15 - Class implementation inspired by [Base.js](http://dean.edwards.name/weblog/2006/03/base/) Copyright (c) 2006 Dean Edwards, [GNU Lesser General Public License](http://opensource.org/licenses/lgpl-license.php) 1038 Script: Class.js 1039 Contains the Class Function for easily creating, extending, and implementing reusable Classes. 1045 function Class(params){ 1060 newClass.constructor = Class; 1095 new Native({name: 'Class', initialize: Class}).extend({ 1120 Class.implement({ 1129 var mutator = Class.Mutators[key]; 1142 proto[key] = Class.wrap(this, key, value) [all...] |
/external/chromium_org/third_party/libevent/ |
evdns.c | 250 u16 class : 16; /* The RR class (usually CLASS_INET) */ member in struct:server_reply_item 871 * <label:name><u16:type><u16:class> 879 * <label:name><u16:type><u16:class><u32:ttl><u16:len><data...> 883 u16 type, class; local 887 GET16(class); 891 if (type == TYPE_A && class == CLASS_INET) { 910 } else if (type == TYPE_PTR && class == CLASS_INET) { 920 } else if (type == TYPE_AAAA && class == CLASS_INET) { 993 u16 type, class; local [all...] |
/external/mdnsresponder/mDNSShared/ |
uds_daemon.c | 493 mDNSu16 class = get_uint16(&request->msgptr, request->msgend); local 540 rr->resrec.rrclass = class; [all...] |
/frameworks/base/core/java/android/widget/ |
GridLayout.java | 161 public class GridLayout extends ViewGroup { 234 static final Printer LOG_PRINTER = new LogPrinter(Log.DEBUG, GridLayout.class.getName()); 651 if (c.getClass() == Space.class) { [all...] |
AbsListView.java | 81 * Base class that can be used to implement virtualized lists of items. A list does 82 * not have a spatial definition here. For instance, subclases of this class can 96 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 231 public class TextView extends View implements ViewTreeObserver.OnPreDrawListener { 312 static class Drawables { [all...] |
/frameworks/base/services/core/java/com/android/server/notification/ |
NotificationManagerService.java | 122 public class NotificationManagerService extends SystemService { 254 private static class Archive { 453 private static final class ToastRecord 742 class SettingsObserver extends ContentObserver { [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DataUsageSummary.java | 153 public class DataUsageSummary extends HighlightingFragment implements Indexable { 590 sa.startPreferencePanel(DataUsageMeteredSettings.class.getCanonicalName(), null, [all...] |
/external/elfutils/0.153/src/ |
readelf.c | 759 printf (gettext ("\n Class: %s\n"), 1357 int class = gelf_getclass (ebl->elf); local 1535 int class = gelf_getclass (ebl->elf); local 1721 int class = gelf_getclass (ebl->elf); local 1922 int class = gelf_getclass (ebl->elf); local 2210 int class = gelf_getclass (ebl->elf); local 2289 int class = gelf_getclass (ebl->elf); local 2352 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...] |
/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 | 116 * This class represents the basic building block for user interface components. A View 118 * event handling. View is the base class for <em>widgets</em>, which are 120 * {@link android.view.ViewGroup} subclass is the base class for <em>layouts</em>, which 125 * <div class="special reference"> 127 * <p>For information about using this class to develop your application's user interface, 298 * <pre class="prettyprint"> 407 * {@link MeasureSpec} class is used by views to tell their parents how they 408 * want to be measured and positioned. The base LayoutParams class just 569 * The View class exposes an {@link #ALPHA} property, as well as several transform-related 587 * how the view is drawn on the display. In particular, the {@link ViewPropertyAnimator} class [all...] |
ViewGroup.java | 62 * (called children.) The view group is the base class for layouts and views 63 * containers. This class also defines the 64 * {@link android.view.ViewGroup.LayoutParams} class which serves as the base 65 * class for layouts parameters. 72 * <div class="special reference"> 106 public abstract class ViewGroup extends View implements ViewParent, ViewManager { 216 * the DisplayList class [all...] |
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
RecyclerView.java | 86 public class RecyclerView extends ViewGroup { [all...] |