代码搜索:declared

找到约 3,220 项符合「declared」的源代码

代码结果 3,220
www.eeworm.com/read/340665/3275020

c template12.c

// Build don't link: // 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 f
www.eeworm.com/read/340665/3276022

c 900127_02.c

// g++ 1.36.1 bug 900127_02 // g++ (mostly) keeps separate name spaces for the declarations of data // objects and functions. // This means that a single name may be declared as both a data object a
www.eeworm.com/read/340665/3276072

c 891229_02.c

// g++ 1.36.1 bug 891229_02 // g++ limits the scope of names which are declared as typedef names within // another type to that other type. // This conflicts with the (global) scope given to such na
www.eeworm.com/read/440906/1776515

c friend34.c

// Build don't link: // excess errors test // This testcase won't fail if class ::foo is forward-declared in the // global namespace, nor if class bar is not a template class. template
www.eeworm.com/read/440906/1776652

c template12.c

// Build don't link: // 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 f
www.eeworm.com/read/440906/1777654

c 900127_02.c

// g++ 1.36.1 bug 900127_02 // g++ (mostly) keeps separate name spaces for the declarations of data // objects and functions. // This means that a single name may be declared as both a data object a
www.eeworm.com/read/440906/1777704

c 891229_02.c

// g++ 1.36.1 bug 891229_02 // g++ limits the scope of names which are declared as typedef names within // another type to that other type. // This conflicts with the (global) scope given to such na
www.eeworm.com/read/402041/2333438

java nullvaluedb.java

package org.trinet.jdbc ; /** Data members Contain the default null values for the declared data types. * Methods compare input values to null defaults to test for null equivalence. */ public clas
www.eeworm.com/read/366702/2866057

c builtin5.c

// Verify that builtin is used when declared in namespace std // { dg-do compile } // { dg-options "-Wall" } namespace std { extern "C" int printf(const char*,...); } void foo() { std::printf("
www.eeworm.com/read/366702/2866731

c defarg12.c

/* PR28266 This used to ICE in gimple_add_tmp_var */ /* { dg-do "compile" } */ struct A { int i; A(int = X); /* { dg-error "was not declared in this scope" }*/ }; void foo() { A().i; }