代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/190666/5175449
c 900205_04.c
// g++ 1.36.1 bug 900205_04
// g++ allows a class for which an implicit default X::X() constructor must
// be created (implicitly by the compiler) to be derived from another class
// which does not h
www.eeworm.com/read/173141/5379003
sql implicitconversions.sql
-- ** insert implicitConversionsPositive.sql
-- tests for implicit conversions between string and non-string types
-- and vice versa
-- create an all types table
create table all1(si smallint, i int,
www.eeworm.com/read/169697/5412977
in fcoll_test.f.in
program main
implicit none
include 'mpif.h'
@F77MPIOINC@
! Fortran equivalent of coll_test.c
integer FILESIZE
parameter (FILESIZE=32*32*32*4)
! A 32^3
www.eeworm.com/read/162614/5522044
c 900211_04.c
// { dg-do assemble }
// g++ 1.36.1 bug 900211_04
// g++ fails to flag as errors attempts to compare pointer values against
// (nonzero) integer values;
// Since implicit conversions of pointer to
www.eeworm.com/read/162614/5522179
c template36.c
// { dg-do run }
// Testcase for implicit 'typename' and resolution of 'typename's in the
// current scope.
class base1 {
public:
int bar() const
{ return 1; }
};
class base2 {
public:
www.eeworm.com/read/162614/5523176
f90 forall_3.f90
! PR fortran/15080
! Really test forall with temporary
program evil_forall
implicit none
type t
logical valid
integer :: s
integer, dimension(:), pointer :: p
end type
type (t), di
www.eeworm.com/read/162614/5523179
f90 intrinsic_mod_ulo.f90
! Program to test MOD and MODULO intrinsics
subroutine integertest (ops, res)
implicit none
integer, dimension(2) :: ops
integer, dimension(2) :: res
if ((mod(ops(1), ops(2)) .ne. res(1))
www.eeworm.com/read/162614/5523180
f90 intrinsic_count.f90
! Program to test the COUNT intrinsic
program intrinsic_count
implicit none
logical(kind=4), dimension (3, 5) :: a
integer(kind=4), dimension (3) :: b
integer i
character(len=10) line
www.eeworm.com/read/162614/5523326
f90 pr23373-2.f90
program main
implicit none
real, dimension (:), pointer :: x
x => null ()
x => test ()
if (.not. associated (x)) call abort
if (size (x) .ne. 10) call abort
contains
function test
re
www.eeworm.com/read/162614/5526125
f90 arrayio_1.f90
! { dg-do run }
! PR 21875 : Test formatted input/output to/from character arrays.
! Contributed by Jerry DeLisle .
program arrayio_1
implicit none
integer