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

1234567891011>>

/external/clang/test/SemaCXX/
H A Dzero-length-arrays.cpp5 class Foo { class
6 ~Foo();
7 Foo(const Foo&);
9 Foo(int);
14 Foo foos[0];
15 Foo foos2[0][2];
16 Foo foos3[2][0];
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
23 Foo(const Foo&) argument
[all...]
H A Dno-warn-composite-pointer-type.cpp5 void Foo(int **thing, const int **thingMax) function
/external/clang/test/CodeGenCXX/
H A D2010-05-12-PtrToMember-Dbg.cpp3 class Foo class
8 Foo (int i, int j) { x = i; y = j; } function in class:Foo
12 Foo foo(10, 11);
15 int Foo::* pmi = &Foo::y;
H A Dfriend-redecl.cpp4 struct Foo { struct
5 friend bool TryFoo(Foo *f2) { return TryFoo(0, f2); }
12 friend bool TryFoo(int, Foo *f3);
14 bool TryFoo(Foo *f5);
16 Foo f;
H A Dlinetable-fnbegin.cpp2 // Test that the line table info for Foo<T>::bar() is pointing to the
17 class Foo { class
23 int Foo<T>::bar() {
28 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 Dpr28360.cpp3 void Foo();
4 void Foo(int);
11 void Baz() { Bar(&A::Foo); }
15 // CHECK: store i8* bitcast (void (%struct.A*)* @"\01?Foo@A@@QAEXXZ" to i8*), i8** %[[ref_tmp]], align 4
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) {
/external/clang/test/Analysis/
H A Denum.cpp5 enum class Foo { class
10 return Foo::Zero == (Foo)x; // don't crash
14 Foo f = static_cast<Foo>(i);
18 clang_analyzer_eval(f == Foo::Zero); // expected-warning{{TRUE}}
23 clang_analyzer_eval(f == Foo::Zero); // expected-warning{{FALSE}}
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
H A Dp3.cpp7 class Foo { class in namespace:test0::A
10 void foo(const Foo &foo);
17 foo(A::Foo()); // expected-error {{not a function}}
/external/clang/test/CodeGen/
H A Dubsan-type-blacklist.cpp10 class Foo : public Bar {}; class in inherits:Bar
19 Foo* foo = static_cast<Foo*>(&bar); // down-casting
/external/clang/test/SemaTemplate/
H A Doverloaded-functions.cpp5 void Foo() {} function in namespace:__anon3634
8 void Foo() { function in namespace:__anon3634
15 Foo<-1>();
16 // expected-note@-1 {{in instantiation of function template specialization '(anonymous namespace)::Foo<-1>' requested here}}
/external/clang/test/Modules/Inputs/self-import-header/af.framework/Headers/
H A Da1.h3 @interface Foo
/external/clang/test/PCH/
H A Dchain-predecl.h2 @class Foo;
/external/python/cpython2/Lib/test/
H A Dsample_doctest_no_docstrings.py7 class Foo(object): class in inherits:object
H A Dsample_doctest_no_doctests.py9 class Foo(object): class in inherits:object
/external/python/cpython3/Lib/test/
H A Dsample_doctest_no_docstrings.py7 class Foo(object): class in inherits:object
H A Dsample_doctest_no_doctests.py9 class Foo(object): class in inherits:object
/external/v8/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);

Completed in 2048 milliseconds

1234567891011>>