Lines Matching refs:of

4 Each type in the libxl interface is represented by an object of type
6 .idl file must be an instance of idl.Type (e.g. you may not define
9 The name of the type must be passed as the first argument to the
14 The Type.typename contains the C name of the type _including_ the
16 of the type.
39 The name of the C function which will free all dynamically allocated
49 The name of the C function which will deep copy all fields within
61 C expression for the value to initialise instances of this type to.
68 The name of the C function which will initialist Type.
77 The name of the C function which will generate a YAJL data structure
82 The name of the C function which will parse a libxl JSON structure
103 Instances of this class represent types which are predefined within
108 Instances of this class represent the standard uint<N>_t types.
124 The namespace in which the values of the Enumeration (see below) reside.
125 This prefix is prepended to the name of the value.
128 element in the list is of type idl.EnumerationValue.
133 EnumerationValue.name The C name of this value, including
134 the namespace and typename of the
137 EnumerationValue.rawname The C name of this value, excluding
139 typename of the containing
141 EnumerationValue.valuename The name of this value, excluding the
142 name of the containing Enumeration
148 Base class for type-Classes which contain a number of other types
152 element in the list is of type idl.Field representing a member of the
157 Field.type The type of the member (a idl.Type).
158 Field.name The name of the member (can be None for anonymous
167 A subclass of idl.Aggregate representing the C struct type.
173 A subclass of idl.Aggregate representing the C union type.
179 A subclass of idl.Aggregate which represents the C union type
180 where the currently valid member of the union can be determined based
182 always be a member of a containing idl.Aggregate type.
184 The KeyedUnion.keyvar contains an idl.Field, this is the member of
185 the containing type which determines the valid member of the
186 union. The idl.Field.type of the keyvar must be an Enumeration type.
190 A class representing an array of similar elements. An idl.Array must
191 always be an idl.Field of a containing idl.Aggregate.
193 idl.Array.elem_type contains an idl.Type which is the type of each
194 element of the array.
197 idl.Aggregate and will contain the length of the array. The field