Home | History | Annotate | Download | only in templates

Lines Matching defs:arguments

47     {% if method.arguments %}
62 {% for argument in method.arguments %}
66 {% for argument in method.arguments %}
97 {# Optional arguments without a default value generate an early call with
98 fewer arguments if they are omitted.
99 Optional Dictionary arguments default to empty dictionary. #}
115 Note: for variadic arguments, the type checking is done for each matched
269 {# Length check needed to skip action on legacy calls without enough arguments.
407 {# Otherwise just report "not enough arguments" #}
522 {% for argument in method.arguments %}
525 {% if method.arguments %}
526 v8::Handle<v8::Value> argv[] = { {{method.arguments | join(', ', 'handle')}} };
532 v8::Handle<v8::Value> v8Value = PrivateScriptRunner::runDOMMethod(scriptState, scriptStateInUserScript, "{{cpp_class}}", "{{method.name}}", holder, {{method.arguments | length}}, argv);
573 {% if constructor.arguments %}