Home
last modified time | relevance | path

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

123

/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/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/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/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() function
31 int Val = reinterpret_cast<Baz *>(0)->C;
/external/v8/test/mjsunit/regress/
Dregress-4376-1.js6 function Baz() { } class
7 Baz.prototype = { __proto__: new Bar() }
8 var x = new Baz();
11 Baz.prototype.__proto__ = null;
/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
Dprint-type.cpp9 struct Baz { }; struct
27 Baz<int, 1, Foo> baz;
/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];
Dprotocol-lookup.m19 @interface Baz : NSObject { interface
26 @implementation Baz implementation
/external/llvm/test/Transforms/SimplifyCFG/
D2003-08-17-FoldSwitch.ll10 i32 2, label %Baz
19 Baz: ; preds = %0
30 i32 2, label %Baz
39 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() function
Dwarn-shadow.cpp49 static void Baz();
54 void Foo::Baz() { in Baz() function in rdar8900456::Foo
Dwarn-enum-compare.cpp10 enum Baz {B1, B2, B3}; enum
14 enum Baz {B1, B2, B3}; enum
17 using name1::Baz;
28 Baz z = name1::B3; in test()
/external/clang/test/CodeGen/
D2009-06-18-StaticInitTailPadPack.c11 struct Baz { struct
17 struct Baz f2; argument
/external/clang/test/CodeGenObjC/
Dlayout-bitfield-crash.m6 @interface Baz interface
13 @implementation Baz implementation

123