/external/libtextclassifier/native/utils/base/ |
D | statusor_test.cc | 109 class Baz { class 111 Baz() : i_(new int), invalid_(false) {} in Baz() function in libtextclassifier3::__anonfec098400111::Baz 112 Baz(const Baz& other) { in Baz() function in libtextclassifier3::__anonfec098400111::Baz 117 Baz(const Foo& other) { // NOLINT in Baz() function in libtextclassifier3::__anonfec098400111::Baz 122 Baz(Baz&& other) { in Baz() function in libtextclassifier3::__anonfec098400111::Baz 130 Baz& operator=(const Baz& rhs) { in operator =() 133 Baz tmp(rhs); in operator =() 137 Baz& operator=(Baz&& rhs) { in operator =() 141 ~Baz() { in ~Baz() 151 StatusOr<Baz> baz_or; in TEST() [all …]
|
/external/google-java-format/core/src/test/resources/com/google/googlejavaformat/java/testdata/ |
D | B20128588.input | 1 @Foo @Bar @Baz package edu.oswego.cs.dl.util.concurrent; 3 @Foo @Bar @Baz class Test { 5 @Foo @Bar @Baz Object f() { 8 @Foo @Bar @Baz public Object f() { 11 @Foo @Bar @Baz void f() { 14 @Foo @Bar @Baz static Object field; 16 static @Foo @Bar @Baz Object field; 18 @Foo @Bar @Baz Object field; 20 @Foo(xs=42) @Bar @Baz Object field; 23 @Foo @Bar @Baz final Object var; [all …]
|
D | B20128588.output | 3 @Baz 8 @Baz 13 @Baz 18 @Baz 23 @Baz 26 @Foo @Bar @Baz static Object field; 28 static @Foo @Bar @Baz Object field; 30 @Foo @Bar @Baz Object field; 34 @Baz 40 @Baz [all …]
|
/external/llvm-project/clang/test/Analysis/ |
D | symbol-escape.cpp | 24 C **Baz = &Qux; in indirect_escape_in_bitwise_op() local 25 Baz = reinterpret_cast<C **>(reinterpret_cast<uintptr_t>(Baz) | 0x1); in indirect_escape_in_bitwise_op() 26 Baz = reinterpret_cast<C **>(reinterpret_cast<uintptr_t>(Baz) & in indirect_escape_in_bitwise_op() 30 delete *Baz; in indirect_escape_in_bitwise_op() 31 return Baz; in indirect_escape_in_bitwise_op()
|
D | member-expr.cpp | 13 void testEnumVal(Foo Baz) { in testEnumVal() argument 14 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}} in testEnumVal() 17 void testEnumRef(Foo &Baz) { in testEnumRef() argument 18 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}} in testEnumRef() 21 void testEnumPtr(Foo *Baz) { in testEnumPtr() argument 22 clang_analyzer_eval(Baz->Bar == Foo::Bar); // expected-warning{{TRUE}} in testEnumPtr()
|
/external/clang/test/SemaTemplate/ |
D | ms-delayed-default-template-args.cpp | 6 template <typename T = Baz> // expected-warning {{using the undeclared type 'Baz' as a default temp… 8 typedef int Baz; typedef 14 template <typename T = Baz> // expected-warning {{using the undeclared type 'Baz' as a default temp… 18 typedef int Baz; typedef 20 typedef double Baz; typedef 26 …template <typename T = Baz> // expected-warning {{using the undeclared type 'Baz' as a default tem… 30 typedef int Baz; typedef 32 typedef double Baz; typedef
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | ms-delayed-default-template-args.cpp | 6 template <typename T = Baz> // expected-warning {{using the undeclared type 'Baz' as a default temp… 8 typedef int Baz; typedef 14 template <typename T = Baz> // expected-warning {{using the undeclared type 'Baz' as a default temp… 18 typedef int Baz; typedef 20 typedef double Baz; typedef 26 …template <typename T = Baz> // expected-warning {{using the undeclared type 'Baz' as a default tem… 30 typedef int Baz; typedef 32 typedef double Baz; typedef
|
/external/googletest/googlemock/test/ |
D | gmock_stress_test.cc | 53 MOCK_METHOD2(Baz, char(const char* s1, const std::string& s2)); // NOLINT 73 ON_CALL(foo, Baz(_, _)) in TestConcurrentMockObjects() 75 ON_CALL(foo, Baz(_, "you")) in TestConcurrentMockObjects() 80 EXPECT_CALL(foo, Baz(_, _)); in TestConcurrentMockObjects() 81 EXPECT_CALL(foo, Baz("hi", "you")) in TestConcurrentMockObjects() 87 EXPECT_EQ('z', foo.Baz("hi", "you")); in TestConcurrentMockObjects() 88 EXPECT_EQ('a', foo.Baz("hi", "you")); in TestConcurrentMockObjects() 89 EXPECT_EQ('b', foo.Baz("hi", "me")); in TestConcurrentMockObjects() 101 const char ch = param.mock_foo->Baz("a", "b"); in Helper1() 111 EXPECT_EQ('\0', param.mock_foo->Baz("x", "y")) << "Expected failure."; in Helper1() [all …]
|
/external/llvm-project/clang/test/Profile/ |
D | cxx-structors.cpp | 19 struct Baz : virtual public Foo { struct 20 Baz() {} in Baz() function 21 Baz(int x) : Foo(x) {} in Baz() function 22 ~Baz(); 32 Baz baz; 33 Baz baz2(1);
|
/external/grpc-grpc/test/core/gprpp/ |
D | orphanable_test.cc | 86 class Baz : public InternallyRefCountedWithTracing<Baz> { class 88 Baz() : Baz(0) {} in Baz() function in grpc_core::testing::__anon7cbcc85a0111::Baz 89 explicit Baz(int value) in Baz() function in grpc_core::testing::__anon7cbcc85a0111::Baz 90 : InternallyRefCountedWithTracing<Baz>(&baz_tracer), value_(value) {} in Baz() 103 RefCountedPtr<Baz> self_ref_; 107 auto baz = MakeOrphanable<Baz>(); in TEST()
|
/external/clang/test/Analysis/ |
D | member-expr.cpp | 13 void testEnumVal(Foo Baz) { in testEnumVal() argument 14 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}} in testEnumVal() 17 void testEnumRef(Foo &Baz) { in testEnumRef() argument 18 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}} in testEnumRef() 21 void testEnumPtr(Foo *Baz) { in testEnumPtr() argument 22 clang_analyzer_eval(Baz->Bar == Foo::Bar); // expected-warning{{TRUE}} in testEnumPtr()
|
/external/llvm-project/lldb/test/API/lang/cpp/breakpoint-commands/ |
D | nested.cpp | 7 class Baz class 10 Baz (int value):m_value(value) {} in Baz() function in Foo::Bar::Baz 42 class Baz class 45 Baz (int value):m_value(value) {} in Baz() function in Baz 64 Foo::Bar::Baz mine(200); in main() 66 ::Baz bare_baz (500); in main()
|
/external/llvm-project/clang/test/CodeGen/ |
D | temporary-lifetime.cpp | 20 T Baz(); 131 const int &a = Baz<int>(); in Test5() 149 Foo(Baz<int>()); in Test6() 150 Foo(Baz<int>()); in Test6() 166 Foo(Baz<A>()); in Test7() 167 Foo(Baz<A>()); in Test7()
|
/external/clang/test/CodeGen/ |
D | temporary-lifetime.cpp | 20 T Baz(); 131 const int &a = Baz<int>(); in Test5() 149 Foo(Baz<int>()); in Test6() 150 Foo(Baz<int>()); in Test6() 166 Foo(Baz<A>()); in Test7() 167 Foo(Baz<A>()); in Test7()
|
/external/turbine/javatests/com/google/turbine/lower/moduletestdata/ |
D | module-info.test | 17 === com/google/Baz.java === 19 public interface Baz { 29 public class Foo implements Baz.I { 34 public class Bar implements Baz.I { 54 import com.google.Baz; 55 import static com.google.Baz.A; 57 @A({A, Baz.B, Baz.I.C}) 81 provides com.google.Baz.I with
|
/external/guice/core/test/com/google/inject/spi/ |
D | InjectorSpiTest.java | 24 bind(Baz.class); in testExistingBinding() 49 binding = injector.getExistingBinding(Key.get(Baz.class)); in testExistingBinding() 51 assertEquals(Baz.class, binding.getKey().getTypeLiteral().getRawType()); in testExistingBinding() 56 injector.getAllBindings().containsKey(Key.get(new TypeLiteral<Provider<Baz>>() {}))); in testExistingBinding() 57 binding = injector.getExistingBinding(Key.get(new TypeLiteral<Provider<Baz>>() {})); in testExistingBinding() 60 assertEquals(Baz.class, ((Provider) binding.getProvider().get()).get().getClass()); in testExistingBinding() 73 private static class Baz { class in InjectorSpiTest
|
/external/llvm-project/clang/test/Refactor/LocalRename/ |
D | Field.cpp | 3 class Baz { class 7 Baz(); 10 Baz::Baz() : /*range=*/Foo(0) {} in Baz() function in Baz
|
/external/guice/jdk8-tests/test/com/google/inject/jdk8/ |
D | DefaultMethodInterceptionTest.java | 178 public interface Baz { interface in DefaultMethodInterceptionTest 186 public static class BazImpl implements Baz { 200 bindInterceptor(Matchers.subclassesOf(Baz.class), Matchers.any(), interceptor); in testInterception_ofAllMethodsOnType() 201 bind(Baz.class).to(BazImpl.class); in testInterception_ofAllMethodsOnType() 205 Baz baz = injector.getInstance(Baz.class); in testInterception_ofAllMethodsOnType() 220 bind(Baz.class).to(BazImpl.class); in testInterception_ofAllMethodsOnType_interceptsInheritedDefaultMethod() 224 Baz baz = injector.getInstance(Baz.class); in testInterception_ofAllMethodsOnType_interceptsInheritedDefaultMethod()
|
/external/clang/test/CodeGenCXX/ |
D | 2005-02-19-UnnamedVirtualThunkArgument.cpp | 14 struct Baz : public Foo, public Bar { struct 15 Baz(); 16 virtual ~Baz(); 20 bool Baz::test(bool) const { in test()
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | 2005-02-19-UnnamedVirtualThunkArgument.cpp | 14 struct Baz : public Foo, public Bar { struct 15 Baz(); 16 virtual ~Baz(); 20 bool Baz::test(bool) const { in test()
|
/external/llvm-project/clang/test/Rewriter/ |
D | rewrite-message-expr.mm | 5 @interface Baz interface 18 int f(Baz *baz) { 19 int i = x([Baz z])->bar; 20 int j = ((Foo*)[Baz z])->bar; 25 // CHECK-LP: ((struct Foo_IMPL *)x(((id (*)(id, SEL))(void *)objc_msgSend)(objc_getClass("Baz"), se…
|
/external/clang/test/Rewriter/ |
D | rewrite-message-expr.mm | 5 @interface Baz interface 18 int f(Baz *baz) { 19 int i = x([Baz z])->bar; 20 int j = ((Foo*)[Baz z])->bar; 25 // CHECK-LP: ((struct Foo_IMPL *)x(((id (*)(id, SEL))(void *)objc_msgSend)(objc_getClass("Baz"), se…
|
/external/llvm-project/clang/test/clang-rename/ |
D | Variable.cpp | 7 int Baz = A::Foo; /* Test 2 */ // CHECK: Baz = A::Bar; variable 13 Baz = Foo; // CHECK: Baz = Foo; in fun() 16 Baz = Foo; // CHECK: Baz = Foo; in fun() 17 Foo = A::Foo /* Test 3 */ + Baz; // CHECK: Foo = A::Bar /* Test 3 */ + Baz; in fun()
|
D | ComplicatedClassType.cpp | 4 class Baz { class 8 class Foo : public Baz { /* Test 2 */// CHECK: class Bar : public Baz { 37 const Baz &BazReference = foo; in main() 38 const Baz *BazPointer = &foo; in main()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/exc/ |
D | TestExceptionHandlingWithJsonCreatorDeserialization.java | 27 private Baz baz; 30 public Bar(@JsonProperty("baz") Baz baz) { in Bar() 34 public Baz getBaz() { in getBaz() 39 static class Baz { class in TestExceptionHandlingWithJsonCreatorDeserialization 43 public Baz(@JsonProperty("qux") String qux) { in Baz() method in TestExceptionHandlingWithJsonCreatorDeserialization.Baz
|