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

1 2 3 4 5 6 7 8 9

  /external/clang/test/CodeGen/
2002-03-14-QuotesInStrConst.c 8 const char *Foo() {
pascal-string.c 3 unsigned char * Foo( void )
  /external/clang/test/CodeGenCXX/
virt-dtor-gen.cpp 5 class Foo {
6 virtual ~Foo();
8 Foo::~Foo() {}
10 // CHECK: define void @_ZN3FooD0Ev(%class.Foo* %this) unnamed_addr
copy-initialization.cpp 3 struct Foo {
4 Foo();
5 Foo(const Foo&);
10 operator const Foo&() const;
13 void f(Foo);
15 // CHECK: define void @_Z1g3Foo(%struct.Foo* %foo)
16 void g(Foo foo) {
    [all...]
member-init-assignment.cpp 4 struct Foo {
7 Foo(unsigned arg);
10 Foo::Foo(unsigned arg) : file_id(arg = 42)
13 // CHECK: define {{.*}} @_ZN3FooC2Ej(%struct.Foo* %this, i32 %arg) unnamed_addr
17 // CHECK: ret {{void|%struct.Foo}}
virt-canonical-decl.cpp 12 class Foo : public Base {
14 virtual ~Foo();
17 Foo::~Foo()
2010-05-12-PtrToMember-Dbg.cpp 3 class Foo
8 Foo (int i, int j) { x = i; y = j; }
12 Foo foo(10, 11);
15 int Foo::* pmi = &Foo::y;
16 return foo.*pmi;
friend-redecl.cpp 4 struct Foo {
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;
2005-02-19-UnnamedVirtualThunkArgument.cpp 3 struct Foo {
4 Foo();
5 virtual ~Foo();
14 struct Baz : public Foo, public Bar {
  /external/clang/test/Misc/Inputs/
working-directory.h 1 typedef int Foo;
  /external/clang/test/Misc/
working-directory.c 5 Foo bar;
  /system/extras/tests/bionic/libc/bionic/
lib_static_init.h 4 class Foo {
10 Foo();
11 virtual ~Foo();
14 Foo::~Foo()
18 extern Foo theFoo;
lib_static_init.cpp 4 Foo::Foo()
7 value = ++Foo::counter;
8 fprintf(stderr, "Foo::Foo for this=%p called (counter = %d)\n", this, counter);
11 int Foo::getValue()
16 int Foo::counter;
18 Foo theFoo;
lib_relocs.c 6 struct foo { int first, second; }; struct
7 struct foo Foo = {1, 2};
9 int* FooPtr[] = { &Foo.first, &Foo.second };
  /external/clang/test/Index/
annotate-tokens-with-default-args.cpp 3 void Foo::m(Foo *f) {}
7 // CHECK: Identifier: "Foo" [3:6 - 3:9] TypeRef=struct Foo:1:8
11 // CHECK: Identifier: "Foo" [3:13 - 3:16] TypeRef=struct Foo:1:8
annotate-tokens-with-default-args.h 1 struct Foo {
2 void m(Foo *f = 0);
complete-qualified.cpp 6 class Foo
9 C<Foo, class Bar> c;
12 void foo() function
14 Foo::
17 // CHECK-CC1: FieldDecl:{ResultType C<Foo, class Bar>}{TypedText c} (35)
18 // CHECK-CC1: ClassDecl:{TypedText Foo} (35)
19 // CHECK-CC1: CXXMethod:{ResultType Foo &}{TypedText operator=}{LeftParen (}{Placeholder const Foo &}{RightParen )} (35)
20 // CHECK-CC1: CXXDestructor:{ResultType void}{TypedText ~Foo}{LeftParen (}{RightParen )} (35)
  /external/clang/test/PCH/
chain-predecl.h 2 @class Foo;
  /external/clang/test/SemaCXX/
PR9572.cpp 5 struct Foo : public Base { // expected-error {{base class 'Base' has private destructor}}
7 Foo();
9 struct Bar : public Foo {
10 Bar() { } // expected-note {{implicit default destructor for 'Foo' first required here}}
13 Foo f;
uninit-variables-conditional.cpp 3 class Foo {
5 Foo();
6 ~Foo();
15 // the destructor in Foo fouls about the minor bit of path-sensitivity in
19 if (bar() || baz() || Foo() || init(&x))
constructor.cpp 4 class Foo {
5 Foo();
6 (Foo)(float) { }
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 refe (…)
    [all...]
  /ndk/tests/build/multiple-static-const/jni/
main.cpp 3 const int Foo::CONST_1 = 42;
4 const double Foo::CONST_2 = 3.14159265;
6 extern void foo(void);
10 foo();
  /development/ndk/tests/dlclose-destruction/jni/
libtest1.cpp 4 class Foo
7 Foo() { mAddress = NULL; }
9 ~Foo();
14 void Foo::setAddress(int *px)
20 Foo::~Foo()
26 static Foo foo; variable
30 foo.setAddress(px);
  /system/extras/tests/bionic/libc/common/
test_static_cpp_mutex.cpp 34 class Foo {
39 Foo();
40 virtual ~Foo();
43 Foo::Foo()
54 Foo::~Foo()
59 int Foo::getValue()
64 static Foo f;
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
p3.cpp 7 class Foo {
10 void foo(const Foo &foo);
14 enum E { foo = 0 }; enumerator in enum:test0::Test::E
17 foo(A::Foo()); // expected-error {{not a function}}

Completed in 481 milliseconds

1 2 3 4 5 6 7 8 9