Home
last modified time | relevance | path

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

12345

/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/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/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()
D2009-06-18-StaticInitTailPadPack.c11 struct Baz { struct
17 struct Baz f2; argument
/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/googletest/googlemock/test/
Dgmock_stress_test.cc54 MOCK_METHOD2(Baz, char(const char* s1, const std::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/v8/testing/gmock/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/guice/core/test/com/google/inject/spi/
DInjectorSpiTest.java26 bind(Baz.class); in testExistingBinding()
51 binding = injector.getExistingBinding(Key.get(Baz.class)); in testExistingBinding()
53 assertEquals(Baz.class, binding.getKey().getTypeLiteral().getRawType()); in testExistingBinding()
57 …assertFalse(injector.getAllBindings().containsKey(Key.get(new TypeLiteral<Provider<Baz>>() {}))); … in testExistingBinding()
58 binding = injector.getExistingBinding(Key.get(new TypeLiteral<Provider<Baz>>() {})); in testExistingBinding()
61 assertEquals(Baz.class, ((Provider)binding.getProvider().get()).get().getClass()); in testExistingBinding()
72 private static class Baz { @SuppressWarnings("unused") @Inject Provider<Foo> fooP; } class in InjectorSpiTest
/external/guice/jdk8-tests/test/com/google/inject/jdk8/
DDefaultMethodInterceptionTest.java174 public interface Baz { interface in DefaultMethodInterceptionTest
182 public static class BazImpl implements Baz {
194 bindInterceptor(Matchers.subclassesOf(Baz.class), Matchers.any(), interceptor); in testInterception_ofAllMethodsOnType()
195 bind(Baz.class).to(BazImpl.class); in testInterception_ofAllMethodsOnType()
199 Baz baz = injector.getInstance(Baz.class); in testInterception_ofAllMethodsOnType()
212 bind(Baz.class).to(BazImpl.class); in testInterception_ofAllMethodsOnType_interceptsInheritedDefaultMethod()
216 Baz baz = injector.getInstance(Baz.class); in testInterception_ofAllMethodsOnType_interceptsInheritedDefaultMethod()
/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() argument
31 int Val = reinterpret_cast<Baz *>(0)->C;
/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/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/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/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
Darc-property-lifetime.m153 @interface Baz interface
164 void foo(Baz *f) {
165 f.prop = [[Baz alloc] init];
166 f.strong_prop = [[Baz alloc] init];
167 f.strong_attr_prop = [[Baz alloc] init];
168 f.really_strong_attr_prop = [[Baz alloc] init];
169 f.implicit = [[Baz alloc] init];
/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;
DPR9572.cpp12 struct Baz { struct
14 Baz() { } in Baz() argument
/external/llvm/test/Transforms/SimplifyCFG/
D2003-08-17-FoldSwitch.ll13 i32 2, label %Baz
22 Baz:
37 i32 2, label %Baz
46 Baz:
/external/mockito/src/test/java/org/mockito/internal/stubbing/defaultanswers/
DReturnsMocksTest.java24 final class Baz { class in ReturnsMocksTest
41 assumeFalse(Plugins.getMockMaker().isTypeMockable(Baz.class).mockable()); in should_return_null_for_final_class_if_unsupported()
42 assertNull(values.returnValueFor(Baz.class)); in should_return_null_for_final_class_if_unsupported()
/external/v8/tools/clang/plugins/tests/
Dbase_refcounted.cpp50 class Baz { class
56 class UnsafeTypedefChainInImpl : public Baz::MyLocalTypedef {

12345