/external/chromium_org/gin/ |
function_template.h | 16 #include "gin/arguments.h" 83 // gin::Arguments object. 92 Arguments* args, 104 Arguments* args, 117 Arguments* args, 128 Arguments* args, 140 Arguments* args, 150 Arguments* args, 161 Arguments* args, 170 Arguments* args [all...] |
/external/chromium_org/v8/test/mjsunit/ |
debug-backtrace.js | 126 json = '{"seq":0,"type":"request","command":"backtrace","arguments":{"fromFrame":1,"toFrame":3}}' 144 json = '{"seq":0,"type":"request","command":"backtrace","arguments":{"fromFrame":0,"toFrame":2, "bottom":true}}' 169 assertEquals(2, frame.arguments.length); 170 assertEquals('x', frame.arguments[0].name); 171 assertEquals('number', response.lookup(frame.arguments[0].value.ref).type); 172 assertEquals(1, response.lookup(frame.arguments[0].value.ref).value); 173 assertEquals('y', frame.arguments[1].name); 174 assertEquals('undefined', response.lookup(frame.arguments[1].value.ref).type); 176 json = '{"seq":0,"type":"request","command":"frame","arguments":{"number":0}}' 183 assertEquals(2, frame.arguments.length) [all...] |
strict-mode.js | 49 for (var i = 0; i < arguments.length; i ++) { 50 args[i] = arguments[i]; 53 args[arguments.length] = ""; 58 args[arguments.length] = "'use strict';"; 95 // Function named 'arguments'. 96 CheckStrictMode("function arguments() {}", SyntaxError); 101 // Function parameter named 'arguments'. 102 CheckStrictMode("function foo(a, b, arguments, c, d) {}", SyntaxError); 107 // Property accessor parameter named 'arguments'. 108 CheckStrictMode("var o = { set foo(arguments) {} }", SyntaxError) [all...] |
/external/v8/test/mjsunit/ |
debug-backtrace.js | 126 json = '{"seq":0,"type":"request","command":"backtrace","arguments":{"fromFrame":1,"toFrame":3}}' 144 json = '{"seq":0,"type":"request","command":"backtrace","arguments":{"fromFrame":0,"toFrame":2, "bottom":true}}' 169 assertEquals(2, frame.arguments.length); 170 assertEquals('x', frame.arguments[0].name); 171 assertEquals('number', response.lookup(frame.arguments[0].value.ref).type); 172 assertEquals(1, response.lookup(frame.arguments[0].value.ref).value); 173 assertEquals('y', frame.arguments[1].name); 174 assertEquals('undefined', response.lookup(frame.arguments[1].value.ref).type); 176 json = '{"seq":0,"type":"request","command":"frame","arguments":{"number":0}}' 183 assertEquals(2, frame.arguments.length) [all...] |
strict-mode.js | 49 for (var i = 0; i < arguments.length; i ++) { 50 args[i] = arguments[i]; 53 args[arguments.length] = ""; 58 args[arguments.length] = "'use strict';"; 95 // Function named 'arguments'. 96 CheckStrictMode("function arguments() {}", SyntaxError); 101 // Function parameter named 'arguments'. 102 CheckStrictMode("function foo(a, b, arguments, c, d) {}", SyntaxError); 107 // Property accessor parameter named 'arguments'. 108 CheckStrictMode("var o = { set foo(arguments) {} }", SyntaxError) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/shl_int_lit8/ |
Test_shl_int_lit8.java | 39 * @title Arguments = 1 & -1 57 * @title Arguments = 0 & -1 65 * @title Arguments = Integer.MAX_VALUE & 1 73 * @title Arguments = Integer.MIN_VALUE & 1 81 * @title Arguments = 1 & 0 105 * @title types of arguments - double & int 118 * @title types of arguments - long & int 131 * @title types of arguments - reference & int
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/ushr_int_lit8/ |
Test_ushr_int_lit8.java | 59 * @title Arguments = 1 & -1 76 * @title Arguments = 0 & -1 84 * @title Arguments = Integer.MAX_VALUE & 1 92 * @title Arguments = Integer.MIN_VALUE & 1 100 * @title Arguments = 1 & 0 111 * @title types of arguments - double, int 124 * @title types of arguments - long, int 137 * @title types of arguments - reference, int
|
/external/chromium_org/chrome_frame/test/data/ |
src_property_host.html | 38 "onload": "return OnChromeFrameLoaded(arguments[0]);", 39 "onloaderror": "return OnNavigationFailed(arguments[0]);"
|
window_close.html | 37 "onload": "return OnChromeFrameLoaded(arguments[0]);", 38 "onloaderror": "return OnNavigationFailed(arguments[0]);",
|
/external/chromium_org/content/test/data/npapi/ |
arguments.html | 15 Tests our ability to pass arguments to the plugin via the embed 20 name="arguments"
|
/external/clang/test/Analysis/ |
method-call-intra-p.cpp | 6 // Test relaxing function call arguments invalidation to be aware of const 7 // arguments. radar://10595327
|
/external/clang/test/CXX/temp/temp.param/ |
p9.cpp | 5 template<typename T = int> // expected-warning{{default template arguments for a function template are a C++11 extension}} 7 template<typename T = int> // expected-warning{{default template arguments for a function template are a C++11 extension}}
|
/external/clang/test/Preprocessor/ |
stringize_misc.c | 11 M( <, [ ) /* Passes the arguments < and [ */ 14 M( (,), (...) ) /* Passes the arguments (,) and (...) */
|
/external/clang/test/Sema/ |
attr-noreturn.c | 16 int f2() __attribute__((noreturn(1, 2))); // expected-error {{'noreturn' attribute takes no arguments}} 44 typedef void (*Fun)(void) __attribute__ ((noreturn(2))); // expected-error {{'noreturn' attribute takes no arguments}}
|
sentinel-attribute.c | 8 void f4(int a, ...) __attribute__ ((sentinel(1, 2, 3))); //expected-error{{attribute takes no more than 2 arguments}} 15 void f6() __attribute__((__sentinel__)); // expected-warning {{'sentinel' attribute requires named arguments}}
|
/external/clang/test/SemaCUDA/ |
kernel-call.cu | 17 g1<<<1>>>(42); // expected-error {{too few execution configuration arguments to kernel function call}} 18 g1<<<1, 1, 0, 0, 0>>>(42); // expected-error {{too many execution configuration arguments to kernel function call}}
|
/external/clang/test/SemaObjC/ |
objc-cstyle-args-in-methods.m | 17 [foo bad:@"One", @"Two"]; // expected-error {{too few arguments to method call}} 19 [foo bad:@"One", @"Two", 3.14, @"Two"]; // expected-error {{too many arguments to method call}}
|
/external/easymock/src/org/easymock/ |
CaptureType.java | 19 * Defines how arguments will be captured by a <tt>Capture</tt> object
40 * Will capture, in order, the arguments of each matching calls
|
/external/llvm/test/CodeGen/ARM/ |
2009-10-30.ll | 2 ; This test checks that the address of the varg arguments is correctly 3 ; computed when there are 5 or more regular arguments.
|
/external/v8/src/ |
checks.cc | 45 va_list arguments; local 46 va_start(arguments, format); 47 i::OS::VPrintError(format, arguments); 48 va_end(arguments); 94 va_list arguments; local 95 va_start(arguments, format); 96 i::OS::VPrintError(format, arguments); 97 va_end(arguments);
|
/ndk/sources/host-tools/make-3.81/tests/scripts/ |
test_template | 9 # arguments to be passed to the make invocation, the third is a string 15 'Arguments to pass to make go here',
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
integral_c_fwd.hpp | 23 // the type of non-type template arguments may not depend on template arguments
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/ |
ptrace.h | 42 /* arguments: non interrupts/non tracing syscalls only save upto here*/ 53 /* end of arguments */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
ptrace.h | 42 /* arguments: non interrupts/non tracing syscalls only save upto here*/ 53 /* end of arguments */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
ptrace.h | 42 /* arguments: non interrupts/non tracing syscalls only save upto here*/ 53 /* end of arguments */
|