/external/chromium_org/v8/test/mjsunit/ |
string-natives.js | 30 function test() { function 76 test(); 77 test(); 78 %OptimizeFunctionOnNextCall(test); 79 test();
|
string-replace-with-empty.js | 30 function test() { function 61 test();
|
typeof.js | 36 function test(x, y) { return x == y; } function 37 assertTrue(test('object', typeof r));
|
/external/chromium_org/v8/test/webkit/fast/js/ |
numeric-escapes-in-string-literals.js | 25 "Test numeric escapes in string literals - https://bugs.webkit.org/show_bug.cgi?id=51724" 28 function test(_stringLiteral, _nonStrictResult, _strictResult) function 45 test("\\0", "\x00", "\x00"); 46 test("\\1", "\x01"); 47 test("\\7", "\x07"); 48 test("\\8", "8"); 49 test("\\9", "9"); 53 test("\\00", "\x00"); 54 test("\\000", "\x00"); 55 test("\\0000", "\x000") [all...] |
/external/chromium_org/v8/test/webkit/ |
for-in-to-text.js | 28 function test() { function 34 shouldBeTrue("test.toString().match('for *[(]j *in *index[)]') != null");
|
regexp-negative-special-characters.js | 25 "This test checks Unicode in negative RegExp character classes." 28 function test(pattern, str, expected_length) { function 38 test("\\s", " \\t\\f\\v\\r\\n", 0); // ASCII whitespace. 39 test("\\S", "????????", 0); // Cyrillic letters are non-whitespace... 40 test("\\s", "????????", 8); // ...and they aren't whitespace. 41 test("[\\s]", "????????", 8); 42 test("[\\S]", "????????", 0); 43 test("[^\\s]", "????????", 0); 44 test("[^\\S]", "????????", 8); 45 test("[\\s\\S]*", "\\u2002????????\\r\\n\\u00a0", 0) [all...] |
sort-non-numbers.js | 26 var test = [ "2", "1", "3" ]; variable 27 test.sort(function (v1, v2) { 31 shouldBe("String(test)", "'1,2,3'");
|
var-shadows-arg-crash.js | 29 function test(a) { function 36 shouldBe('test()()', '"success"');
|
/external/clang/test/Analysis/ |
builtin-functions.cpp | 5 void test(int x) { function
|
/external/clang/test/CodeCompletion/ |
call.c | 2 // matter in this test. 5 void test() { function
|
functions.cpp | 4 void test() { function
|
/external/clang/test/CodeGen/ |
2002-03-11-LargeCharInString.c | 5 int test(char *X) { function
|
2003-06-29-MultipleFunctionDefinition.c | 5 extern __inline__ void test() { } function 7 void test() { function
|
2003-07-22-ArrayAccessTypeSafety.c | 4 void test(int* array, long long N) { function
|
2003-08-17-DeadCodeShortCircuit.c | 3 int test(_Bool pos, _Bool color) { function
|
2003-08-20-vfork-bug.c | 4 test() { function
|
2003-11-13-TypeSafety.c | 3 int *test(int *X, int Y) { function
|
2004-03-07-ComplexDivEquals.c | 4 void test(__complex__ double D, double X) { function
|
2004-05-21-IncompleteEnum.c | 3 void test(enum foo *X) { function
|
2006-01-13-Includes.c | 6 void test() { function 10 // CHECK: test{{[\\/]}}CodeGen
|
2010-05-26-AsmSideEffect.c | 5 int test (void *src) { function
|
bool-init.c | 4 _Bool test = &test; variable
|
exact-div-expr.c | 4 long long test(int *A, int *B) { function
|
int-to-pointer.c | 3 void *test(int i) function
|
sanitize-recover.c | 5 // RECOVER: @test 6 // ABORT: @test 7 void test() { function
|