| /external/mesa3d/src/glsl/glcpp/tests/ |
| 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)
|
| /ndk/tests/build/absolute-src-file-paths/src/ |
| foo.c | 1 int foo(int x) { function
|
| /ndk/tests/build/awk-trailing-r/jni/ |
| awk-trailing-r.c | 1 void foo() function
|
| /ndk/tests/build/build-assembly-file/jni/ |
| assembly-mips.S | 3 .ent foo 4 .globl foo 6 foo: label 9 .end foo
|
| assembly-x86.S | 28 .global foo 29 foo: label
|
| assembly1.s | 1 .global foo 2 foo: label
|
| /ndk/tests/build/deprecate-__set_errno/jni/ |
| foo.c | 18 void foo() function
|
| /ndk/tests/build/import-install/jni/ |
| main.c | 3 int foo(int x) function
|