HomeSort by relevance Sort by last modified time
    Searched full:arguments (Results 251 - 275 of 11668) sorted by null

<<11121314151617181920>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-3185905.js 29 var a = arguments.callee;
37 var a = arguments.callee;
45 var a = arguments.callee;
53 var arguments = { 0 : 3, 'x' : 4 };
57 assertEquals(3, arguments[0])
58 assertEquals(4, arguments['x'])
regress-crbug-163530.js 30 // Test materialization of an arguments object with unknown argument
37 assertSame(0, arguments.length);
42 assertSame(0, arguments.length);
44 return arguments.length;
56 // Test materialization of an arguments object with unknown argument
64 assertSame(0, arguments.length);
69 assertSame(8, arguments.length);
71 return arguments.length;
  /external/chromium_org/v8/test/webkit/
call-apply-crash.js 28 Function.prototype.call.apply(testLog, arguments);
29 })('Did not crash using apply', 0, 0); // needs 3+ arguments
31 arguments; // reify the arguments object.
32 Function.prototype.call.apply(testLog, arguments);
33 })('Did not crash using apply', 0, 0); // needs 3+ arguments
dfg-arguments-alias-one-block-overwrite-arguments.js 25 "Tests that if you alias the arguments in a very small function, arguments simplification still works even if you overwrite the arguments register."
29 var args = arguments;
30 arguments = [1, 2, 3];
31 return args[0] + arguments[1] + args[2];
  /external/v8/test/mjsunit/regress/
regress-3185905.js 29 var a = arguments.callee;
37 var a = arguments.callee;
45 var a = arguments.callee;
53 var arguments = { 0 : 3, 'x' : 4 };
57 assertEquals(3, arguments[0])
58 assertEquals(4, arguments['x'])
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/xor_int/
Test_xor_int.java 26 * @title Arguments = 15, 8
34 * @title Arguments = 0xfffffff8, 0xfffffff1
42 * @title Arguments = 0xcafe, -1
50 * @title Arguments = 0, -1
58 * @title Arguments = Integer.MAX_VALUE, Integer.MIN_VALUE
69 * @title types of arguments - long, int
82 * @title types of arguments - reference, int
109 * @title Types of arguments - int, float. The verifier checks that ints
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/xor_int_2addr/
Test_xor_int_2addr.java 26 * @title Arguments = 15, 8
34 * @title Arguments = 0xfffffff8, 0xfffffff1
42 * @title Arguments = 0xcafe, -1
50 * @title Arguments = 0, -1
58 * @title Arguments = Integer.MAX_VALUE, Integer.MIN_VALUE
69 * @title types of arguments - long, int
82 * @title types of arguments - reference, int
108 * @title Types of arguments - int, float. The verifier checks that ints
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t053heteroTP13.g 9 V.superclass.constructor.apply(this, arguments);
18 W.superclass.constructor.apply(this, arguments);
t053heteroTP14.g 9 V.superclass.constructor.apply(this, arguments);
18 W.superclass.constructor.apply(this, arguments);
  /external/chromium_org/chrome/test/functional/ispy/client/
wait_on_ajax.js 6 var callback = arguments[arguments.length - 1]
  /external/clang/examples/clang-interpreter/
README.txt 5 1. Parsing standard compiler command line arguments using the Driver library.
7 2. Constructing a Clang compiler instance, using the appropriate arguments
  /external/clang/test/Frontend/
warning-options.cpp 1 // RUN: %clang_cc1 -Wmonkey -Wno-monkey -Wno-unused-command-line-arguments \
5 // CHECK: unknown warning option '-Wno-unused-command-line-arguments'; did you mean '-Wno-unused-command-line-argument'?
  /external/llvm/test/CodeGen/X86/
fsxor-alignment.ll 4 ; Don't fold the incoming stack arguments into the xorps instructions used
5 ; to do floating-point negations, because the arguments aren't vectors
  /external/chromium_org/v8/test/mjsunit/
array-slice.js 50 // Check various forms of arguments omission.
89 // More than 2 arguments:
118 // performing ToInteger on arguments.
222 // Check slicing on arguments object.
225 assertEquals(expected, Array.prototype.slice.call(arguments, 1));
235 // Check slicing on arguments object when missing arguments get assigined.
238 assertEquals(1, arguments.length);
241 assertEquals(1, arguments.length); // arguments length is the same
    [all...]
  /external/v8/src/
d8.h 302 static Handle<Value> Print(const Arguments& args);
303 static Handle<Value> Write(const Arguments& args);
304 static Handle<Value> Yield(const Arguments& args);
305 static Handle<Value> Quit(const Arguments& args);
306 static Handle<Value> Version(const Arguments& args);
307 static Handle<Value> EnableProfiler(const Arguments& args);
308 static Handle<Value> DisableProfiler(const Arguments& args);
309 static Handle<Value> Read(const Arguments& args);
310 static Handle<Value> ReadBinary(const Arguments& args);
312 static Handle<Value> ReadLine(const Arguments& args)
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sub_float/
Test_sub_float.java 28 * @title Arguments = 2.7f, 3.14f
36 * @title Arguments = 0, -3.14f
52 * @title Arguments = Float.MAX_VALUE, Float.NaN
60 * @title Arguments = Float.POSITIVE_INFINITY,
70 * @title Arguments = Float.POSITIVE_INFINITY,
80 * @title Arguments = Float.POSITIVE_INFINITY, -2.7f
89 * @title Arguments = +0, -0f
97 * @title Arguments = -0f, -0f
105 * @title Arguments = +0f, +0f
113 * @title Arguments = 2.7f, 2.7
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sub_float_2addr/
Test_sub_float_2addr.java 26 * @title Arguments = 2.7f, 3.14f
34 * @title Arguments = 0, -3.14f
50 * @title Arguments = Float.MAX_VALUE, Float.NaN
58 * @title Arguments = Float.POSITIVE_INFINITY,
68 * @title Arguments = Float.POSITIVE_INFINITY,
78 * @title Arguments = Float.POSITIVE_INFINITY, -2.7f
87 * @title Arguments = +0, -0f
95 * @title Arguments = -0f, -0f
103 * @title Arguments = +0f, +0f
111 * @title Arguments = 2.7f, 2.7
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sub_int/
Test_sub_int.java 27 * @title Arguments = 8, 4
35 * @title Arguments = 0, 255
43 * @title Arguments = 0, -65536
51 * @title Arguments = 0, -2147483647
59 * @title Arguments = 0, Integer.MAX_VALUE
67 * @title Arguments = Integer.MAX_VALUE, Integer.MAX_VALUE
75 * @title Arguments = Integer.MAX_VALUE, -1
83 * @title Arguments = Integer.MIN_VALUE, 1
91 * @title Arguments = 0, 0
99 * @title Arguments = 0, -Integer.MIN_VALU
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sub_int_2addr/
Test_sub_int_2addr.java 26 * @title Arguments = 8, 4
34 * @title Arguments = 0, 255
42 * @title Arguments = 0, -65536
50 * @title Arguments = 0, -2147483647
58 * @title Arguments = 0, Integer.MAX_VALUE
66 * @title Arguments = Integer.MAX_VALUE, Integer.MAX_VALUE
74 * @title Arguments = Integer.MAX_VALUE, -1
82 * @title Arguments = Integer.MIN_VALUE, 1
90 * @title Arguments = 0, 0
98 * @title Arguments = 0, -Integer.MIN_VALU
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 28 * argument slots, slots for several literal-value arguments, and slots for
42 * Clears the regular and auxiliary arguments area.
48 * and store them in the arguments area, indicating that there are now
49 * that many arguments. Also, clear the auxiliary arguments.
60 * element of the stack), and store them in the arguments area,
61 * indicating that there are now that many arguments. Also, clear
62 * the auxiliary arguments.
65 * @param prototype {@code non-null;} prototype indicating arguments to pop
71 * in the arguments area, indicating that there are now that man
    [all...]
  /cts/tools/signature-tools/src/signature/model/
IParameterizedType.java 23 * instantiates a generic class definition with actual type arguments.
30 * IParameterizedType (raw type: A , type arguments: Number)
38 * Returns the actual type arguments of this parameterized type.
40 * @return the actual type arguments of this parameterized type
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_double/
Test_add_double.java 27 * @title Arguments = 2.7d, 3.14d
35 * @title Arguments = 0, -3.14d
43 * @title Arguments = -3.14d, -2.7d
53 * @title Arguments = Double.MAX_VALUE, Double.NaN
61 * @title Arguments = Double.POSITIVE_INFINITY,
71 * @title Arguments = Double.POSITIVE_INFINITY,
81 * @title Arguments = Double.POSITIVE_INFINITY, -2.7d
90 * @title Arguments = +0, -0
98 * @title Arguments = -0d, -0d
106 * @title Arguments = -2.7d, 2.7
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_double_2addr/
Test_add_double_2addr.java 26 * @title Arguments = 2.7d, 3.14d
34 * @title Arguments = 0, -3.14d
42 * @title Arguments = -3.14d, -2.7d
50 * @title Arguments = Double.MAX_VALUE, Double.NaN
58 * @title Arguments = Double.POSITIVE_INFINITY,
68 * @title Arguments = Double.POSITIVE_INFINITY,
78 * @title Arguments = Double.POSITIVE_INFINITY, -2.7d
87 * @title Arguments = +0, -0
95 * @title Arguments = -0d, -0d
103 * @title Arguments = -2.7d, 2.7
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_float/
Test_add_float.java 26 * @title Arguments = 2.7f, 3.14f
34 * @title Arguments = 0, -3.14f
42 * @title Arguments = -3.14f, -2.7f
50 * @title Arguments = Float.MAX_VALUE, Float.NaN
58 * @title Arguments = Float.POSITIVE_INFINITY,
68 * @title Arguments = Float.POSITIVE_INFINITY,
78 * @title Arguments = Float.POSITIVE_INFINITY, -2.7f
87 * @title Arguments = +0, -0f
95 * @title Arguments = -0f, -0f
103 * @title Arguments = -2.7f, 2.7
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_float_2addr/
Test_add_float_2addr.java 26 * @title Arguments = 2.7f, 3.14f
34 * @title Arguments = 0, -3.14f
42 * @title Arguments = -3.14f, -2.7f
50 * @title Arguments = Float.MAX_VALUE, Float.NaN
58 * @title Arguments = Float.POSITIVE_INFINITY,
68 * @title Arguments = Float.POSITIVE_INFINITY,
78 * @title Arguments = Float.POSITIVE_INFINITY, -2.7f
87 * @title Arguments = +0, -0f
95 * @title Arguments = -0f, -0f
103 * @title Arguments = -2.7f, 2.7
    [all...]

Completed in 1320 milliseconds

<<11121314151617181920>>