HomeSort by relevance Sort by last modified time
    Searched refs:Baz (Results 1 - 25 of 34) sorted by null

1 2

  /external/clang/test/CodeGenCXX/
2005-02-19-UnnamedVirtualThunkArgument.cpp 14 struct Baz : public Foo, public Bar {
15 Baz();
16 virtual ~Baz();
20 bool Baz::test(bool) const {
  /external/chromium_org/build/android/tests/symbolize/
b.cc 8 void Baz(float f);
13 void B::Baz(float f) {}
  /external/clang/test/SemaCXX/
PR9572.cpp 12 struct Baz {
14 Baz() { }
warn-shadow.cpp 49 static void Baz();
54 void Foo::Baz() {
using-decl-templates.cpp 54 struct Baz {
57 template <class T> struct Bar : public Foo<T>, Baz {
59 using Baz::k;
warn-enum-compare.cpp 10 enum Baz {B1, B2, B3};
14 enum Baz {B1, B2, B3};
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/
member-expr.cpp 13 void testEnumVal(Foo Baz) {
14 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
17 void testEnumRef(Foo &Baz) {
18 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
21 void testEnumPtr(Foo *Baz) {
22 clang_analyzer_eval(Baz->Bar == Foo::Bar); // expected-warning{{TRUE}}
  /external/lldb/test/lang/cpp/breakpoints/
nested.cpp 7 class Baz
10 Baz (int value):m_value(value) {}
42 class Baz
45 Baz (int value):m_value(value) {}
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/
codecompletion-chained.cpp 19 extern int Baz;
linkage.c 3 enum Baz { Qux = 0 };
22 // CHECK: EnumDecl=Baz:3:6 (Definition)linkage=External
print-type.cpp 9 struct Baz { };
27 Baz<int, 1, Foo> baz; member in struct:outer::inner::Bar
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/
2009-06-18-StaticInitTailPadPack.c 11 struct Baz {
17 struct Baz f2;
  /external/clang/test/SemaTemplate/
ms-delayed-default-template-args.cpp 6 template <typename T = Baz> // expected-warning {{using the undeclared type 'Baz' as a default template argument is a Microsoft extension}}
8 typedef int Baz;
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;
20 typedef double Baz;
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;
    [all...]
explicit-specialization-member.cpp 34 class Baz {
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}} \
class-template-decl.cpp 73 typedef Bar<T1> Baz;
82 Foo<int>::Baz x;
temp_arg_nontype.cpp 74 double baz(double);
85 A6<&Z::baz> *a17_3; // expected-error-re{{non-type template argument of type 'double (Z::*)(double){{( __attribute__\(\(thiscall\)\))?}}' cannot be converted to a value of type 'int (Z::*)(int){{( __attribute__\(\(thiscall\)\))?}}'}}
145 struct Baz {};
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/ppapi/generators/test_cgen_range/
dev_channel_interface.h 80 * Baz() comment.
82 void (*Baz)(int32_t x);
94 void (*Baz)(int32_t x);
dev_channel_interface.idl 63 * Baz() comment.
66 void Baz([in] int32_t x);
  /external/chromium_org/tools/clang/plugins/tests/
base_refcounted.cpp 50 class Baz {
56 class UnsafeTypedefChainInImpl : public Baz::MyLocalTypedef {
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 36 int Foo(Bar *b, void (*Baz)(const T &t), T * = 0) {
  /external/chromium_org/tools/idl_parser/test_parser/
interface_web.idl 180 MyExtendedIdentListAttribute=(Foo, Bar, Baz)]
  /external/chromium_org/testing/gtest/test/
gtest_list_tests_unittest_.cc 59 TEST(FooBar, Baz) {
  /external/chromium_org/v8/test/webkit/
polymorphic-construct.js 36 function Baz() {
37 this.field = "baz";
51 shouldBe("construct(Baz).field", "'baz'");
  /external/gtest/test/
gtest_list_tests_unittest_.cc 59 TEST(FooBar, Baz) {
  /external/clang/unittests/ASTMatchers/Dynamic/
ParserTest.cpp 94 Sema.parse("\"Baz");
98 EXPECT_EQ("1:1: Error parsing string token: <\"Baz>", Sema.Errors[2]);
122 const uint64_t ExpectedBaz = Sema.expectMatcher("Baz");
123 Sema.parse(" Foo ( Bar ( 17), Baz( \n \"B A,Z\") ) .bind( \"Yo!\") ");
138 const MockSema::MatcherInfo Baz = Sema.Matchers[1];
139 EXPECT_EQ("Baz", Baz.MatcherName);
140 EXPECT_TRUE(matchesRange(Baz.NameRange, 1, 2, 19, 10));
141 EXPECT_EQ(1ULL, Baz.Args.size());
142 EXPECT_EQ("B A,Z", Baz.Args[0].Value.getString())
    [all...]

Completed in 1751 milliseconds

1 2