HomeSort by relevance Sort by last modified time
    Searched full:number_of_required_arguments (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 11 {% if method.number_of_required_arguments and not method.overload_index %}
12 if (UNLIKELY(info.Length() < {{method.number_of_required_arguments}})) {
13 {{throw_minimum_arity_type_error(method, method.number_of_required_arguments) | indent(8)}}
336 {% macro throw_minimum_arity_type_error(method, number_of_required_arguments) %}
338 setMinimumArityTypeError(exceptionState, {{number_of_required_arguments}}, info.Length());
341 v8SetReturnValue(info, ScriptPromise::rejectRaw(info.GetIsolate(), {{create_minimum_arity_type_error_without_exception_state(method, number_of_required_arguments)}}));
343 V8ThrowException::throwException({{create_minimum_arity_type_error_without_exception_state(method, number_of_required_arguments)}}, info.GetIsolate());
349 {% macro create_minimum_arity_type_error_without_exception_state(method, number_of_required_arguments) %}
351 createMinimumArityTypeErrorForConstructor("{{interface_name}}", {{number_of_required_arguments}}, info.Length(), info.GetIsolate())
353 createMinimumArityTypeErrorForMethod("{{method.name}}", "{{interface_name}}", {{number_of_required_arguments}}, info.Length(), info.GetIsolate()
    [all...]
interface.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_interface.py 217 'number_of_required_arguments':
218 number_of_required_arguments(constructor),
356 method['number_of_required_arguments'])
957 def number_of_required_arguments(constructor): function
    [all...]
v8_methods.py 167 'number_of_required_arguments': len([

Completed in 322 milliseconds