代码搜索:declared
找到约 3,220 项符合「declared」的源代码
代码结果 3,220
www.eeworm.com/read/402296/2326092
java hello.java
/* Hello.java - MBean implementation for the Hello World MBean.
This class must implement all the Java methods declared in the
HelloMBean interface, with the appropriate behavior for each one.
www.eeworm.com/read/402296/2326109
java hello.java
/* Hello.java - MBean implementation for the Hello World MBean.
This class must implement all the Java methods declared in the
HelloMBean interface, with the appropriate behavior for each one.
www.eeworm.com/read/381896/2639791
h shell.h
/**
* \file
* Interface for the Contiki shell.
* \author Adam Dunkels
*
* Some of the functions declared in this file must be implemented as
* a shell back-end in the architec
www.eeworm.com/read/370199/2786999
h shell.h
/**
* \file
* Interface for the Contiki shell.
* \author Adam Dunkels
*
* Some of the functions declared in this file must be implemented as
* a shell back-end in the architec
www.eeworm.com/read/370199/2787045
h shell.h
/**
* \file
* Interface for the Contiki shell.
* \author Adam Dunkels
*
* Some of the functions declared in this file must be implemented as
* a shell back-end in the architec
www.eeworm.com/read/366702/2866498
c crash31.c
struct A
{ // { dg-error "forward declaration" }
A : A; // { dg-error "expected|incomplete" }
A : B; // { dg-error "not declared|incomplete" }
A : A(); // { dg-error "undefined type|incomplete"
www.eeworm.com/read/366702/2867782
c pr27359.c
// PR c++/27359
// { dg-do compile }
void
foo ()
{
#pragma omp parallel for
for (int i; i < 1; ++i) // { dg-error "expected|was not declared" }
;
}
www.eeworm.com/read/366702/2868599
c crash60.c
//PR c++/27961
struct A
{
template void foo(X); // { dg-error "declared" }
};
template void f()(0); // { dg-error "initialized" }
www.eeworm.com/read/366702/2868697
c pseudodtor4.c
// PR c++/34068
// { dg-do compile }
template struct A
{
typedef int X;
A () { T (). ~X (); } // { dg-error "there are no arguments to|fpermissive|was not declared in this scope" }
};
www.eeworm.com/read/366702/2870470
c friend35.c
// { dg-do assemble }
class foo {
friend void bar(int); // { dg-error "" } must be declared first
};
template void bar(T);