代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/470720/1446388
c typename9.c
// Test to make sure that implicit typename doesn't break name binding rules.
// Special g++ Options: -w
typedef double A;
template class B {
typedef char A;
};
template struct X
www.eeworm.com/read/470720/1452569
c attr-6.c
/* Test for format attributes: test default attributes are applied
to implicit declarations. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=gnu89 -Wf
www.eeworm.com/read/470693/1456387
c instantiate2.c
// Test that 'static template' instantiates statics.
// { dg-do compile }
// { dg-options "-fno-implicit-templates" }
template struct A {
static T t;
};
template T A::t = 0;
www.eeworm.com/read/470693/1457879
c typename3.c
// Build don't link:
// Special g++ Options: -Wno-deprecated
template
struct A
{
typedef T A_Type;
};
template
struct B : public A
{
A_Type Func(); // WARNING - implicit
www.eeworm.com/read/470693/1458334
c typename9.c
// Test to make sure that implicit typename doesn't break name binding rules.
// Special g++ Options: -w
typedef double A;
template class B {
typedef char A;
};
template struct X
www.eeworm.com/read/470693/1464515
c attr-6.c
/* Test for format attributes: test default attributes are applied
to implicit declarations. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=gnu89 -Wf
www.eeworm.com/read/460526/1560754
f90 setcolor.f90
!
! 对话窗的示范之二
! By Perng 1997/09/26
program main
use DFLIB
implicit none
integer :: i,ix,iy
call ClearScreen($GCLEARSCREEN)
do while(.true.)
i = waitonmouseevent(MOUSE$LBUTTONDOWN,
www.eeworm.com/read/240162/4579144
c instantiate2.c
// Test that 'static template' instantiates statics.
// { dg-do compile }
// { dg-options "-fno-implicit-templates" }
template struct A {
static T t;
};
template T A::t = 0;
www.eeworm.com/read/240162/4581576
c typename9.c
// { dg-do run }
// { dg-options "-w" }
// Test to make sure that implicit typename doesn't break name binding rules.
typedef double A;
template class B {
typedef char A;
};
template
www.eeworm.com/read/240162/4583554
f 13060.f
subroutine geo2()
implicit none
integer ms,n,ne(2)
ne(1) = 1
ne(2) = 2
ms = 1
call call_me(ne(1)*ne(1))
n = ne(ms)
end