Searched refs:Baz (Results 1 - 25 of 33) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A D2005-02-19-UnnamedVirtualThunkArgument.cpp14 struct Baz : public Foo, public Bar { struct in inherits:Foo,Bar
15 Baz();
16 virtual ~Baz();
20 bool Baz::test(bool) const {
/external/chromium_org/build/android/tests/symbolize/
H A Db.cc8 void Baz(float f);
13 void B::Baz(float f) {} function in class:B
/external/clang/test/SemaCXX/
H A DPR9572.cpp12 struct Baz { struct
14 Baz() { } function in struct:Baz
H A Dwarn-shadow.cpp49 static void Baz();
54 void Foo::Baz() { function in class:rdar8900456::Foo
H A Dusing-decl-templates.cpp54 struct Baz { struct in namespace:PR7896
57 template <class T> struct Bar : public Foo<T>, Baz {
59 using Baz::k;
H A Dwarn-enum-compare.cpp10 enum Baz {B1, B2, B3}; enum in namespace:name1
14 enum Baz {B1, B2, B3}; enum in namespace:name2
17 using name1::Baz;
28 Baz z = name1::B3;
68 while (B1 == B2); // expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and 'name2::Baz')}}
69 while (name1::B2 == name2::B3); // expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and 'name2::Baz')}}
70 while (z == name2::B2); // expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and 'name2::Baz')}}
[all...]
/external/clang/test/Analysis/
H A Dmember-expr.cpp13 void testEnumVal(Foo Baz) { argument
14 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
17 void testEnumRef(Foo &Baz) { argument
18 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
21 void testEnumPtr(Foo *Baz) { argument
22 clang_analyzer_eval(Baz->Bar == Foo::Bar); // expected-warning{{TRUE}}
/external/lldb/test/lang/cpp/breakpoints/
H A Dnested.cpp7 class Baz class in namespace:Foo::Bar
10 Baz (int value):m_value(value) {} function in class:Foo::Bar::Baz
42 class Baz class
45 Baz (int value):m_value(value) {} function in class:Baz
64 Foo::Bar::Baz mine(200);
66 ::Baz bare_baz (500);
68 printf ("Yup, got %d from Baz.\n", mine.Function());
69 printf ("Yup, got %d from Baz.\n", mine2.Function());
70 printf ("Yup, got %d from Baz.\n", bare_baz.Function());
/external/clang/test/Index/
H A Dcodecompletion-chained.cpp19 extern int Baz;
H A Dlinkage.c3 enum Baz { Qux = 0 }; enum
22 // CHECK: EnumDecl=Baz:3:6 (Definition)linkage=External
H A Dprint-type.cpp9 struct Baz { }; struct in namespace:outer
27 Baz<int, 1, Foo> baz;
56 // CHECK: ClassTemplate=Baz:9:8 (Definition) [type=] [typekind=Invalid] [isPOD=0]
89 // CHECK: FieldDecl=baz:27:20 (Definition) [type=Baz<int, 1, Foo>] [typekind=Unexposed] [canonicaltype=outer::Baz<int, 1, Foo>] [canonicaltypekind=Record] [templateargs/3= [type=int] [typekind=Int]] [isPOD=1]
90 // CHECK: TemplateRef=Baz:9:8 [type=] [typekind=Invalid] [isPOD=0]
/external/clang/test/CodeGen/
H A D2009-06-18-StaticInitTailPadPack.c11 struct Baz { struct
17 struct Baz f2;
/external/clang/test/SemaTemplate/
H A Dms-delayed-default-template-args.cpp6 template <typename T = Baz> // expected-warning {{using the undeclared type 'Baz' as a default template argument is a Microsoft extension}}
8 typedef int Baz; typedef in namespace:test_basic
14 template <typename T = Baz> // expected-warning {{using the undeclared type 'Baz' as a default template argument is a Microsoft extension}}
18 typedef int Baz; typedef in namespace:test_namespace::nested
20 typedef double Baz; typedef in namespace:test_namespace
26 template <typename T = Baz> // expected-warning {{using the undeclared type 'Baz' as a default template argument is a Microsoft extension}}
30 typedef int Baz; typedef in struct:test_inner_class_template::Outer
32 typedef double Baz; typedef in namespace:test_inner_class_template
[all...]
H A Dexplicit-specialization-member.cpp34 class Baz { class in namespace:PR18246
41 void Baz<T>::bar() { // expected-note {{couldn't infer template argument 'N'}}
47 void Baz<T>::bar<0>() { // expected-error {{cannot specialize a member of an unspecialized template}} \
H A Dclass-template-decl.cpp73 typedef Bar<T1> Baz; typedef in struct:PR8001::Foo
82 Foo<int>::Baz x;
H A Dtemp_arg_nontype.cpp145 struct Baz {}; struct in namespace:ns
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/chromium_org/v8/test/webkit/
H A Dpolymorphic-construct.js36 function Baz() { class
51 shouldBe("construct(Baz).field", "'baz'");
/external/chromium_org/ppapi/generators/test_cgen_range/
H A Ddev_channel_interface.h80 * Baz() comment.
82 void (*Baz)(int32_t x); member in struct:TestDevToStable_1_2
94 void (*Baz)(int32_t x); member in struct:TestDevToStable_1_1
H A Ddev_channel_interface.idl63 * Baz() comment.
66 void Baz([in] int32_t x);
/external/chromium_org/tools/clang/plugins/tests/
H A Dbase_refcounted.cpp50 class Baz { class
56 class UnsafeTypedefChainInImpl : public Baz::MyLocalTypedef {
/external/protobuf/gtest/test/
H A Dgtest_list_tests_unittest_.cc61 TEST(FooBar, Baz) {
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3.cpp36 int Foo(Bar *b, void (*Baz)(const T &t), T * = 0) {
/external/chromium_org/tools/idl_parser/test_parser/
H A Dinterface_web.idl180 MyExtendedIdentListAttribute=(Foo, Bar, Baz)]
/external/chromium_org/testing/gtest/test/
H A Dgtest_list_tests_unittest_.cc59 TEST(FooBar, Baz) {
/external/gtest/test/
H A Dgtest_list_tests_unittest_.cc59 TEST(FooBar, Baz) {

Completed in 1299 milliseconds

12