| /external/mesa3d/src/glsl/glcpp/tests/ |
| 011-define-func-empty.c | 1 #define foo() macro 2 foo()
|
| 012-define-func-no-args.c | 1 #define foo() bar macro 2 foo()
|
| 013-define-func-1-arg-unused.c | 1 #define foo(x) 1 macro 2 foo(bar)
|
| 014-define-func-2-arg-unused.c | 1 #define foo(x,y) 1 macro 2 foo(bar,baz)
|
| 016-define-func-1-arg.c | 1 #define foo(x) ((x)+1) macro 2 foo(bar)
|
| 017-define-func-2-args.c | 1 #define foo(x,y) ((x)*(y)) macro 2 foo(bar,baz)
|
| 019-define-func-1-arg-multi.c | 1 #define foo(x) (x) macro 2 foo(this is more than one word)
|
| 020-define-func-2-arg-multi.c | 1 #define foo(x,y) x,two fish,red fish,y macro 2 foo(one fish, blue fish)
|
| 022-define-func-arg-with-parens.c | 1 #define foo(x) (x) macro 2 foo(argument(including parens)for the win)
|
| 025-func-macro-as-non-macro.c | 1 #define foo(bar) bar macro 2 foo bar
|
| 026-define-func-extra-newlines.c | 1 #define foo(a) bar macro 3 foo
|
| 032-define-func-self-recurse.c | 1 #define foo(a) foo(2*(a)) macro 2 foo(3)
|
| 033-define-func-self-compose.c | 1 #define foo(a) foo(2*(a)) macro 2 foo(foo(3))
|
| 034-define-func-self-compose-non-func.c | 1 #define foo(bar) bar macro 2 foo(foo)
|
| 035-define-func-self-compose-non-func-multi-token-argument.c | 1 #define foo(bar) bar macro 2 foo(1+foo)
|
| 038-func-arg-with-commas.c | 1 #define foo(x) success macro 2 foo(argument (with,embedded , commas) -- tricky)
|
| 050-if-defined.c | 1 #if defined foo 6 #define foo macro 7 #if defined foo 12 #undef foo macro 13 #if defined foo
|
| 062-if-0-skips-garbage.c | 1 #define foo(a,b) macro 3 foo(bar) 4 foo(
|
| 065-if-defined-parens.c | 1 #if defined(foo) 6 #define foo macro 7 #if defined ( foo ) 12 #undef foo macro 13 #if defined (foo)
|
| /external/v8/test/message/ |
| arrow-missing.js | 7 function foo() { return(); } function
|
| formal-parameters-bad-rest.js | 7 function foo(...b, a) { return a } function
|
| formal-parameters-strict-body.js | 5 function foo(b, eval) { "use strict"; return b } function
|
| formal-parameters-trailing-comma.js | 5 function foo(b, a, a,) { return a } function
|
| non-use-strict-hex-escape.js | 31 function foo() { function
|
| non-use-strict-octal-escape.js | 31 function foo() { function
|