Searched refs:Foo (Results 51 - 75 of 354) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Dlinetable-fnbegin.cpp2 // Test that the line table info for Foo<T>::bar() is pointing to the
15 class Foo { class
21 int Foo<T>::bar() {
26 Foo<int> f;
H A Dpr15753.cpp3 template <typename T> static int Foo(T t);
5 int Foo(T t) { function
8 template<> int Foo<int>(int i) { function
H A D2005-02-19-UnnamedVirtualThunkArgument.cpp3 struct Foo { struct
4 Foo();
5 virtual ~Foo();
14 struct Baz : public Foo, public Bar {
H A Dmangle-windows.cpp23 struct Foo { struct
28 void Foo::foo() {}
29 // WIN: define x86_stdcallcc void @"\01?foo@Foo@@QAGXXZ"
32 void Foo::bar() {}
33 // WIN: define x86_stdcallcc void @"\01?bar@Foo@@SGXXZ"
39 extern "C" void __stdcall operator++(Foo &x) {
H A Dunion-dtor.cpp6 struct Foo { struct
7 Foo() { static_assert(b, "Foo::Foo used"); } function in struct:Foo
8 ~Foo() { static_assert(b, "Foo::~Foo used"); }
19 Foo<> foo;
27 Foo<> foo;
35 // The ctor and dtor of Foo<> an
[all...]
/external/clang/test/SemaCXX/
H A Dconstructor.cpp4 class Foo { class
5 Foo();
6 (Foo)(float) { } function in class:Foo
7 explicit Foo(int); // expected-note {{previous declaration is here}}
8 Foo(const Foo&);
10 ((Foo))(INT); // expected-error{{cannot be redeclared}}
12 Foo(Foo foo, int i = 17, int j = 42); // expected-error{{copy constructor must pass its first argument by reference}}
14 static Foo(shor
24 Foo(const Foo&) argument
[all...]
H A Dno-warn-composite-pointer-type.cpp5 void Foo(int **thing, const int **thingMax) function
/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dconst-scoped_refptr&-to-raw-adds-get-expected.cc7 class Foo { class
13 const scoped_refptr<Foo>& foo() const { return foo_; }
16 scoped_refptr<Foo> foo_;
21 Foo* f = b.foo().get();
H A Dconst-scoped_refptr&-to-raw-adds-get-original.cc7 class Foo { class
13 const scoped_refptr<Foo>& foo() const { return foo_; }
16 scoped_refptr<Foo> foo_;
21 Foo* f = b.foo();
H A Dtest5-expected.cc7 struct Foo { struct
11 struct Bar : public Foo {
16 void ExpectsRawFooPtr(Foo* foo) {
17 Foo* temp = foo;
H A Dtest5-original.cc7 struct Foo { struct
11 struct Bar : public Foo {
16 void ExpectsRawFooPtr(Foo* foo) {
17 Foo* temp = foo;
H A Dtest6-expected.cc7 struct Foo { struct
11 struct Bar : public Foo {
17 void ExpectsScopedPtr(const scoped_refptr<Foo>& foo) {
18 scoped_refptr<Foo> temp(foo);
H A Dtest6-original.cc7 struct Foo { struct
11 struct Bar : public Foo {
17 void ExpectsScopedPtr(const scoped_refptr<Foo>& foo) {
18 scoped_refptr<Foo> temp(foo);
H A Dtest11-expected.cc9 struct Foo { struct
13 typedef std::vector<scoped_refptr<Foo> > FooList;
17 list.push_back(new Foo);
18 list.push_back(new Foo);
22 Foo* item = it->get();
H A Dtest11-original.cc9 struct Foo { struct
13 typedef std::vector<scoped_refptr<Foo> > FooList;
17 list.push_back(new Foo);
18 list.push_back(new Foo);
22 Foo* item = *it;
H A Dtest8-expected.cc7 struct Foo { struct
11 struct Bar : public Foo {
15 void ExpectsRawPtr(Foo* foo) {
16 Foo* temp = foo;
21 // Bar* -> Foo* conversion).
22 Foo* GetHeapFoo() {
H A Dtest8-original.cc7 struct Foo { struct
11 struct Bar : public Foo {
15 void ExpectsRawPtr(Foo* foo) {
16 Foo* temp = foo;
21 // Bar* -> Foo* conversion).
22 Foo* GetHeapFoo() {
/external/clang/test/Modules/self-import-header/af.framework/Headers/
H A Da1.h3 @interface Foo
/external/clang/test/PCH/
H A Dchain-predecl.h2 @class Foo;
/external/clang/test/Index/
H A Dcomplete-memfunc-cvquals.cpp3 struct Foo { struct
17 void text(Foo f, Foo *fp, const Foo &fc, const Foo *fcp,
18 smart_ptr<Foo> sf, const smart_ptr<Foo> &sfc, Foo volatile *fvp) {
28 void Foo::bar() {
32 void Foo
[all...]
/external/chromium_org/v8/test/webkit/
H A Ddfg-inline-constructor-that-uses-arguments.js28 function Foo() { class
33 return new Foo(42);
/external/clang/test/CodeGen/
H A Darrayderef.c11 struct foo Foo[1]; variable in typeref:struct:foo
15 return &Foo->y[ix];
/external/clang/test/SemaTemplate/
H A Dinstantiate-overloaded-arrow.cpp14 void Foo() { function
19 Foo<int>();
H A Dexception-spec-crash.cpp21 class Foo { class
22 Foo(Foo &&) noexcept = default;
28 Foo &operator=(Foo &&) noexcept = default;
/external/lldb/test/lang/cpp/wchar_t/
H A Dmain.cpp11 class Foo class
14 Foo () : object() {} function in class:Foo
15 Foo (T x) : object(x) {} function in class:Foo
24 Foo<int> foo_x('a');
25 Foo<wchar_t> foo_y(L'a');

Completed in 310 milliseconds

1234567891011>>