代码搜索:Interface
找到约 10,000 项符合「Interface」的源代码
代码结果 10,000
www.eeworm.com/read/366702/2866240
c interface3b.c
// PR c++/26195
// { dg-do link }
// { dg-additional-sources "interface3b2.cc" }
// { dg-options "-fno-inline" }
#pragma implementation "dir2/interface3.cc"
#include "dir1/interface3.h"
www.eeworm.com/read/366702/2866242
cc interface3a2.cc
// PR c++/26195
extern void f1();
extern void f2();
int main()
{
f1();
f2();
}
www.eeworm.com/read/366702/2866322
cc interface2b.cc
// PR c++/26195
extern void foo1();
extern void foo2();
int main()
{
foo1();
foo2();
}
www.eeworm.com/read/366702/2872595
ads gen_interface_p.ads
generic
type I is interface;
with procedure P (X : I) is abstract;
package gen_interface_p is
end;
www.eeworm.com/read/366702/2873143
f90 module_interface.f90
! We were incorrectly mangling procedures in interfaces in modules
module module_interface
interface
subroutine foo ()
end subroutine foo
end interface
contains
subroutine cs
www.eeworm.com/read/366702/2876006
f90 interface_19.f90
! { dg-do run }
! PR33162 INTRINSIC functions as ACTUAL argument
! Test case adapted from PR by Jerry DeLisle
module m
implicit none
contains
subroutine sub(a)
optional :
www.eeworm.com/read/366702/2876021
f90 interface_3.f90
! { dg-do compile }
! Tests the fix for PR20880, which was due to failure to the failure
! to detect the USE association of a nameless interface for a
! procedure with the same name as the encompassin
www.eeworm.com/read/366702/2876183
f90 interface_8.f90
! { dg-do compile }
! One of the tests of the patch for PR30068.
! Taken from comp.lang.fortran 3rd December 2006.
!
! Although the generic procedure is not referenced and it would
! normally be permi
www.eeworm.com/read/366702/2876309
f90 interface_2.f90
! { dg-do compile }
! PR fortran/24545
MODULE Compare_Float_Numbers
IMPLICIT NONE
INTERFACE Compare_Float
MODULE PROCEDURE Compare_Float_Single
END INTERFACE Compare_Float
INTERFACE OPE
www.eeworm.com/read/366702/2876561
f90 interface_6.f90
! { dg-do compile }
! One of the tests of the patch for PR30068.
! Taken from the fortran 2003 standard C11.2.
!
! The standard specifies that the optional arguments should be
! ignored in the countin