代码搜索:declared
找到约 3,220 项符合「declared」的源代码
代码结果 3,220
www.eeworm.com/read/233448/4675926
c cleanup2.c
// { dg-do assemble }
// PRMS Id: 6303
// Bug: compiler crashes processing the cleanup for arrayOfClass.
class Class {
public:
~Class(); // This dtor MUST be declared to generate the error...
};
www.eeworm.com/read/233448/4676322
mm proto-lossage-5.mm
/* APPLE LOCAL file mainline */
/* Do not lose references to forward-declared protocols. */
/* { dg-do compile } */
@class MyBaseClass;
@class MyClassThatFails;
@protocol _MyProtocol;
@interface MyC
www.eeworm.com/read/233448/4676556
m proto-lossage-5.m
/* APPLE LOCAL file mainline */
/* Do not lose references to forward-declared protocols. */
/* { dg-do compile } */
@class MyBaseClass;
@class MyClassThatFails;
@protocol _MyProtocol;
@interface MyC
www.eeworm.com/read/233448/4686142
c reg-vol-struct-1.c
/* Test cases of structures with volatile fields declared register:
should be allowed unless register name given but explicitly taking
the address forbidden. */
/* Origin: Joseph Myers
www.eeworm.com/read/229812/4739146
c nogen03.c
#include "fail.h"
// Code references unimplemented copy constructor.
#include
struct Q {
Q();
~Q();
__cdecl Q( const Q & ); // declared but not implemented
www.eeworm.com/read/229812/4751611
gml extern.gml
.ix 'storage class' 'extern'
.ix 'extern storage class'
.*
.pp
If an object is declared with the keyword
.kw extern
inside a function, then the object has
.ix linkage external
.ix 'external li
www.eeworm.com/read/229812/4751640
gml volatile.gml
.ix 'volatile'
.ix 'type' 'volatile'
.pp
An object may be declared with the keyword
.kw volatile
..ct ..li .
Such an object may be freely modified by the program, and its value
also may be modi
www.eeworm.com/read/229812/4751695
gml const.gml
.ix 'const'
.ix 'type' 'const'
.pp
An object may be declared with the keyword
.kw const
..ct ..li .
Such an object may not be modified directly by the program.
For objects with static storage d
www.eeworm.com/read/216502/4890704
ss1
.tr *\(**
.tr |\(or
.SH
1: Basic Specifications
.PP
Names refer to either tokens or nonterminal symbols.
Yacc requires
token names to be declared as such.
In addition, for reasons discussed in Section
www.eeworm.com/read/190666/5175433
c 900220_01.c
// g++ 1.36.1 bug 900220_01
// Ref: 12.8
// Section 12.8 says:
// "That is, X::operator=() will be generated only if no assignment
// operation is explicitly declared and an object of class X is ac