/external/llvm-project/llvm/test/Transforms/ConstantMerge/ |
D | unnamed-addr.ll | 5 declare void @zed(%struct.foobar*, %struct.foobar*) 7 %struct.foobar = type { i32 } 9 @test1.x = internal constant %struct.foobar { i32 1 } 10 @test1.y = constant %struct.foobar { i32 1 } 12 @test2.x = internal constant %struct.foobar { i32 2 } 13 @test2.y = unnamed_addr constant %struct.foobar { i32 2 } 15 @test3.x = internal unnamed_addr constant %struct.foobar { i32 3 } 16 @test3.y = constant %struct.foobar { i32 3 } 18 @test4.x = internal unnamed_addr constant %struct.foobar { i32 4 } 19 @test4.y = unnamed_addr constant %struct.foobar { i32 4 } [all …]
|
D | merge-both.ll | 5 declare void @zed(%struct.foobar*, %struct.foobar*) 7 %struct.foobar = type { i32 } 9 @var1 = internal constant %struct.foobar { i32 2 } 10 @var2 = unnamed_addr constant %struct.foobar { i32 2 } 11 @var3 = internal constant %struct.foobar { i32 2 } 12 @var4 = unnamed_addr constant %struct.foobar { i32 2 } 14 ; CHECK: %struct.foobar = type { i32 } 16 ; CHECK: @var2 = constant %struct.foobar { i32 2 } 17 ; CHECK-NEXT: @var4 = constant %struct.foobar { i32 2 } 28 @var4a = alias %struct.foobar, %struct.foobar* @var4 [all …]
|
D | 2011-01-15-EitherOrder.ll | 4 declare i32 @zed(%struct.foobar*, %struct.foobar*) 6 %struct.foobar = type { i32 } 8 @bar.d = unnamed_addr constant %struct.foobar zeroinitializer, align 4 10 @foo.d = internal constant %struct.foobar zeroinitializer, align 4 14 %call2 = tail call i32 @zed(%struct.foobar* @foo.d, %struct.foobar* @bar.d)
|
/external/llvm/test/Transforms/ConstantMerge/ |
D | unnamed-addr.ll | 5 declare void @zed(%struct.foobar*, %struct.foobar*) 7 %struct.foobar = type { i32 } 9 @test1.x = internal constant %struct.foobar { i32 1 } 10 @test1.y = constant %struct.foobar { i32 1 } 12 @test2.x = internal constant %struct.foobar { i32 2 } 13 @test2.y = unnamed_addr constant %struct.foobar { i32 2 } 15 @test3.x = internal unnamed_addr constant %struct.foobar { i32 3 } 16 @test3.y = constant %struct.foobar { i32 3 } 18 @test4.x = internal unnamed_addr constant %struct.foobar { i32 4 } 19 @test4.y = unnamed_addr constant %struct.foobar { i32 4 } [all …]
|
D | merge-both.ll | 5 declare void @zed(%struct.foobar*, %struct.foobar*) 7 %struct.foobar = type { i32 } 9 @var1 = internal constant %struct.foobar { i32 2 } 10 @var2 = unnamed_addr constant %struct.foobar { i32 2 } 11 @var3 = internal constant %struct.foobar { i32 2 } 12 @var4 = unnamed_addr constant %struct.foobar { i32 2 } 14 ; CHECK: %struct.foobar = type { i32 } 16 ; CHECK: @var2 = constant %struct.foobar { i32 2 } 17 ; CHECK-NEXT: @var4 = constant %struct.foobar { i32 2 } 28 @var4a = alias %struct.foobar, %struct.foobar* @var4 [all …]
|
D | 2011-01-15-EitherOrder.ll | 4 declare i32 @zed(%struct.foobar*, %struct.foobar*) 6 %struct.foobar = type { i32 } 8 @bar.d = unnamed_addr constant %struct.foobar zeroinitializer, align 4 10 @foo.d = internal constant %struct.foobar zeroinitializer, align 4 14 %call2 = tail call i32 @zed(%struct.foobar* @foo.d, %struct.foobar* @bar.d)
|
/external/llvm-project/lldb/test/Shell/BuildScript/ |
D | modes.test | 1 RUN: %build -n --verbose --arch=32 --mode=compile --compiler=any -o %t/foo.out foobar.c \ 7 RUN: %build -n --verbose --arch=32 --mode=link --compiler=any -o %t/foo.exe foobar.obj \ 10 RUN: %build -n --verbose --arch=32 --mode=link --compiler=any -o %t/foobar.exe foo.obj bar.obj \ 13 RUN: %build -n --verbose --arch=32 --mode=compile-and-link --compiler=any -o %t/foobar.exe foobar.c… 16 RUN: %build -n --verbose --arch=32 --mode=compile-and-link --compiler=any -o %t/foobar.exe foo.c ba… 20 COMPILE: compiling foobar.c -> foo.out 26 LINK: linking foobar.obj -> foo.exe 28 LINK-MULTI: linking foo.obj+bar.obj -> foobar.exe 30 BOTH: compiling foobar.c -> [[OBJFOO:foobar.exe-foobar.o(bj)?]] 31 BOTH: linking [[OBJFOO]] -> foobar.exe [all …]
|
D | toolchain-clang.test | 1 RUN: %build -n --verbose --arch=32 --compiler=clang --mode=compile-and-link -o %t/foo.exe foobar.c \ 4 RUN: %build -n --verbose --arch=64 --compiler=clang --mode=compile-and-link -o %t/foo.exe foobar.c \ 7 CHECK: Cleaning {{.*}}toolchain-clang.test.tmp{{.}}foo.exe-foobar.o 9 CHECK: compiling foobar.c -> foo.exe-foobar.o 10 CHECK-32: {{.*}}clang++{{(.exe)?}} -m32 -g -O0 -c -o {{.*}}foo.exe-foobar.o {{.*}}foobar.c 11 CHECK-64: {{.*}}clang++{{(.exe)?}} -m64 -g -O0 -c -o {{.*}}foo.exe-foobar.o {{.*}}foobar.c 12 CHECK: linking foo.exe-foobar.o -> foo.exe 13 … {{.*}}clang++{{(.exe)?}} -m32 {{(-L.* )?(-Wl,-rpath,.* )?}}-o {{.*}}foo.exe {{.*}}foo.exe-foobar.o 14 … {{.*}}clang++{{(.exe)?}} -m64 {{(-L.* )?(-Wl,-rpath,.* )?}}-o {{.*}}foo.exe {{.*}}foo.exe-foobar.o
|
D | toolchain-clang-cl.test | 3 RUN: %build -n --verbose --arch=32 --compiler=clang-cl --mode=compile-and-link -o %t/foo.exe foobar… 6 RUN: %build -n --verbose --arch=64 --compiler=clang-cl --mode=compile-and-link -o %t/foo.exe foobar… 20 CHECK-32: Inputs: foobar.c 21 CHECK-32: Cleaning {{.*}}toolchain-clang-cl.test.tmp{{.}}foobar.ilk 22 CHECK-32: Cleaning {{.*}}toolchain-clang-cl.test.tmp{{.}}foo.exe-foobar.obj 25 CHECK-32: compiling foobar.c -> foo.exe-foobar.obj 27 CHECK-32: linking foo.exe-foobar.obj -> foo.exe 41 CHECK-64: Inputs: foobar.c 42 CHECK-64: Cleaning {{.*}}toolchain-clang-cl.test.tmp{{.}}foobar.ilk 43 CHECK-64: Cleaning {{.*}}toolchain-clang-cl.test.tmp{{.}}foo.exe-foobar.obj [all …]
|
D | toolchain-msvc.test | 3 RUN: %build -n --verbose --arch=32 --compiler=msvc --mode=compile-and-link -o %t/foo.exe foobar.c \ 6 RUN: %build -n --verbose --arch=64 --compiler=msvc --mode=compile-and-link -o %t/foo.exe foobar.c \ 20 X86: Inputs: foobar.c 21 X86: Cleaning {{.*}}toolchain-msvc.test.tmp\foobar.ilk 22 X86: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.exe-foobar.obj 25 X86: compiling foobar.c -> foo.exe-foobar.obj 27 X86: linking foo.exe-foobar.obj -> foo.exe 48 X64: Inputs: foobar.c 49 X64: Cleaning {{.*}}toolchain-msvc.test.tmp\foobar.ilk 50 X64: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.exe-foobar.obj [all …]
|
/external/iptables/extensions/ |
D | libebt_standard.t | 13 -i foobar;=;OK 14 -o foobar;=;FAIL 16 -i foobar;=;OK 17 -o foobar;=;OK 19 -i foobar;=;FAIL 20 -o foobar;=;OK 23 -i foobar;=;OK 24 -o foobar;=;FAIL 27 -i foobar;=;FAIL 28 -o foobar;=;OK
|
/external/llvm-project/lldb/test/API/python_api/sbdata/ |
D | main.cpp | 18 foo* foobar = new foo[2]; in main() local 20 foobar[0].a = 1; in main() 21 foobar[0].b = 9; in main() 23 foobar[1].a = 8; in main() 24 foobar[1].b = 5; in main() 26 foobar[1].b = 7; // set breakpoint here in main() 28 foobar[1].c = 6.28; in main() 32 delete[] foobar; in main()
|
/external/llvm/test/Assembler/ |
D | unnamed-addr.ll | 4 %struct.foobar = type { i32 } 6 @bar.d = internal unnamed_addr constant %struct.foobar zeroinitializer, align 4 7 @foo.d = internal constant %struct.foobar zeroinitializer, align 4 11 %call2 = tail call i32 @zed(%struct.foobar* @foo.d, %struct.foobar* @bar.d) nounwind 15 declare i32 @zed(%struct.foobar*, %struct.foobar*) 17 ; CHECK: @bar.d = internal unnamed_addr constant %struct.foobar zeroinitializer, align 4 18 ; CHECK: @foo.d = internal constant %struct.foobar zeroinitializer, align 4
|
/external/llvm-project/llvm/test/Assembler/ |
D | unnamed-addr.ll | 4 %struct.foobar = type { i32 } 6 @bar.d = internal unnamed_addr constant %struct.foobar zeroinitializer, align 4 7 @foo.d = internal constant %struct.foobar zeroinitializer, align 4 11 %call2 = tail call i32 @zed(%struct.foobar* @foo.d, %struct.foobar* @bar.d) nounwind 15 declare i32 @zed(%struct.foobar*, %struct.foobar*) 17 ; CHECK: @bar.d = internal unnamed_addr constant %struct.foobar zeroinitializer, align 4 18 ; CHECK: @foo.d = internal constant %struct.foobar zeroinitializer, align 4
|
/external/elfutils/tests/ |
D | run-addr2line-i-test.sh | 107 foobar 109 foobar 115 foobar inlined at /tmp/x.cpp:15 in _Z3barv 123 foobar inlined at /tmp/x.cpp:15 in _Z3foov 141 foobar inlined at /tmp/x.cpp:33 in _Z2fuv 150 foobar 153 foobar 162 foobar inlined at /tmp/x.cpp:15 in _Z3barv 172 foobar inlined at /tmp/x.cpp:15 in _Z3foov 194 foobar inlined at /tmp/x.cpp:33 in _Z2fuv [all …]
|
/external/libxml2/result/ |
D | att5.sax | 20 SAX.startElement(norm, attr=' foobar') 28 SAX.startElement(norm, attr='foobar ') 40 SAX.startElement(norm, attr=' foobar&') 48 SAX.startElement(norm, attr='foobar &') 60 SAX.startElement(norm, attr=' foobar<') 68 SAX.startElement(norm, attr='foobar <') 88 SAX.startElement(normId, attr=' foobar') 96 SAX.startElement(normId, attr='foobar ') 108 SAX.startElement(normId, attr=' foobar&') 116 SAX.startElement(normId, attr='foobar &') [all …]
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | ctor-dtor-alias.cpp | 31 struct foobar { struct 32 foobar() {} in foobar() argument 33 virtual ~foobar() {} in ~foobar() argument 36 template struct foobar<void>; variable 47 template <typename T> struct foobar { struct 48 foobar() { g(); } in foobar() function 50 foobar<void> x;
|
/external/clang/test/CodeGenCXX/ |
D | ctor-dtor-alias.cpp | 31 struct foobar { struct 32 foobar() {} in foobar() argument 33 virtual ~foobar() {} in ~foobar() argument 36 template struct foobar<void>; variable 47 template <typename T> struct foobar { struct 48 foobar() { g(); } in foobar() argument 50 foobar<void> x;
|
/external/llvm-project/lldb/test/Shell/ScriptInterpreter/Lua/Inputs/ |
D | independent_state.in | 1 script foobar = 40 + 7 2 script print(foobar) 4 script d:HandleCommand("script foobar = 40 + 2") 5 script print(foobar) 6 script d:HandleCommand("script print(foobar)")
|
/external/llvm-project/llvm/test/MC/ELF/ |
D | strtab-suffix-opt.s | 4 .globl foobar symbol 6 .type foobar,@function 7 foobar: label 17 .size foobar, .Ltmp3-foobar
|
/external/llvm/test/MC/ELF/ |
D | strtab-suffix-opt.s | 4 .globl foobar symbol 6 .type foobar,@function 7 foobar: label 17 .size foobar, .Ltmp3-foobar
|
/external/llvm-project/lld/test/ELF/ |
D | invalid-dynamic-list.test | 5 # RUN: echo 'foobar' > %t1 7 # ERR1: {{.*}}:1: { expected, but got foobar 9 # RUN: echo '{ foobar;' > %t2 14 # RUN: echo '{ foobar }' > %t3 19 # RUN: echo '{ foobar; }' > %t4 23 ## Missing " in foobar definition 24 # RUN: echo '{ "foobar; };' > %t5
|
/external/llvm/test/CodeGen/Generic/ |
D | zero-sized-array.ll | 5 %foobar = type { i32, %zero } 7 define void @f(%foobar %arg) { 8 %arg1 = extractvalue %foobar %arg, 0 9 %arg2 = extractvalue %foobar %arg, 1 24 insertvalue %foobar undef, %zero %z, 1 28 define void @f5(%foobar %x) { 30 %y = extractvalue %foobar %x, 1 34 %insert120 = insertvalue %foobar undef, %zero %y, 1
|
/external/llvm-project/llvm/test/CodeGen/Generic/ |
D | zero-sized-array.ll | 5 %foobar = type { i32, %zero } 7 define void @f(%foobar %arg) { 8 %arg1 = extractvalue %foobar %arg, 0 9 %arg2 = extractvalue %foobar %arg, 1 24 insertvalue %foobar undef, %zero %z, 1 28 define void @f5(%foobar %x) { 30 %y = extractvalue %foobar %x, 1 34 %insert120 = insertvalue %foobar undef, %zero %y, 1
|
/external/python/cpython2/Doc/distutils/ |
D | examples.rst | 61 setup(name='foobar', 86 setup(name='foobar', 105 setup(name='foobar', 113 modules belong in package :mod:`foobar`, one way to layout your source tree is 118 foobar/ 127 setup(name='foobar', 129 packages=['foobar'], 134 :file:`src` directory holds modules in the :mod:`foobar` package:: 146 setup(name='foobar', 148 package_dir={'foobar': 'src'}, [all …]
|