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

  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_definitions_builder.py 91 extended_attributes = None
106 clear_constructor_attributes(attribute.extended_attributes)
111 extended_attributes = ext_attributes_node_to_extended_attributes(child)
112 constructors, custom_constructors = extended_attributes_to_constructors(extended_attributes)
113 clear_constructor_attributes(extended_attributes)
121 return IdlInterface(name=name, attributes=attributes, constants=constants, constructors=constructors, custom_constructors=custom_constructors, extended_attributes=extended_attributes, operations=operations, is_callback=is_callback, is_partial=is_partial, parent=parent)
126 extended_attributes = {}
139 extended_attributes = ext_attributes_node_to_extended_attributes(child)
143 return IdlAttribute(data_type=data_type, extended_attributes=extended_attributes, is_nullable=is_nullable, is_read_only=is_read_only, is_static=is_static, name (…)
    [all...]
idl_definitions.py 74 extended_attributes = None variable in class:TypedObject
86 additional_extended_attributes = replacement_type.extended_attributes
88 self.extended_attributes.update(additional_extended_attributes)
172 def __init__(self, attributes=None, constants=None, constructors=None, custom_constructors=None, extended_attributes=None, operations=None, is_callback=False, is_partial=False, name=None, parent=None):
177 self.extended_attributes = extended_attributes or {}
202 'domInterface::extendedAttributes': none_to_value_is_missing(self.extended_attributes),
213 def __init__(self, name=None, constants=None, operations=None, attributes=None, extended_attributes=None):
216 self.extended_attributes = extended_attributes or {
    [all...]
interface_dependency_resolver.py 190 if 'ImplementedAs' in dependency_interface.extended_attributes:
191 del dependency_interface.extended_attributes['ImplementedAs']
204 if 'LegacyImplementedInBaseClass' not in dependency_interface.extended_attributes:
205 element.extended_attributes['ImplementedBy'] = dependency_interface_name
206 element.extended_attributes.update(dependency_interface.extended_attributes)
compute_dependencies.py 129 extended_attributes = {}
139 extended_attributes[key] = value
140 return extended_attributes
143 def generate_constructor_attribute_list(interface_name, extended_attributes):
145 for attribute_name, attribute_value in extended_attributes.iteritems():
163 if 'NamedConstructor' in extended_attributes:
164 named_constructor = extended_attributes['NamedConstructor']
179 for filename, extended_attributes in sorted(event_names.iteritems()):
185 if key in extended_attributes:
186 attributes.append('%s=%s%s' % (key, extended_attributes[key], suffix)
    [all...]
code_generator_v8.py 135 if 'Conditional' not in interface_or_attribute_or_operation.extended_attributes:
137 conditional = interface_or_attribute_or_operation.extended_attributes['Conditional']
211 return attribute_or_operation.extended_attributes.get('ImplementedAs', attribute_or_operation.name)
215 return interface.extended_attributes.get('ImplementedAs', interface.name)
337 custom = 'Custom' in operation.extended_attributes
idl_validator.py 59 for name, values_string in node.extended_attributes.iteritems():

Completed in 136 milliseconds