/external/llvm/test/MC/ELF/ |
D | relax-arith.s | 16 imul $foo, %bx, %bx 17 imul $foo, bar, %bx 18 imul $foo, %ebx, %ebx 19 imul $foo, bar, %ebx 20 imul $foo, %rbx, %rbx 21 imul $foo, bar, %rbx 32 and $foo, %bx 33 andw $foo, bar 34 and $foo, %ebx 35 andl $foo, bar [all …]
|
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
D | F_nullptr.pass.cpp | 64 int foo() { return 42; } in foo() function 65 int foo(int) { return 42; } in foo() function 66 int foo(int, int) { return 42; } in foo() function 67 int foo(int, int, int) { return 42; } in foo() function 69 int foo(...) { return 42; } in foo() function 70 int foo(int, ...) { return 42; } in foo() function 71 int foo(int, int, ...) { return 42; } in foo() function 72 int foo(int, int, int, ...) { return 42; } in foo() function 76 int foo() { return 42; } in foo() function 77 int foo() const { return 42; } in foo() function [all …]
|
/external/llvm/test/MC/SystemZ/ |
D | tokens.s | 5 #CHECK: foo 100, 200 7 #CHECK: foo 100(, 200 9 #CHECK: foo 100(200), 300 11 #CHECK: foo 100(200,), 300 13 #CHECK: foo 100(200,%r0), 300 15 #CHECK: foo 100(200,%r1), 300 17 #CHECK: foo 100(%a0), 200 19 #CHECK: foo 100(%r0), 200 21 #CHECK: foo 100(%v1,%r0), 200 23 #CHECK: foo 100(%v0,%r1), 200 [all …]
|
/external/clang/test/Analysis/ |
D | range_casts.c | 6 void f1(long foo) in f1() argument 9 if (index < foo) index = foo; in f1() 16 void f2(unsigned long foo) in f2() argument 19 if (index < foo) index = foo; // index equals ULONG_MAX in f2() 26 void f3(unsigned long foo) in f3() argument 29 if (index < foo) index = foo; in f3() 36 void f4(long foo) in f4() argument 39 if (index < foo) index = foo; in f4() 46 void f5(long foo) in f5() argument 49 if (index < foo) index = foo; in f5() [all …]
|
/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | Casting.cpp | 24 struct foo *baz(); 25 struct foo *caz(); 26 struct foo *daz(); 27 struct foo *naz(); 31 struct foo { struct 39 template <> struct isa_impl<foo, bar> { 46 foo *bar::baz() { in baz() 47 return cast<foo>(this); in baz() 50 foo *bar::caz() { in caz() 51 return cast_or_null<foo>(this); in caz() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | visibility.cpp | 41 class DEFAULT foo { class 43 foo myvec; 62 struct foo { struct 66 int foo<T>::bar; 67 template struct foo<int>; variable 76 struct HIDDEN foo {}; struct 77 extern foo bar; 78 foo *zed() { in zed() 89 struct HIDDEN foo { struct 91 DEFAULT foo x; [all …]
|
D | vtable-key-function-arm.cpp | 22 virtual inline void foo(); 32 void Test0a::foo() {} in foo() function in Test0a 38 virtual inline void foo(); 43 void Test0b::foo() {} in foo() function in Test0b 54 virtual void foo(); 64 inline void Test1a::foo() {} in foo() function in Test1a 70 virtual void foo(); 75 inline void Test1b::foo() {} in foo() function in Test1b 86 virtual void foo(); 98 inline void Test2a::foo() {} in foo() function in Test2a [all …]
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
D | p12.cpp | 30 Opaque<0> foo(Opaque<0>); 31 Opaque<0> foo(Opaque<1>); 32 Opaque<0> foo(Opaque<2>); 37 using Base::foo; 38 Opaque<1> foo(Opaque<1>); 39 Opaque<1> foo(Opaque<3>); 41 void test0() { Opaque<0> _ = foo(Opaque<0>()); } in test0() 42 void test1() { Opaque<1> _ = foo(Opaque<1>()); } in test1() 43 void test2() { Opaque<0> _ = foo(Opaque<2>()); } in test2() 44 void test3() { Opaque<1> _ = foo(Opaque<3>()); } in test3() [all …]
|
D | p11.cpp | 16 namespace ns { void foo(); } // expected-note {{target of using declaration}} 17 int foo(void); // expected-note {{conflicting declaration}} 18 …using ns::foo; // expected-error {{target of using declaration conflicts with declaration already … 22 namespace ns { void foo(); } // expected-note {{target of using declaration}} 23 using ns::foo; //expected-note {{using declaration}} 24 …int foo(void); // expected-error {{declaration conflicts with target of using declaration already … 28 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}} 30 int foo(void); // expected-note {{conflicting declaration}} in test0() 31 …using ns::foo; // expected-error {{target of using declaration conflicts with declaration already … in test0() 35 using ns::foo; //expected-note {{using declaration}} in test1() [all …]
|
/external/swiftshader/third_party/LLVM/test/MC/ELF/ |
D | relax-arith.s | 10 imul $foo, %bx, %bx 11 imul $foo, bar, %bx 12 imul $foo, %ebx, %ebx 13 imul $foo, bar, %ebx 14 imul $foo, %rbx, %rbx 15 imul $foo, bar, %rbx 20 and $foo, %bx 21 andw $foo, bar 22 and $foo, %ebx 23 andl $foo, bar [all …]
|
/external/clang/test/SemaCXX/ |
D | cxx0x-delegating-ctors.cpp | 3 struct foo { struct 5 foo(); argument 6 foo(int); 7 foo(int, int); 8 foo(bool); 9 foo(char); 10 foo(const float*); 11 foo(const float&); 12 foo(void*); 16 foo::foo (int i) : i(i) { in foo() function in foo [all …]
|
/external/clang/test/OpenMP/ |
D | target_parallel_map_messages.cpp | 3 void foo() { in foo() function 68 foo(); in tmain() 70 foo(); in tmain() 72 foo(); in tmain() 74 foo(); in tmain() 76 foo(); in tmain() 78 foo(); in tmain() 80 foo(); in tmain() 82 foo(); in tmain() 84 foo(); in tmain() [all …]
|
D | parallel_reduction_messages.cpp | 5 void foo() { in foo() function 85 foo(); in tmain() 87 foo(); in tmain() 89 foo(); in tmain() 91 foo(); in tmain() 93 foo(); in tmain() 95 foo(); in tmain() 97 foo(); in tmain() 99 foo(); in tmain() 101 foo(); in tmain() [all …]
|
D | target_if_messages.cpp | 3 void foo() { in foo() function 15 foo(); in tmain() 17 foo(); in tmain() 19 foo(); in tmain() 21 foo(); in tmain() 23 foo(); in tmain() 25 foo(); in tmain() 27 foo(); in tmain() 29 foo(); in tmain() 31 foo(); in tmain() [all …]
|
D | target_parallel_if_messages.cpp | 3 void foo() { in foo() function 15 foo(); in tmain() 17 foo(); in tmain() 19 foo(); in tmain() 21 foo(); in tmain() 23 foo(); in tmain() 25 foo(); in tmain() 27 foo(); in tmain() 29 foo(); in tmain() 31 foo(); in tmain() [all …]
|
D | target_parallel_reduction_messages.cpp | 5 void foo() { in foo() function 85 foo(); in tmain() 87 foo(); in tmain() 89 foo(); in tmain() 91 foo(); in tmain() 93 foo(); in tmain() 95 foo(); in tmain() 97 foo(); in tmain() 99 foo(); in tmain() 101 foo(); in tmain() [all …]
|
D | parallel_sections_reduction_messages.cpp | 5 void foo() { in foo() function 86 foo(); in tmain() 90 foo(); in tmain() 94 foo(); in tmain() 98 foo(); in tmain() 102 foo(); in tmain() 106 foo(); in tmain() 110 foo(); in tmain() 114 foo(); in tmain() 118 foo(); in tmain() [all …]
|
D | parallel_sections_if_messages.cpp | 3 void foo() { in foo() function 16 foo(); in tmain() 20 foo(); in tmain() 24 foo(); in tmain() 28 foo(); in tmain() 32 foo(); in tmain() 36 foo(); in tmain() 40 foo(); in tmain() 44 foo(); in tmain() 48 foo(); in tmain() [all …]
|
D | teams_reduction_messages.cpp | 5 void foo() { in foo() function 86 foo(); in tmain() 89 foo(); in tmain() 92 foo(); in tmain() 95 foo(); in tmain() 98 foo(); in tmain() 101 foo(); in tmain() 104 foo(); in tmain() 107 foo(); in tmain() 110 foo(); in tmain() [all …]
|
D | sections_reduction_messages.cpp | 5 void foo() { in foo() function 87 foo(); in tmain() 92 foo(); in tmain() 97 foo(); in tmain() 102 foo(); in tmain() 107 foo(); in tmain() 112 foo(); in tmain() 117 foo(); in tmain() 122 foo(); in tmain() 127 foo(); in tmain() [all …]
|
/external/llvm/test/MC/Mips/ |
D | macro-bcc-imm.s | 5 foo: # ALL-LABEL: foo: label 6 blt $a2, 16, foo # ALL: addiu $1, $zero, 16 8 # ALL: bnez $1, foo 9 # ALL: # fixup A - offset: 0, value: foo-4, kind: fixup_Mips_PC16 10 ble $a2, 16, foo # ALL: addiu $1, $zero, 16 12 # ALL: beqz $1, foo 13 # ALL: # fixup A - offset: 0, value: foo-4, kind: fixup_Mips_PC16 14 bge $a2, 32767, foo # ALL: addiu $1, $zero, 32767 16 # ALL: beqz $1, foo 17 # ALL: # fixup A - offset: 0, value: foo-4, kind: fixup_Mips_PC16 [all …]
|
D | relocation.s | 28 .short foo // RELOC: R_MIPS_16 foo 32 baz: .long foo // RELOC: R_MIPS_32 foo 38 jal foo // RELOC: R_MIPS_26 foo 50 addiu $2, $3, %hi(foo) // RELOC: R_MIPS_HI16 foo 56 addiu $2, $3, %lo(foo) // RELOC: R_MIPS_LO16 foo 71 addiu $2, $3, %gp_rel(foo) // RELOC: R_MIPS_GPREL16 foo 84 addiu $2, $3, %got(foo) // RELOC: R_MIPS_GOT16 foo 89 addiu $2, $2, %lo(foo) 99 .short foo-. // RELOC: R_MIPS_PC16 foo 102 addiu $2, $3, %call16(foo) // RELOC: R_MIPS_CALL16 foo [all …]
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_namespace_pkgs.py | 76 import foo.one 77 self.assertEqual(foo.one.attr, 'portion1 foo one') 81 import foo.two 84 import foo.one 85 self.assertEqual(repr(foo), "<module 'foo' (namespace)>") 93 import foo.one 94 self.assertEqual(foo.one.attr, 'portion1 foo one') 97 import foo.two 103 import foo.two 104 self.assertEqual(foo.two.attr, 'portion2 foo two') [all …]
|
/external/llvm/unittests/Support/ |
D | Casting.cpp | 28 struct foo *baz(); 29 struct foo *caz(); 30 struct foo *daz(); 31 struct foo *naz(); 35 struct foo { struct 43 template <> struct isa_impl<foo, bar> { 50 foo *bar::baz() { in baz() 51 return cast<foo>(this); in baz() 54 foo *bar::caz() { in caz() 55 return cast_or_null<foo>(this); in caz() [all …]
|
/external/ltp/scripts/tests/ |
D | test_abspath.sh | 32 foo/bar:$PWD/foo/bar \ 33 /foo/bar:/foo/bar \ 34 /foo/../bar:/bar \ 35 /foo/bar/../baz:/foo/baz \ 36 /foo/bar/../baz/:/foo/baz \ 37 /foo/../bar/:/bar \ 38 /foo/../bar/..:/ \ 39 /foo/../bar/../:/ \ 40 /foo/bar/../baz:/foo/baz \ 41 /foo/./bar:/foo/bar \ [all …]
|