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

  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/
v8_utilities.py 55 return any(extended_attribute in definition_or_member.extended_attributes
60 extended_attributes = definition_or_member.extended_attributes
61 return (name in extended_attributes and
62 extended_attribute_value_contains(extended_attributes[name], value))
116 if 'ActivityLogging' not in member.extended_attributes:
118 activity_logging = member.extended_attributes['ActivityLogging']
152 call_with_values = call_with_values or member.extended_attributes.get('CallWith')
162 extended_attributes = definition_or_member.extended_attributes
    [all...]
v8_attributes.py 46 extended_attributes = attribute.extended_attributes
51 is_check_security_for_node = 'CheckSecurity' in extended_attributes
55 has_custom_getter = ('Custom' in extended_attributes and
56 extended_attributes['Custom'] in [None, 'Getter'])
58 'Custom' in extended_attributes and
59 extended_attributes['Custom'] in [None, 'Setter'])
61 is_reflect = 'Reflect' in extended_attributes
74 'cached_attribute_validation_method': extended_attributes.get('CachedAttribute'),
86 'StrictTypeChecking' in extended_attributes an
    [all...]
v8_methods.py 46 extended_attributes = method.extended_attributes
57 if 'Unforgeable' in extended_attributes:
64 if is_static or 'DoNotCheckSignature' in extended_attributes:
75 is_check_security_for_node = 'CheckSecurity' in extended_attributes
78 is_custom_element_callbacks = 'CustomElementCallbacks' in extended_attributes
101 'CheckSecurity' in interface.extended_attributes and
102 'DoNotCheckSecurity' not in extended_attributes),
104 'is_custom': 'Custom' in extended_attributes,
106 'is_do_not_check_security': 'DoNotCheckSecurity' in extended_attributes,
    [all...]
idl_definitions_builder.py 94 extended_attributes = None
110 extended_attributes = ext_attributes_node_to_extended_attributes(child)
111 constructors, custom_constructors = extended_attributes_to_constructors(extended_attributes)
112 clear_constructor_attributes(extended_attributes)
120 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)
125 extended_attributes = {}
138 extended_attributes = ext_attributes_node_to_extended_attributes(child)
142 return IdlAttribute(idl_type=idl_type, extended_attributes=extended_attributes, is_nullable=is_nullable, is_read_only=is_read_only, is_static=is_static, name=name
    [all...]
v8_types.py 241 def cpp_type(idl_type, extended_attributes=None, used_as_argument=False):
246 if extended_attributes.get('TreatNullAs') != 'NullString':
248 if extended_attributes.get('TreatUndefinedAs') != 'NullString':
252 extended_attributes = extended_attributes or {}
370 def v8_value_to_cpp_value(idl_type, extended_attributes, v8_value, index):
378 if 'EnforceRange' in extended_attributes:
416 def v8_value_to_local_cpp_value(idl_type, extended_attributes, v8_value, variable_name, index=None):
418 this_cpp_type = cpp_type(idl_type, extended_attributes=extended_attributes, used_as_argument=True
    [all...]
v8_interface.py 69 extended_attributes = interface.extended_attributes
72 is_check_security = 'CheckSecurity' in extended_attributes
77 generate_visit_dom_wrapper_function = extended_attributes.get('GenerateVisitDOMWrapper')
83 is_measure_as = 'MeasureAs' in extended_attributes
88 if 'SpecialWrapFor' in extended_attributes:
89 special_wrap_for = extended_attributes['SpecialWrapFor'].split('|')
105 has_custom_constructor = 'CustomConstructor' in extended_attributes
108 has_event_constructor = 'EventConstructor' in extended_attributes
117 if 'NamedConstructor' in extended_attributes
    [all...]
idl_definitions.py 74 extended_attributes = None variable in class:TypedObject
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 {}
234 'domInterface::extendedAttributes': none_to_value_is_missing(self.extended_attributes),
247 def __init__(self, idl_type=None, extended_attributes=None, getter_exceptions=None, is_nullable=False, is_static=False, is_read_only=False, name=None, s (…)
    [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)
v8_callback_interface.py 103 extended_attributes = operation.extended_attributes
107 is_custom = 'Custom' in extended_attributes
110 call_with = extended_attributes.get('CallWith')
idl_validator.py 55 for name, values_string in node.extended_attributes.iteritems():
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_dependencies.py 148 extended_attributes = {}
157 extended_attributes[name] = value
158 return extended_attributes
161 def generate_constructor_attribute_list(interface_name, extended_attributes):
163 name + '=' + extended_attributes[name]
165 if name in extended_attributes]
177 if 'NamedConstructor' in extended_attributes:
178 named_constructor = extended_attributes['NamedConstructor']
190 value = extended_attributes[name]
199 for filename, extended_attributes in sorted(event_names.iteritems())
    [all...]

Completed in 193 milliseconds