Home
last modified time | relevance | path

Searched refs:Baz (Results 1 – 25 of 120) sorted by relevance

12345

/external/googletest/googlemock/test/
Dgmock_stress_test.cc53 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/clang/test/SemaTemplate/
Dms-delayed-default-template-args.cpp6 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
Dexplicit-specialization-member.cpp34 class Baz { class
41 void Baz<T>::bar() { // expected-note {{couldn't infer template argument 'N'}} in bar()
47 …void Baz<T>::bar<0>() { // expected-error {{cannot specialize a member of an unspecialized templat… in bar()
Dtemp_arg_nontype.cpp145 struct Baz {}; struct
147 Baz<k> f1; // This works.
148 Baz<E(0)> f2; // This too.
149 Baz<static_cast<E>(0)> f3; // And this.
151 Baz<ns::E(0)> b1; // This doesn't work.
152 Baz<static_cast<ns::E>(0)> b2; // This neither.
/external/grpc-grpc/test/core/gprpp/
Dorphanable_test.cc86 class Baz : public InternallyRefCountedWithTracing<Baz> { class
88 Baz() : Baz(0) {} in Baz() function in grpc_core::testing::__anonee1383fc0111::Baz
89 explicit Baz(int value) in Baz() function in grpc_core::testing::__anonee1383fc0111::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/
Dmember-expr.cpp13 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/turbine/javatests/com/google/turbine/lower/moduletestdata/
Dmodule-info.test17 === 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/google-breakpad/src/testing/test/
Dgmock_stress_test.cc54 MOCK_METHOD2(Baz, char(const char* s1, const internal::string& s2)); // NOLINT
153 ON_CALL(foo, Baz(_, _)) in TestConcurrentMockObjects()
155 ON_CALL(foo, Baz(_, "you")) in TestConcurrentMockObjects()
160 EXPECT_CALL(foo, Baz(_, _)); in TestConcurrentMockObjects()
161 EXPECT_CALL(foo, Baz("hi", "you")) in TestConcurrentMockObjects()
167 EXPECT_EQ('z', foo.Baz("hi", "you")); in TestConcurrentMockObjects()
168 EXPECT_EQ('a', foo.Baz("hi", "you")); in TestConcurrentMockObjects()
169 EXPECT_EQ('b', foo.Baz("hi", "me")); in TestConcurrentMockObjects()
181 const char ch = param.mock_foo->Baz("a", "b"); in Helper1()
191 EXPECT_EQ('\0', param.mock_foo->Baz("x", "y")) << "Expected failure."; in Helper1()
[all …]
/external/clang/test/CodeGen/
Dtemporary-lifetime.cpp20 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()
Dtemporary-lifetime-exceptions.cpp7 A Baz(const A&);
23 Baz(Baz(A())); in Test1()
/external/guice/jdk8-tests/test/com/google/inject/jdk8/
DDefaultMethodInterceptionTest.java178 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/guice/core/test/com/google/inject/spi/
DInjectorSpiTest.java24 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/clang/test/Rewriter/
Drewrite-message-expr.mm5 @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/CodeGenCXX/
D2005-02-19-UnnamedVirtualThunkArgument.cpp14 struct Baz : public Foo, public Bar { struct
15 Baz();
16 virtual ~Baz();
20 bool Baz::test(bool) const { in test()
Ddebug-info-explicit-cast.cpp14 struct Baz { struct
16 Baz() : C(3){}; in Baz() function
31 int Val = reinterpret_cast<Baz *>(0)->C;
/external/clang/test/Index/
Dc-index-getCursor-test.m31 @interface Baz : Bar <SubP> interface
45 Baz * bee;
93 // CHECK: [31:1 - 31:18] ObjCInterfaceDecl=Baz:31:12
95 // CHECK: [31:21 - 31:23] ObjCInterfaceDecl=Baz:31:12
97 // CHECK: [31:27 - 33:5] ObjCInterfaceDecl=Baz:31:12
99 // CHECK: [33:16 - 36:1] ObjCInterfaceDecl=Baz:31:12
103 // CHECK: [36:21 - 38:5] ObjCInterfaceDecl=Baz:31:12
115 // CHECK: [45:2 - 45:5] ObjCClassRef=Baz:31:12
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DStringExtrasTest.cpp45 llvm::StringRef Baz = "baz"; in TEST() local
57 EXPECT_EQ("foo <sep> bar <sep> baz", join_items(" <sep> ", Foo, Bar, Baz)); in TEST()
58 EXPECT_EQ("foo/bar/baz", join_items('/', Foo, Bar, Baz)); in TEST()
61 join_items(" <sep> ", Foo, Bar, Baz, X)); in TEST()
63 EXPECT_EQ("foo/bar/baz/x", join_items('/', Foo, Bar, Baz, X)); in TEST()
/external/markdown/tests/misc/
Dspan.txt2 <span id="someId"> Foo *bar* Baz </span>
6 <div id="someId"> Foo *bar* Baz </div>
8 <baza id="someId"> Foo *bar* Baz </baza>
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
DIssue235.java.txt3 static class Baz {}
6 new Bar.Baz();
9 new Bar.Baz() {};
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
DCoreAPIsTest.cpp188 SymbolNameSet Names({Foo, Bar, Baz}); in TEST_F()
205 cantFail(V.define(symbolAliases({{Baz, {Foo, JITSymbolFlags::Exported}}, in TEST_F()
209 auto Result = lookup({&V}, {Baz, Qux}); in TEST_F()
211 EXPECT_EQ(Result->count(Baz), 1U) << "No result for \"baz\""; in TEST_F()
213 EXPECT_EQ((*Result)[Baz].getAddress(), FooSym.getAddress()) 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()
227 EXPECT_EQ(Result->count(Baz), 1U) << "No result for \"baz\""; in TEST_F()
230 EXPECT_EQ((*Result)[Baz].getAddress(), FooSym.getAddress()) in TEST_F()
267 V, {{Baz, {Foo, BazSym.getFlags()}}, {Qux, {Bar, QuxSym.getFlags()}}}))); in TEST_F()
[all …]
DLegacyAPIInteropTest.cpp30 SymbolNameSet Symbols({Foo, Bar, Baz}); in TEST_F()
65 EXPECT_EQ(Unresolved.count(Baz), 1U) << "Expected baz to not be resolved"; in TEST_F()
140 auto Baz = ES.getSymbolStringPool().intern("baz"); in TEST() local
142 SymbolNameSet Symbols({Foo, Bar, Baz}); in TEST()
180 EXPECT_EQ(Unresolved.count(Baz), 1U) << "Expected baz to be unresolved"; in TEST()
/external/clang/test/SemaObjC/
Dsuper-dealloc-attribute.m26 @interface Baz : Root<NSObject> interface
28 - (void) MyDeallocMeth __attribute((objc_requires_super)); // 'Baz' author has annotated method
30 - (void) AnnotMeth __attribute((objc_requires_super)); // 'Baz' author has annotated method
33 @implementation Baz implementation
50 @interface Bar : Baz
73 @interface Valid : Baz
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyCFG/
D2003-08-17-FoldSwitch.ll9 i32 2, label %Baz
18 Baz: ; preds = %0
29 i32 2, label %Baz
38 Baz: ; preds = %0
/external/clang/test/SemaCXX/
Dusing-decl-templates.cpp54 struct Baz { struct
57 template <class T> struct Bar : public Foo<T>, Baz {
59 using Baz::k;
/external/llvm/test/Transforms/SimplifyCFG/
D2003-08-17-FoldSwitch.ll13 i32 2, label %Baz
22 Baz:
37 i32 2, label %Baz
46 Baz:

12345