代码搜索:Interface
找到约 10,000 项符合「Interface」的源代码
代码结果 10,000
www.eeworm.com/read/375190/2730040
hpp cpp_lex_interface_generator.hpp
/*=============================================================================
Boost.Wave: A Standard compliant C++ preprocessor library
Definition of the abstract lexer interface
h
www.eeworm.com/read/366702/2866238
cc interface3b2.cc
// PR c++/26195
extern void g1();
extern void g2();
int main()
{
g1();
g2();
}
www.eeworm.com/read/366702/2873242
f90 module_interface_2.f90
! Test generic interfaces declared in modules.
! We used to get the name mangling wrong for these.
module module_interface_2
interface foo
subroutine myfoo (i)
integer i
end subroutine
www.eeworm.com/read/366702/2873346
f90 empty_interface_1.f90
! Program to test empty interfaces PR15051
INTERFACE leer
END INTERFACE
END
www.eeworm.com/read/366702/2876185
f90 interface_proc_end.f90
! { dg-do compile}
!
! PR fortran/34763
! Before, gfortran did not allow for the "END" in
! the interface, which is no module procedure.
!
! Test case contributed by Dick Hendrickson
!
module n
www.eeworm.com/read/366702/2876300
f90 interface_abstract_3.f90
! { dg-do compile }
! test for C1204 of Fortran 2003 standard:
! module procedure not allowed in abstract interface
module m
abstract interface
module procedure p ! { dg-error "must be in a gen
www.eeworm.com/read/366702/2876979
f90 module_interface_2.f90
! { dg-do compile }
! Tests the fix for PR29464, in which the second USE of the generic
! interface caused an error.
!
! Contributed by Vivek Rao
!
module foo_mod
implicit none