/external/compiler-rt/test/ubsan/TestCases/Misc/ |
nonnull.cpp | 2 // RUN: %run %t foo 5 __attribute__((returns_nonnull)) char *foo(char *a); 7 char *foo(char *a) { function 14 return foo(argv[1]) == 0;
|
/external/elfutils/tests/ |
run-addr2line-i-demangle-test.sh | 46 foobar inlined at /tmp/x.cpp:15 in foo() 50 foo() function 52 fubar inlined at /tmp/x.cpp:20 in foo() 56 foo() function
|
/external/libcxx/test/std/numerics/complex.number/complex.literals/ |
literals1.fail.cpp | 16 std::complex<float> foo = 1.0if; // should fail w/conversion operator not found local
|
/external/libcxx/test/std/strings/basic.string.literals/ |
literal2.fail.cpp | 16 std::string foo = ""s; // should fail w/conversion operator not found local
|
/external/llvm/test/DebugInfo/Inputs/ |
dwarfdump-line-dwo.cc | 1 struct foo { struct 4 foo f;
|
split-dwarf-test.cc | 1 int foo(int a) { function 6 return foo(argc);
|
/external/llvm/test/MC/AArch64/ |
arm64-arm64-fixup.s | 3 foo: label
|
arm64-branch-encoding.s | 3 foo: label 93 cbz w1, foo 95 cbz x1, foo 97 cbnz w2, foo 99 cbnz x2, foo 113 tbz x1, #3, foo 115 tbnz x1, #63, foo 118 tbz w1, #3, foo 120 tbnz w1, #31, foo
|
/external/llvm/test/MC/ARM/ |
elf-thumbfunc-reloc2.s | 8 foo: label 18 bl foo(PLT) 23 // make sure that bl 0 <foo> (fff7feff) is correctly encoded 32 // CHECK-NEXT: 0x4 R_ARM_THM_CALL foo 0x0 40 // make sure foo is thumb function: bit 0 = 1 43 // CHECK: Name: foo
|
elf-thumbfunc.s | 6 .globl foo 10 .type foo,%function 11 foo: label 15 bar = foo 17 @@ make sure foo and bar are thumb function: bit 0 = 1 (st_value) 26 @CHECK: Name: foo
|
/external/llvm/test/MC/AsmParser/ |
comments-x86-darwin.s | 5 foo: # single hash should be ignored as comment label 6 // CHECK-LABEL: foo:
|
labels.s | 15 foo: label
|
/external/llvm/test/MC/COFF/ |
section-comdat-conflict.s | 11 .global foo 12 foo: label
|
/external/llvm/test/MC/ELF/ |
bad-expr2.s | 5 // CHECK: call foo - bar 8 call foo - bar 9 .section .foo 10 foo: label
|
bad-expr3.s | 6 .long foo - bar 8 foo: label
|
merge.s | 10 jmp foo@PLT 11 movq foo@GOTPCREL, %rax 21 foo: label 28 // CHECK-NEXT: 0x{{[^ ]+}} R_X86_64_PLT32 foo 0x{{[^ ]+}} 29 // CHECK-NEXT: 0x{{[^ ]+}} R_X86_64_GOTPCREL foo 0x{{[^ ]+}}
|
relax.s | 6 .globl foo 7 foo: label 8 .set zed,foo 11 jmp foo 33 // CHECK: Name: foo
|
section.s | 99 foo: label 101 .section .text.foo,"axG",@progbits,foo,comdat 141 .section bar-"foo" 142 .section "foo" 145 // CHECK: Name: bar-"foo" 147 // CHECK: Name: foo
|
size.s | 3 foo: label 5 .size foo, . - bar + 42 8 // CHECK: Name: foo
|
weak-relocation.s | 5 .weak foo 6 foo: label 8 call foo 12 // CHECK-NEXT: 0x1 R_X86_64_PC32 foo 0xFFFFFFFFFFFFFFFC
|
/external/llvm/test/MC/Sparc/ |
sparc-pic.s | 41 .globl foo 43 .type foo,@function 44 foo: label 71 .size foo, .Ltmp7-foo
|
/external/llvm/test/MC/X86/ |
x86_operands.s | 55 foo: label 56 calll foo() 57 # CHECK: calll foo{{$}} 58 calll foo(,) 59 # CHECK: calll foo{{$}}
|
/external/llvm/test/tools/dsymutil/ARM/ |
inlined-low_pc.c | 3 static int foo(int i) { return 42 + i; } function 4 int bar(int a) { return foo(a); } 13 // CHECK-NEXT: DW_AT_abstract_origin{{.*}}"foo"
|
/external/mesa3d/src/glsl/glcpp/tests/ |
002-define-chain.c | 1 #define foo 1 macro 2 #define bar foo
|
003-define-chain-reverse.c | 1 #define bar foo 2 #define foo 1 macro
|