代码搜索:declared
找到约 3,220 项符合「declared」的源代码
代码结果 3,220
www.eeworm.com/read/162614/5517656
c weak1.c
// Test for #pragma weak where the weak alias symbol isn't declared,
// although the symbol it is an alias for is defined in the
// translation unit. Bug 7544.
// Origin: Joseph Myers
www.eeworm.com/read/162614/5521023
c template12.c
// { dg-do assemble }
// Templates can be defined outside of the namespace if the have been declared
// inside
namespace bar
{
template
T const foo(T const &);
template const int
www.eeworm.com/read/162614/5522911
m weak-1.m
/* Test for #pragma weak where the weak alias symbol isn't declared,
although the symbol it is an alias for is defined in the
translation unit. Bug 7544. */
/* Origin: Joseph Myers
www.eeworm.com/read/162614/5528935
c weak-10.c
/* Test for #pragma weak where the weak alias symbol isn't declared,
although the symbol it is an alias for is defined in the
translation unit. Bug 7544. */
/* Origin: Joseph Myers
www.eeworm.com/read/340665/3275440
c err-msg10.c
// Build don't link:
// GROUPS passed error-messages
class foo {
public:
virtual static int f () = 0;// ERROR - member `f' cannot be declared both virtual and static.*
};
www.eeworm.com/read/338362/3318387
java notation.java
package org.w3c.dom;
/**
* This interface represents a notation declared in the DTD. A notation either
* declares, by name, the format of an unparsed entity (see section 4.7 of
* the XML 1.
www.eeworm.com/read/305277/3779109
check bug565.check
bug565.scala:2: error: only classes can have declared but undefined members
(Note that variables need to be initialized to be defined)
var s0: String
^
one error found
www.eeworm.com/read/296931/3896297
err palette.err
"palette.c", line 107: Warning: C2870W: variable 'pt2' declared but not used
palette.c: 1 warning, 0 errors, 0 serious errors
www.eeworm.com/read/440906/1777072
c err-msg10.c
// Build don't link:
// GROUPS passed error-messages
class foo {
public:
virtual static int f () = 0;// ERROR - member `f' cannot be declared both virtual and static.*
};
www.eeworm.com/read/419049/2081205
java classgenexception.java
package de.fub.bytecode.generic;
/**
* Thrown on internal errors. Extends RuntimeException so it hasn't to be declared
* in the throws clause every time.
*
* @version $Id: ClassGenException.java