HomeSort by: relevance | last modified time | path
    Searched defs:Foo (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.go/
package2.go 5 func Foo () {
6 fmt.Println ("Hi, I'm package2.Foo.")
methods.go 7 func (t T) Foo () {
18 t.Foo ()
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.go/
package2.go 5 func Foo () {
6 fmt.Println ("Hi, I'm package2.Foo.")
methods.go 7 func (t T) Foo () {
18 t.Foo ()
  /src/sys/external/bsd/compiler_rt/dist/test/profile/Inputs/
instrprof-comdat-1.cpp 7 FOO<int> Foo;
9 int Res = Foo.DoIt(10);
instrprof-comdat-2.cpp 5 FOO<long> Foo;
6 FOO<int> Foo2;
9 return (int)Foo.DoIt(10);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-template.cc 19 struct Foo {
28 Foo<TYPE> foo; local
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-template.cc 19 struct Foo {
28 Foo<TYPE> foo; local
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
gdb701.c 8 typedef struct _foo Foo;
13 Foo *foo = 0; local
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
gdb701.c 8 typedef struct _foo Foo;
13 Foo *foo = 0; local
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
subtypes.cc 23 struct Foo
26 } foo; local
40 return foo.doit () + bar.doit () + baz.doit () + foobar<int> (6)
cpcompletion.cc 9 class Foo : public Base
16 Foo () { foo_value = 0;}
17 Foo (int i) { foo_value = i;}
18 ~Foo () { }
25 bool operator== (const Foo &other) { return foo_value == other.foo_value; }
28 void Foo::set_foo (int value)
33 int Foo::get_foo ()
38 void Foo::Foofoo ()
44 int foo; member in namespace:Test_NS
84 Foo foo1
    [all...]
call-c.cc 25 struct Foo {
26 Foo() : x_(1) { }
32 typedef Foo *FooHandle;
35 int foo(int);
63 Foo f;
64 Foo *pf = &f;
65 Foo* &rf = pf;
68 foo(0);
subtypes.h 23 struct Foo
26 } foo; local
38 return arg - foo.doit () - bar.doit () - baz.doit ();
anon-union.cc 2 struct Foo {
38 Foo foo = {0, 0}; local
40 foo.paper = 33;
41 foo.pebble = 44;
42 foo.mux = 55;
templates.cc 564 class Foo {
568 T foo (int, T);
572 template<class T> T Foo<T>::foo (int i, T tt) function in class:Foo
782 Foo<int> fint={0,0};
783 Foo<char> fchar={0,0};
784 Foo<volatile char *> fvpchar = {0, 0};
797 int x = fint.foo(33, 47);
798 char c = fchar.foo(33, 'x');
799 volatile char * cp = fvpchar.foo(33, 0)
    [all...]
classes.cc 117 int foo (int &) const;
122 int const_vol_method_class::foo (int & ir) const function in class:const_vol_method_class
406 class Foo
412 Foo (int i, int j) { x = i; y = j; }
418 typedef Foo ByAnyOtherName;
420 class Bar : public Base1, public Foo {
423 Bar (int i, int j, int k) : Base1 (10*k), Foo (i, j) { z = k; }
426 int Foo::operator! () { return !x; }
428 int Foo::times (int y) { return x * y; }
430 int Foo::st = 100
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
subtypes.cc 23 struct Foo
26 } foo; local
40 return foo.doit () + bar.doit () + baz.doit () + foobar<int> (6)
cpcompletion.cc 9 class Foo : public Base
16 Foo () { foo_value = 0;}
17 Foo (int i) { foo_value = i;}
18 ~Foo () { }
25 bool operator== (const Foo &other) { return foo_value == other.foo_value; }
28 void Foo::set_foo (int value)
33 int Foo::get_foo ()
38 void Foo::Foofoo ()
44 int foo; member in namespace:Test_NS
84 Foo foo1
    [all...]
call-c.cc 25 struct Foo {
26 Foo() : x_(1) { }
32 typedef Foo *FooHandle;
35 int foo(int);
63 Foo f;
64 Foo *pf = &f;
65 Foo* &rf = pf;
68 foo(0);
subtypes.h 23 struct Foo
26 } foo; local
38 return arg - foo.doit () - bar.doit () - baz.doit ();
anon-union.cc 2 struct Foo {
38 Foo foo = {0, 0}; local
40 foo.paper = 33;
41 foo.pebble = 44;
42 foo.mux = 55;
templates.cc 564 class Foo {
568 T foo (int, T);
572 template<class T> T Foo<T>::foo (int i, T tt) function in class:Foo
782 Foo<int> fint={0,0};
783 Foo<char> fchar={0,0};
784 Foo<volatile char *> fvpchar = {0, 0};
797 int x = fint.foo(33, 47);
798 char c = fchar.foo(33, 'x');
799 volatile char * cp = fvpchar.foo(33, 0)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
amd64-eval.cc 76 class Foo
130 Foo foo; local
131 foo.return_simple_base(1);
132 foo.return_simple_derived(2);
133 foo.return_non_trivial_destructor(3);
134 foo.return_unaligned(4, 5);
135 foo.return_unaligned_in_base(6, 7, 8);
136 foo.return_bitfields(23, 74);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
amd64-eval.cc 76 class Foo
130 Foo foo; local
131 foo.return_simple_base(1);
132 foo.return_simple_derived(2);
133 foo.return_non_trivial_destructor(3);
134 foo.return_unaligned(4, 5);
135 foo.return_unaligned_in_base(6, 7, 8);
136 foo.return_bitfields(23, 74);

Completed in 35 milliseconds

1 2