/external/clang/test/SemaCXX/ |
D | warn-range-loop-analysis.cpp | 20 struct Bar { struct 21 Bar(Foo); 22 Bar(int); 65 Container<Bar&> bar_container; in test0() 75 for (const Bar x : bar_container) {} in test0() 103 for (const Bar &x : A) {} in test1() 106 for (const Bar x : A) {} in test1() 110 for (Bar x : A) {} in test1() 135 for (const Bar &x : B) {} in test2() 138 for (const Bar x : B) {} in test2() [all …]
|
D | pseudo-destructors.cpp | 5 typedef Foo Bar; // expected-note{{type 'Bar' (aka 'Foo') is declared here}} typedef 28 …a->~Bar(); // expected-error{{destructor type 'Bar' (aka 'Foo') in object destruction expression d… in f() 30 f->~Bar(); in f() 32 i->~Bar(); // expected-error{{does not match}} in f() 34 g().~Bar(); // expected-error{{non-scalar}} in f() 36 f->::~Bar(); in f() 39 f->::~Bar(17, 42); // expected-error{{cannot have any arguments}} in f()
|
D | zero-length-arrays.cpp | 12 class Bar { class 19 Bar(): foo_count(0) { } in Bar() function in Bar 20 ~Bar() { } in ~Bar() 24 Bar b; in testBar() 25 Bar b2(b); in testBar()
|
/external/googletest/googlemock/test/ |
D | gmock_stress_test.cc | 52 MOCK_METHOD1(Bar, int(int n)); // NOLINT 71 ON_CALL(foo, Bar(_)) in TestConcurrentMockObjects() 78 EXPECT_CALL(foo, Bar(0)) in TestConcurrentMockObjects() 85 EXPECT_EQ(1, foo.Bar(0)); in TestConcurrentMockObjects() 86 EXPECT_EQ(1, foo.Bar(0)); in TestConcurrentMockObjects() 114 EXPECT_EQ(1, param.mock_foo->Bar(5)); in Helper1() 122 ON_CALL(foo, Bar(_)) in TestConcurrentCallsOnSameObject() 152 foo->Bar(2); in Helper2() 153 foo->Bar(3); in Helper2() 164 EXPECT_CALL(foo, Bar(0)); in TestPartiallyOrderedExpectationsWithThreads() [all …]
|
/external/dokka/core/testdata/format/ |
D | nestedLists.md | 1 [test](../index.md) / [Bar](./index.md) 3 # Bar chapter 5 `class Bar` 11 * Recommended to [Bar.useSoap](use-soap.md) 12 * Optionally apply [Bar.elbowGrease](#) for best results 13 2. [Bar.rinse](rinse.md) to begin rinse 14 1. Thus you should call [Bar.rinse](rinse.md) 15 2. *Then* call [Bar.repeat](repeat.md) 19 3. Finally, adjust soap usage [Bar.useSoap](use-soap.md) as needed 20 3. Repeat with [Bar.repeat](repeat.md) [all …]
|
D | linksInHeaders.md | 1 [test](../index.md) / [Bar](./index.md) 3 # Bar chapter 5 `class Bar` 9 # Beer o'clock - time to go to the [Bar](./index.md) 13 ### [Bar.hello](hello.md) to the [Bar.world](world.md)! 15 #### *Kotlin is amazing, [Bar.none](none.md)* 17 ##### We need to go [Bar.deeper](deeper.md) 19 ###### End of the [Bar.line](line.md) - we need to go back! 23 | [<init>](-init-.md) | `Bar()`<br>Some class with really useless documentation. |
|
D | unorderedLists.md | 1 [test](../index.md) / [Bar](./index.md) 3 # Bar chapter 5 `class Bar` 14 * [Bar.rinse](rinse.md) to rinse 16 * To repeat; [Bar.repeat](repeat.md) 24 * [Bar.useSoap](use-soap.md) 27 * [Bar.useElbowGrease](use-elbow-grease.md) 30 * [Bar.useBleach](use-bleach.md) 35 | [<init>](-init-.md) | `Bar()`<br>Usage summary: |
|
D | linksInEmphasis.md | 1 [test](../index.md) / [Bar](./index.md) 3 # Bar chapter 5 `class Bar` 9 *This class [Bar](./index.md) is awesome.* 11 *Even more awesomer is the function [Bar.foo](foo.md)* 13 *[Bar.hello](hello.md) is also OK* 17 | [<init>](-init-.md) | `Bar()`<br>An emphasised class. |
|
D | linksInStrong.md | 1 [test](../index.md) / [Bar](./index.md) 3 # Bar chapter 5 `class Bar` 9 **This class [Bar](./index.md) is awesome.** 11 **Even more awesomer is the function [Bar.foo](foo.md)** 13 **[Bar.hello](hello.md) is also OK** 17 | [<init>](-init-.md) | `Bar()`<br>A strong class. |
|
D | tokensInEmphasis.md | 1 [test](../index.md) / [Bar](./index.md) 3 # Bar chapter 5 `class Bar` 9 *This class, [Bar](./index.md) is just meh.* 11 *For a semicolon; [Bar.foo](foo.md) is for you!.* 15 | [<init>](-init-.md) | `Bar()`<br>Another emphasised class. |
|
D | shadowedExtensionFunctions.md | 1 [test](../index.md) / [Bar](./index.md) 3 # Bar chapter 5 `class Bar : `[`Foo`](../-foo/index.md) 9 | [<init>](-init-.md) | `Bar()` | 13 | [shazam](../shazam.md) | `fun `[`Bar`](./index.md)`.shazam(i: Int): Unit`<br>`fun `[`Foo`](../-fo… 14 | [xyzzy](../xyzzy.md) | `fun `[`Bar`](./index.md)`.xyzzy(): Unit` |
|
/external/libtextclassifier/native/utils/base/ |
D | statusor_test.cc | 61 class Bar { class 64 Bar(Foo&& f) : i_(2 * f.i()) {} // NOLINT in Bar() function in libtextclassifier3::__anon43ad2e640111::Bar 67 Bar(const Bar& other) = delete; 68 Bar& operator=(const Bar& rhs) = delete; 69 Bar(Bar&& other) = default; 70 Bar& operator=(Bar&& rhs) = default; 85 StatusOr<Bar> bar_status(std::move(foo_status)); in TEST() 96 StatusOr<Bar> moved_status(std::move(copied_status)); in TEST() 102 StatusOr<Bar> moved_error_status(std::move(error_status)); in TEST()
|
/external/clang/test/SemaTemplate/ |
D | ms-delayed-default-template-args.cpp | 37 template <typename T> struct Bar { T x; }; struct 39 template <Bar<Qux> *P> 42 Bar<int> g; 48 template <typename T> struct Bar { T x; }; argument 49 template <typename T = Bar<Weber>> // expected-error {{use of undeclared identifier 'Weber'}} 60 template <typename T = ns::Bar> // expected-error {{use of undeclared identifier 'ns'}} 64 namespace ns { typedef int Bar; } typedef 94 template <typename T> struct Bar { T x; }; struct 96 template <Bar<Xylophone> *P> // expected-error {{use of undeclared identifier 'Xylophone'}} 101 Bar<Xylophone> g;
|
/external/google-breakpad/src/testing/test/ |
D | gmock_stress_test.cc | 53 MOCK_METHOD1(Bar, int(int n)); // NOLINT 151 ON_CALL(foo, Bar(_)) in TestConcurrentMockObjects() 158 EXPECT_CALL(foo, Bar(0)) in TestConcurrentMockObjects() 165 EXPECT_EQ(1, foo.Bar(0)); in TestConcurrentMockObjects() 166 EXPECT_EQ(1, foo.Bar(0)); in TestConcurrentMockObjects() 194 EXPECT_EQ(1, param.mock_foo->Bar(5)); in Helper1() 202 ON_CALL(foo, Bar(_)) in TestConcurrentCallsOnSameObject() 232 foo->Bar(2); in Helper2() 233 foo->Bar(3); in Helper2() 244 EXPECT_CALL(foo, Bar(0)); in TestPartiallyOrderedExpectationsWithThreads() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/ |
D | CoreAPIsTest.cpp | 180 SymbolFlagsMap({{Bar, BarSym.getFlags()}}), in TEST_F() 188 SymbolNameSet Names({Foo, Bar, Baz}); in TEST_F() 197 EXPECT_EQ(SymbolFlags.count(Bar), 1U) in TEST_F() 199 EXPECT_EQ(SymbolFlags[Bar], BarSym.getFlags()) in TEST_F() 204 cantFail(V.define(absoluteSymbols({{Foo, FooSym}, {Bar, BarSym}}))); in TEST_F() 206 {Qux, {Bar, JITSymbolFlags::Weak}}}))); in TEST_F() 222 {{Baz, {Bar, BazSym.getFlags()}}, {Bar, {Foo, BarSym.getFlags()}}}))); in TEST_F() 224 auto Result = lookup({&V}, {Bar, Baz}); in TEST_F() 226 EXPECT_EQ(Result->count(Bar), 1U) << "No result for \"bar\""; in TEST_F() 228 EXPECT_EQ((*Result)[Bar].getAddress(), FooSym.getAddress()) in TEST_F() [all …]
|
D | LegacyAPIInteropTest.cpp | 22 cantFail(V.define(absoluteSymbols({{Foo, FooSym}, {Bar, BarSym}}))); in TEST_F() 30 SymbolNameSet Symbols({Foo, Bar, Baz}); in TEST_F() 37 EXPECT_EQ(SymbolFlags.count(Bar), 1U) << "Missing lookupFlags result for bar"; in TEST_F() 40 EXPECT_EQ(SymbolFlags[Bar], BarSym.getFlags()) in TEST_F() 50 EXPECT_EQ(Result->count(Bar), 1U) << "Missing lookup result for bar"; in TEST_F() 53 EXPECT_EQ((*Result)[Bar].getAddress(), BarSym.getAddress()) in TEST_F() 60 auto Q = std::make_shared<AsynchronousSymbolQuery>(SymbolNameSet({Foo, Bar}), in TEST_F() 139 auto Bar = ES.getSymbolStringPool().intern("bar"); in TEST() local 142 SymbolNameSet Symbols({Foo, Bar, Baz}); in TEST() 149 EXPECT_EQ(SymbolFlags->count(Bar), 1U) << "Flags for foo missing"; in TEST() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/dsymutil/X86/ |
D | modules.m | 7 module Bar { 8 header "Bar.h" 12 clang -D BAR_H -E -o Bar.h modules.m 36 // CHECK-NEXT: DW_AT_name{{.*}}"Bar" 39 // CHECK: DW_AT_name {{.*}}"Bar" 47 struct Bar { struct 71 @import Bar; argument 72 typedef struct Bar Bar; typedef 85 struct Bar { 88 typedef struct Bar Bar; struct [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GlobalOpt/ |
D | evaluate-call.ll | 3 ; %struct.Bar* bitcast (%struct.Foo* (%struct.Foo*)* @_ZL3fooP3Foo to %struct.Bar* (%struct.Bar*)… 6 ; void bitcast (void (%struct.Foo*)* @_ZL3bazP3Foo to void (%struct.Bar*)*)(%struct.Bar* @gBar) 12 ; CHECK: @gBar = local_unnamed_addr global %struct.Bar { i32 2 } 22 %struct.Bar = type { i32 } 26 @gBar = global %struct.Bar zeroinitializer, align 4 56 …%5 = call %struct.Bar* bitcast (%struct.Foo* (%struct.Foo*)* @_ZL3fooP3Foo to %struct.Bar* (%struc… 57 %6 = getelementptr inbounds %struct.Bar, %struct.Bar* %5, i32 0, i32 0 60 call void bitcast (void (%struct.Foo*)* @_ZL3bazP3Foo to void (%struct.Bar*)*)(%struct.Bar* @gBar)
|
/external/clang/test/Analysis/ |
D | member-expr.cpp | 9 Bar = 1 enumerator 14 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}} in testEnumVal() 18 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}} in testEnumRef() 22 clang_analyzer_eval(Baz->Bar == Foo::Bar); // expected-warning{{TRUE}} in testEnumPtr()
|
/external/clang/test/CodeGen/ |
D | ms-inline-asm.cpp | 10 struct Bar { struct 18 Foo::Bar::ptr = (int *)0xDEADBEEF; in t1() argument 20 __asm mov eax, Foo :: Bar :: ptr in t1() 32 __asm mov eax, offset Foo::Bar::ptr in t2() 40 __asm mov eax, LENGTH Foo::Bar::ptr in t3() 42 __asm mov eax, LENGTH Foo::Bar::arr in t3() 45 __asm mov eax, TYPE Foo::Bar::ptr in t3() 47 __asm mov eax, TYPE Foo::Bar::arr in t3() 50 __asm mov eax, SIZE Foo::Bar::ptr in t3() 52 __asm mov eax, SIZE Foo::Bar::arr in t3()
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | LiteEqualsAndHashTest.java | 33 import protobuf_unittest.lite_equals_and_hash.LiteEqualsAndHash.Bar; 63 .addBar(Bar.newBuilder().setName("foo1")) in testEquals() 67 .addBar(Bar.newBuilder().setName("foo1")) in testEquals() 71 .addBar(Bar.newBuilder().setName("foo2")) in testEquals() 83 Bar bar = Bar.newBuilder().setName("bar").build(); in testEquals() 105 .setExtension(Bar.fooExt, Bar.newBuilder() in testEqualsAndHashCodeWithUnknownFields()
|
/external/turbine/javatests/com/google/turbine/lower/testdata/ |
D | one.test | 1 === bar/Bar.java === 4 public class Bar { 11 public class Boo extends Bar { 25 public class Baz extends bar.Bar.Inner {} 30 import bar.Bar; 32 public class Foo extends Bar.Inner {
|
/external/clang/test/Profile/ |
D | cxx-structors.cpp | 11 struct Bar : public Foo { struct 12 Bar() {} in Bar() argument 13 Bar(int x) : Foo(x) {} in Bar() argument 14 ~Bar(); 19 Bar bar;
|
/external/llvm/test/tools/dsymutil/X86/ |
D | modules.m | 7 module Bar { 8 header "Bar.h" 12 clang -D BAR_H -E -o Bar.h modules.m 34 // CHECK-NEXT: DW_AT_name{{.*}}"Bar" 37 // CHECK: DW_AT_name {{.*}}"Bar" 45 struct Bar { struct 69 @import Bar; argument 70 typedef struct Bar Bar; struct 111 Bar bar;
|
/external/grpc-grpc/test/core/gprpp/ |
D | orphanable_test.cc | 61 class Bar : public InternallyRefCounted<Bar> { class 63 Bar() : Bar(0) {} in Bar() function in grpc_core::testing::__anon9f977a7e0111::Bar 64 explicit Bar(int value) : value_(value) {} in Bar() function in grpc_core::testing::__anon9f977a7e0111::Bar 73 RefCountedPtr<Bar> self_ref_; 77 auto bar = MakeOrphanable<Bar>(); in TEST()
|