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)}};
322 {% macro throw_minimum_arity_type_error(method, number_of_required_arguments) %}
324 throwMinimumArityTypeError(exceptionState, {{number_of_required_arguments}}, info.Length())
326 throwMinimumArityTypeErrorForConstructor("{{interface_name}}", {{number_of_required_arguments}}, info.Length(), info.GetIsolate())
328 throwMinimumArityTypeErrorForMethod("{{method.name}}", "{{interface_name}}", {{number_of_required_arguments}}, info.Length(), info.GetIsolate())
554 {% if constructor.number_of_required_arguments %}
555 if (UNLIKELY(info.Length() < {{constructor.number_of_required_arguments}})) {
556 {{throw_minimum_arity_type_error(constructor, constructor.number_of_required_arguments)}};
    [all...]
interface.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_interface.py 189 'number_of_required_arguments':
190 number_of_required_arguments(constructor),
294 method['number_of_required_arguments'])
884 def number_of_required_arguments(constructor): function
    [all...]
v8_methods.py 158 'number_of_required_arguments': len([

Completed in 4444 milliseconds