Searched refs:base (Results 1 - 25 of 1274) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dinitlist33.C4 struct base struct
6 virtual ~base() { }
11 base ptr_array[1];
12 ptr_array = { base() }; // { dg-error "assign" }
H A Dconstexpr-access.C3 class base class
6 constexpr base() { } function in class:base
9 struct A : base { };
H A Dinitlist-protected.C4 class base class
7 base() function in class:base
11 class derived : public base
15 : base{} // <-- Note the c++11 curly brace syntax
H A DWdtor1.C5 class base class
8 ~base () {}
11 class derive final : public base
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lto/
H A D20081125_1.C3 base *
4 base::factory(void)
H A D20081125.h1 class base class
4 base() {} function in class:base
5 virtual ~base() {}
6 static base *factory (void);
9 class object : public base
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/powerpc/
H A Davoid-indexed-addresses.c10 do_one (char *base, unsigned long offset) argument
12 return base[offset];
H A Dindexed-addr.c6 /* Ensure that indexed address are output with base address in rA position
10 do_one (char *base, unsigned long offset) argument
12 return base[offset];
/haiku-buildtools/legacy/gcc/libiberty/
H A Dbasename.c27 const char *base = name; local
33 base = name;
36 return (char *) base;
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dref1.C4 struct base { struct
5 base () { ++count; } function in struct:base
6 ~base () { --count; }
7 base(const base&o) { ++count; } argument
10 base base_returning_function ();
12 const base& base_ref = base_returning_function ();
19 base base_returning_function () {
20 base local_base_object;
H A Dp9732b.C11 struct base { struct
12 base () { ++count; } function in struct:base
13 ~base () { --count; }
14 base(const base&o) { ++count; } argument
35 base base_object;
37 base base_returning_function ();
39 const base& base_ref = base_returning_function ();
44 base base_returning_function () {
45 base local_base_objec
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dreference1.C15 struct base { struct
18 base () {} function in struct:base
22 base base_object;
24 base base_returning_function ();
30 const base& base_ref = base_returning_function ();
44 base base_returning_function ()
46 base local_base_object;
52 void base::function_member () const
H A Ddelete2.C8 struct base { struct
12 base* bp;
21 bp = (base *) 0;
H A Doperators5.C7 struct base { struct
11 base base_variable;
13 base operator+ (const base& left, const base& right)
15 base ret_val;
21 base operator- (const base& left, int right)
23 base ret_val;
29 // Define the unary ! operator for class base t
[all...]
H A Dvisibility10.C3 struct base struct
9 struct derived : public base
12 void derived_func(base *ptr) { ptr->base_func(); }// { dg-error "" } within this context
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dwrfsbase-1.c8 write_fs_base32 (unsigned int base) argument
10 _writefsbase_u32 (base);
H A Dwrfsbase-2.c8 write_fs_base64 (unsigned long long base) argument
10 _writefsbase_u64 (base);
H A Dwrgsbase-1.c8 write_gs_base32 (unsigned int base) argument
10 _writegsbase_u32 (base);
H A Dwrgsbase-2.c8 write_gs_base64 (unsigned long long base) argument
10 _writegsbase_u64 (base);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/init/
H A Dvalue5.C3 class base { class
5 base();
6 virtual ~base();
9 int& int_ref; // initialized by base ctor, not visible here
12 class derived : public base {
15 base *make_derived() {
/haiku-buildtools/legacy/binutils/libiberty/
H A Dlbasename.c51 const char *base; local
59 for (base = name; *name; name++)
61 base = name + 1;
63 return base;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ext/
H A Ddllimport12.C7 struct base struct
10 __attribute__((dllimport)) virtual ~base();
13 void base::key_method() {}
17 struct derived : public base
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/inherit/
H A Dconv2.C4 class base { class
6 base() {} function in class:base
11 class derived : public base {
16 static bool x = true ? (derived*)0 : (base*)0;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/warn/
H A DWstrict-aliasing-bogus-base-derived.C5 class base { class
10 class derived: public base {
15 base foo () {
17 base* pb = &d; /* { dg-bogus "base vs. derived" } */
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dinstantiate13.C10 struct base struct
12 base();
13 base(unsigned);
25 base<double> x;

Completed in 292 milliseconds

1234567891011>>