Home
last modified time | relevance | path

Searched refs:has_extended_attribute_value (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
Dv8_methods.py42 from v8_utilities import has_extended_attribute_value
58 return (has_extended_attribute_value(method, 'CallWith', 'ScriptState') or
91 …is_call_with_script_arguments = has_extended_attribute_value(method, 'CallWith', 'ScriptArguments')
95 is_call_with_script_state = has_extended_attribute_value(method, 'CallWith', 'ScriptState')
108 has_extended_attribute_value(interface, 'CheckSecurity', 'Frame') and
112 has_extended_attribute_value(interface, 'CheckSecurity', 'Window') and
145 …'is_call_with_execution_context': has_extended_attribute_value(method, 'CallWith', 'ExecutionConte…
213 (has_extended_attribute_value(interface, 'TypeChecking', 'Interface') or
214 has_extended_attribute_value(method, 'TypeChecking', 'Interface')) and
217 (has_extended_attribute_value(interface, 'TypeChecking', 'Unrestricted') or
[all …]
Dv8_attributes.py42 has_extended_attribute_value, scoped_name, strip_suffix,
67 (has_extended_attribute_value(interface, 'TypeChecking', 'Unrestricted') or
68 has_extended_attribute_value(attribute, 'TypeChecking', 'Unrestricted')) and
105 …'is_call_with_execution_context': v8_utilities.has_extended_attribute_value(attribute, 'CallWith',…
106 …'is_call_with_script_state': v8_utilities.has_extended_attribute_value(attribute, 'CallWith', 'Scr…
322 (has_extended_attribute_value(interface, 'TypeChecking', 'Interface') or
323 has_extended_attribute_value(attribute, 'TypeChecking', 'Interface')) and
332 'is_setter_call_with_execution_context': v8_utilities.has_extended_attribute_value(
Dv8_interface.py50 has_extended_attribute_value, runtime_enabled_function_name,
155 has_extended_attribute_value(interface, 'Custom', 'VisitDOMWrapper') or
171 …'has_custom_legacy_call_as_function': has_extended_attribute_value(interface, 'Custom', 'LegacyCal…
172 … 'has_custom_to_v8': has_extended_attribute_value(interface, 'Custom', 'ToV8'), # [Custom=ToV8]
173 … 'has_custom_wrap': has_extended_attribute_value(interface, 'Custom', 'Wrap'), # [Custom=Wrap]
925 has_extended_attribute_value(interface,
929 has_extended_attribute_value(interface,
1012 has_extended_attribute_value(getter, 'Custom', 'PropertyGetter')),
1013 'is_custom_property_enumerator': has_extended_attribute_value(
1015 'is_custom_property_query': has_extended_attribute_value(
[all …]
Dv8_utilities.py72 def has_extended_attribute_value(definition_or_member, name, value): function