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

1 2 3 4 5 6 7 8 91011>>

  /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/
pr15753.cpp 3 template <typename T> static int Foo(T t);
5 int Foo(T t) {
8 template<> int Foo<int>(int i) {
virt-dtor-gen.cpp 5 class Foo {
6 virtual ~Foo();
8 Foo::~Foo() {}
10 // CHECK-LABEL: define {{.*}}void @_ZN3FooD0Ev(%class.Foo* %this) unnamed_addr
constructor-attr.cpp 7 struct Foo {
9 static void foo() __attribute__((constructor)) { function in struct:Foo
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()
  /external/clang/test/Index/
annotate-tokens-with-default-args.h 1 struct Foo {
2 void m(Foo *f = 0);
  /external/clang/test/Misc/Inputs/
working-directory.h 1 typedef int Foo;
  /external/clang/test/SemaCXX/
no-warn-composite-pointer-type.cpp 5 void Foo(int **thing, const int **thingMax)
  /external/clang/test/VFS/Inputs/UsesFoo.framework/Headers/
UsesFoo.h 1 @import Foo;
  /external/v8/test/mjsunit/bugs/
bug-222.js 28 function Foo(a, b) { }
29 Foo();
30 var oldArgs = Foo.arguments;
31 Foo();
32 var newArgs = Foo.arguments
37 Foo.arguments = oldArgs;
38 assertEquals(Foo.arguments, newArgs);
41 assertFalse(delete Foo.arguments);
42 assertEquals(Foo.arguments, newArgs);
  /ndk/sources/android/crazy_linker/tests/
foo.cpp 8 extern "C" void Foo() {
10 __android_log_write(ANDROID_LOG_INFO, "foo", "Hello World!");
11 fprintf(stderr, "Hello World from Foo!\n");
  /external/clang/test/FixIt/
no-diagnostics-fixit-info.c 4 struct Foo {
  /external/v8/test/webkit/
dfg-inline-constructor-that-uses-arguments.js 28 function Foo() {
33 return new Foo(42);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
sample_doctest_no_docstrings.py 7 class Foo(object):
sample_doctest_no_doctests.py 9 class Foo(object):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
sample_doctest_no_docstrings.py 7 class Foo(object):
sample_doctest_no_doctests.py 9 class Foo(object):
  /external/clang/test/Analysis/
dtor-cxx11.cpp 7 struct Foo {
8 ~Foo() {}
12 for (Foo foo : {Foo(), Foo()}) {}
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh31.cpp 6 class Foo {
8 Foo() { ++count; }
9 Foo(const Foo&) { ++count; }
10 ~Foo() { --count; }
16 throw Foo();
18 catch (Foo& object) {
p7912.cpp 7 class Foo {
9 Foo() { ++count; };
10 Foo(const Foo&) { ++count; };
11 ~Foo() { --count; };
18 throw Foo();
20 catch (Foo object) {
  /ndk/tests/device/test-stlport_static-exception/jni/
eh31.cpp 6 class Foo {
8 Foo() { ++count; }
9 Foo(const Foo&) { ++count; }
10 ~Foo() { --count; }
16 throw Foo();
18 catch (Foo& object) {
p7912.cpp 7 class Foo {
9 Foo() { ++count; };
10 Foo(const Foo&) { ++count; };
11 ~Foo() { --count; };
18 throw Foo();
20 catch (Foo object) {
  /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);

Completed in 870 milliseconds

1 2 3 4 5 6 7 8 91011>>