代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/366702/2873340
f90 initializer.f90
! Program to test static variable initialization
! returns the parameter from the previous invocation, or 42 on the first call.
function test (parm)
implicit none
integer test, parm
integer :
www.eeworm.com/read/366702/2873353
f90 dummyfn.f90
! Program to test array valued dummy functions
SUBROUTINE dummyfn(deriv)
implicit none
INTERFACE
FUNCTION deriv()
REAL :: deriv(4)
END FUNCTION deriv
END INTERFACE
RE
www.eeworm.com/read/366702/2873362
f90 emptyif.f90
! Program to test empty IF statements
program emptyif
implicit none
logical c
logical d
if (c) then
c = .true.
end if
if (c) then
else
c = .true.
end if
if
www.eeworm.com/read/366702/2873391
f90 gen_interf.f90
! Program to test generic interfaces.
program gen_interf
implicit none
interface gen
function ifn (a)
integer :: a, ifn
end function
end interface
interface gsub
www.eeworm.com/read/366702/2873393
f90 module_result.f90
! Result variables in module procedures
module module_result
implicit none
contains
function test () result (res)
integer res
res = 0
end function
end module
www.eeworm.com/read/366702/2876074
f90 allocatable_dummy_1.f90
! { dg-do run }
! Test procedures with allocatable dummy arguments
program alloc_dummy
implicit none
integer, allocatable :: a(:)
integer, allocatable :: b(:)
call init(a)
if (.N
www.eeworm.com/read/366702/2876944
f90 derived_init_1.f90
! { dg-do run }
! Check that allocatable/pointer variables of derived types with initialized
! components are are initialized when allocated
! PR 21625
program test
implicit none
type :: t
www.eeworm.com/read/366702/2877014
f90 stfunc_3.f90
! { dg-do compile }
! Tests the fix for PR20867 in which implicit typing was not done within
! statement functions and so was not confirmed or not by subsequent
! type delarations.
!
! Contributed by
www.eeworm.com/read/366702/2882717
c wimplicit-function-declaration-c89-default.c
/* { dg-do compile } */
/* { dg-options "-std=c89" } */
void f(void)
{
puts("Hello"); /* { dg-bogus "warning: implicit declaration of function" } */
}
www.eeworm.com/read/354521/3077544
asn pgpx509cert.asn
--
-- Definitions for X.509 V3 certificates for use in PGP
--
-- String type definitions for extensions and name fields
UniversalString ::= [UNIVERSAL 28] IMPLICIT OCTET STRING
BMPString ::=