Lines Matching full:for
9 The QEMU Object Model provides a framework for registering user creatable
13 - System for dynamically registering types
14 - Support for single-inheritance of types
18 The root object class is TYPE_OBJECT which provides for the basic
42 // No new virtual functions: we can reuse the typedef for the
69 The TYPE_DEVICE class is the parent class for all modern devices
96 are instantiated dynamically but there is only ever one instance for any
98 for the virtual methods implemented by this type.
127 Before an object is initialized, the class for the object must be
128 initialized. There is only one class object for all instance objects
141 is called to let the class being instantiated provide default initialize for
198 similar to normal types except for the fact that are only defined by
219 except for trailing varargs.
299 its non-overridden methods for a specific type. This would correspond to
310 written for a new type there are two sets of macros to generate the
351 For the simplest case of a leaf class which doesn't need any of its
387 along with any other logic required for the type.
404 them is that the former is for simple leaf classes that don't need
405 a class struct, and the latter is for when you will be defining
461 documents for the complete API description.