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

  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_definitions_builder.py 90 custom_constructors = None
112 constructors, custom_constructors = extended_attributes_to_constructors(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)
364 custom_constructors = []
386 custom_constructors.append(child)
401 if custom_constructors:
402 extended_attributes['CustomConstructors'] = custom_constructors
408 """Returns constructors and custom_constructors (lists of IdlOperations).
413 custom_constructors = [
    [all...]
idl_definitions.py 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):
176 self.custom_constructors = custom_constructors or []
191 for custom_constructor in self.custom_constructors:
201 'domInterface::customConstructors': self.custom_constructors,

Completed in 87 milliseconds