HomeSort by relevance Sort by last modified time
    Searched refs:IdlType (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_types.py 31 Extends IdlType and IdlUnionType with V8-specific properties, methods, and
42 from idl_types import IdlTypeBase, IdlType, IdlUnionType, IdlArrayOrSequenceType, IdlNullableType
43 import v8_attributes # for IdlType.constructor_type_name
73 IdlType.is_typed_array_element_type = property(
76 IdlType.is_wrapper_type = property(
120 |idl_type| argument is of type IdlType, while return value is a string
124 IdlType
196 |idl_type| argument is of type IdlType.
270 IdlType.implemented_as_interfaces = {}
275 if base_idl_type in IdlType.implemented_as_interfaces
    [all...]
idl_types.py 8 IdlType
103 """Base class for IdlType, IdlUnionType, IdlArrayOrSequenceType and IdlNullableType."""
121 # IdlType
124 class IdlType(IdlTypeBase):
134 super(IdlType, self).__init__()
149 return self.base_type in IdlType.callback_functions
153 return self.base_type in IdlType.callback_interfaces
157 return self.base_type in IdlType.dictionaries
163 return self.name in IdlType.enums
167 return IdlType.enums[self.name
    [all...]
code_generator_v8.py 74 from idl_types import IdlType
110 IdlType.set_callback_interfaces(interfaces_info['callback_interfaces'])
111 IdlType.set_dictionaries(interfaces_info['dictionaries'])
112 IdlType.set_implemented_as_interfaces(interfaces_info['implemented_as_interfaces'])
113 IdlType.set_garbage_collected_types(interfaces_info['garbage_collected_interfaces'])
114 IdlType.set_will_be_garbage_collected_types(interfaces_info['will_be_garbage_collected_interfaces'])
120 IdlType.set_callback_functions(definitions.callback_functions.keys())
121 IdlType.set_enums((enum.name, enum.values)
idl_definitions.py 65 from idl_types import IdlType, IdlUnionType, IdlArrayType, IdlSequenceType, IdlNullableType
115 typedefs = dict((typedef_name, IdlType(type_name))
    [all...]
v8_interface.py 42 from idl_types import IdlType, inherits_interface
111 iterator_operation.idl_type = IdlType('Iterator')
305 method.idl_type = IdlType('DOMString')
    [all...]
v8_attributes.py 31 Extends IdlType with property |constructor_type_name|.
491 idl_types.IdlType.constructor_type_name = property(

Completed in 130 milliseconds