HomeSort by relevance Sort by last modified time
    Searched refs:IdlType (Results 1 - 9 of 9) 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 IdlType, IdlUnionType
43 import v8_attributes # for IdlType.constructor_type_name
75 IdlType.is_typed_array_type = property(
79 IdlType.is_wrapper_type = property(
125 |idl_type| argument is of type IdlType, while return value is a string
129 IdlType
193 IdlType.cpp_type = property(cpp_type)
195 IdlType.cpp_type_args = cpp_type
230 IdlType.implemented_as_interfaces = {
    [all...]
code_generator_v8.py 74 from idl_types import IdlType
93 IdlType.set_callback_interfaces(set(
97 IdlType.set_implemented_as_interfaces(dict(
101 IdlType.set_garbage_collected_types(set(
105 IdlType.set_will_be_garbage_collected_types(set(
124 IdlType.set_callback_functions(definitions.callback_functions.keys())
125 IdlType.set_enums((enum.name, enum.values)
idl_types.py 7 IdlType
90 # IdlType
93 class IdlType(object):
136 return self.is_array and IdlType(self.base_type)
141 return self.is_sequence and IdlType(self.base_type)
149 return self.base_type in IdlType.callback_functions
153 return self.base_type in IdlType.callback_interfaces
166 return self.name in IdlType.enums
170 return IdlType.enums[self.name]
257 # FIXME: derive from IdlType, instead of stand-alone class, to reduc
    [all...]
v8_callback_interface.py 31 Extends IdlType with property |callback_cpp_type|.
36 from idl_types import IdlType
70 IdlType.callback_cpp_type = property(cpp_type)
v8_utilities.py 31 Extends IdlType and IdlUnion type with |enum_validation_expression| property.
38 from idl_types import IdlType, IdlUnionType
116 IdlType.enum_validation_expression = property(enum_validation_expression)
v8_methods.py 31 Extends IdlType and IdlUnionType with property |union_arguments|.
36 from idl_types import IdlType, IdlUnionType, inherits_interface
348 IdlType.union_arguments = property(lambda self: None)
idl_definitions.py 63 from idl_types import IdlType, IdlUnionType
112 typedefs = dict((typedef_name, IdlType(type_name))
716 return IdlType(node.GetName(), is_array=is_array, is_nullable=is_nullable, is_unrestricted=is_unrestricted)
718 return IdlType('any', is_array=is_array, is_nullable=is_nullable)
739 return IdlType(element_type, is_sequence=True, is_nullable=is_nullable)
v8_attributes.py 31 Extends IdlType with property |constructor_type_name|.
425 idl_types.IdlType.constructor_type_name = property(
v8_interface.py 40 from idl_types import IdlType, inherits_interface
    [all...]

Completed in 91 milliseconds