HomeSort by relevance Sort by last modified time
    Searched refs:arguments (Results 526 - 550 of 1463) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/jinja2/_markupsafe/
__init__.py 27 it escapes arguments passed and always returns `Markup`.
54 arguments are passed through the :func:`escape` function:
  /external/chromium_org/v8/src/
arguments.h 36 // Arguments provides access to runtime call parameters.
38 // It uses the fact that the instance fields of Arguments
44 // Object* Runtime_function(Arguments args) {
48 class Arguments BASE_EMBEDDED {
50 Arguments(int length, Object** arguments)
51 : length_(length), arguments_(arguments) { }
75 // Get the total number of arguments including the receiver.
78 Object** arguments() { return arguments_; } function in class:v8::internal::BASE_EMBEDDED
197 // Custom arguments replicate a small segment of stack that can b
    [all...]
  /external/chromium_org/v8/test/mjsunit/
arguments-call-apply.js 30 for (var i = 0; i < arguments.length; i++) {
31 result += arguments[i];
arguments-escape.js 29 var a = arguments;
46 var a = arguments;
extra-arguments.js 34 var array = f.arguments;
42 // Make sure we can pass any number of arguments to f and read them
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-serialized-slots.js 40 var args = Array.prototype.slice.call(arguments, 1);
46 args.concat(Array.prototype.slice.call(arguments, 0)));
  /external/chromium_org/v8/test/mjsunit/regress/
regress-540.js 28 // Test context slot declarations in the arguments object.
45 return arguments[0]();
regress-784.js 29 // form x.apply(y, arguments), does not leave an extra copy of the result
38 A.x.y(B.apply(this, arguments));
regress-crbug-222893.js 39 exec_state.frame(0).evaluate('arguments').value());
50 arguments;
51 debugger; // Arguments object is already materialized.
59 debugger; // Arguments object is not yet materialized.
  /external/chromium_org/v8/test/preparser/
nonstrict-eval.js 40 // Reading eval and arguments is allowed.
41 eval(arguments);
  /external/chromium_org/v8/test/webkit/
dfg-arguments-osr-exit-multiple-blocks-before-exit.js 25 "Tests aliased uses of 'arguments' that require reification of the Arguments object on OSR exit, in the case that there is some interesting control flow prior to the exit."
36 var a = arguments;
dfg-arguments-osr-exit-multiple-blocks.js 25 "Tests aliased uses of 'arguments' that require reification of the Arguments object on OSR exit, in the case that there is some interesting control flow."
34 var a = arguments;
dfg-cfg-simplify-phantom-get-local-on-same-block-set-local.js 36 var a = arguments; // Force arguments to be captured, so that x is captured.
dfg-inline-arguments-use-directly-from-inlined-code.js 25 "This tests that inlining preserves basic function.arguments functionality when said functionality is used directly from within an inlined code block."
29 return foo.arguments;
47 shouldBe("argsToStr(bar(\"a\" + __i, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", b" + __i + ", c" + __i + "\"");
dfg-inline-arguments-use-from-getter.js 25 "This tests that inlining preserves basic function.arguments functionality when said functionality is used from a getter."
33 o.__defineGetter__("f", function(){ return foo.arguments; });
50 shouldBe("argsToStr(bar(o, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: [object Object], b" + __i + ", c" + __i + "\"");
  /external/clang/bindings/python/tests/cindex/
test_cursor.py 248 arguments = list(foo.get_arguments())
250 assert len(arguments) == 2
251 assert arguments[0].spelling == "i"
252 assert arguments[1].spelling == "j"
  /external/e2fsprogs/intl/
printf-args.c 30 printf_fetchargs (va_list args, arguments *a)
  /external/mtpd/
pptp.c 216 static int pptp_connect(char **arguments)
218 create_socket(AF_UNSPEC, SOCK_STREAM, arguments[0], arguments[1]);
400 .arguments = 2,
  /external/v8/test/mjsunit/
arguments-call-apply.js 30 for (var i = 0; i < arguments.length; i++) {
31 result += arguments[i];
arguments-escape.js 29 var a = arguments;
46 var a = arguments;
extra-arguments.js 34 var array = f.arguments;
42 // Make sure we can pass any number of arguments to f and read them
  /external/v8/test/mjsunit/compiler/
regress-serialized-slots.js 40 var args = Array.prototype.slice.call(arguments, 1);
46 args.concat(Array.prototype.slice.call(arguments, 0)));
  /external/v8/test/mjsunit/regress/
regress-540.js 28 // Test context slot declarations in the arguments object.
45 return arguments[0]();
regress-784.js 29 // form x.apply(y, arguments), does not leave an extra copy of the result
38 A.x.y(B.apply(this, arguments));
  /external/v8/test/preparser/
nonstrict-eval.js 40 // Reading eval and arguments is allowed.
41 eval(arguments);

Completed in 668 milliseconds

<<21222324252627282930>>