代码搜索:fields
找到约 10,000 项符合「fields」的源代码
代码结果 10,000
www.eeworm.com/read/470720/1446905
c bit-fields2.c
// Build don't link:
// GROUPS passed bit-fields
struct {
char c;
int i:8;
} s;
int main()
{
int &ir = s.i; // ERROR - address of bitfield
int *ip = &s.i; // ERROR - address
www.eeworm.com/read/470720/1447008
c bit-fields1.c
// Build don't link:
// GROUPS passed bit-fields
struct bar {
int : 2 = 1;// ERROR - .*
};
www.eeworm.com/read/470693/1458578
c bit-fields2.c
// GROUPS passed bit-fields
// bitfield file
// Message-Id:
// From: mdivax1!robinson@ai.mit.edu (Jim Robinson)
// Subject: gcc 2.2.2 C++ bug in handling
www.eeworm.com/read/470693/1458669
c bit-fields1.c
// Build don't link:
// GROUPS passed bit-fields
typedef int A;
struct B
{
int A : 2;
} ;
www.eeworm.com/read/470693/1458763
c bit-fields3.c
// Build don't link:
// GROUPS passed bit-fields
class t {
short :(sizeof(short)-2);
public:
t();
};
www.eeworm.com/read/470693/1458851
c bit-fields2.c
// Build don't link:
// GROUPS passed bit-fields
struct {
char c;
int i:8;
} s;
int main()
{
int &ir = s.i; // ERROR - address of bitfield
int *ip = &s.i; // ERROR - address
www.eeworm.com/read/470693/1458954
c bit-fields1.c
// Build don't link:
// GROUPS passed bit-fields
struct bar {
int : 2 = 1;// ERROR - .*
};
www.eeworm.com/read/241188/4563133
tmpl hidden-fields.html.tmpl
#------------------------------------------------------------------------
# Compiled template generated by the Template Toolkit version 2.13
#----------------------------------------------------------
www.eeworm.com/read/241188/4563419
tmpl hidden-fields.html.tmpl
[%# 1.0@bugzilla.org %]
[%# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. Yo
www.eeworm.com/read/240162/4581820
c bit-fields2.c
// { dg-do run }
// GROUPS passed bit-fields
// bitfield file
// Message-Id:
// From: mdivax1!robinson@ai.mit.edu (Jim Robinson)
// Subject: gcc 2.2.2 C