代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/208614/15242275
f90 sgldraw1.f90
module sgl_util
use sgl
implicit none
contains
subroutine Display()
write(*,*) "Update"
call sglClearBuffer() ! 清除画面
call sglColor3f(1.0,0,0) ! 使用红色
call sglRect(100,100,300,30
www.eeworm.com/read/208614/15242363
f90 ex1105.f90
module MA
implicit none
interface getx
module procedure getx1
module procedure getx2
end interface
contains
subroutine getx1(a,b)
real a,b
write(*,"('x=',F5.2)") -b/a
r
www.eeworm.com/read/208614/15242531
f90 ex0812.f90
program ex0812
implicit none
integer :: a,b
common a,b ! a,b放在不具名的全局变量空间中
integer :: c,d
common /group1/ c,d ! c,d放在group1的全局变量空间中
integer :: e,f
common /group2/ e,f ! e,f放
www.eeworm.com/read/208614/15242573
f90 ex0822.f90
program ex0822
implicit none
external sub1, sub2 ! 声明sub1跟sub2是子程序名称
call sub(sub1) ! 把子程序sub1当参数传出去
call sub(sub2) ! 把子程序sub1当参数传出去
stop
end program
subroutine sub(sub_na
www.eeworm.com/read/208614/15242574
f90 ex0811.f90
program ex0811
implicit none
integer :: a,b
common /group1/ a
common /group2/ b
a=1
b=2
call ShowGroup1()
call ShowGroup2()
stop
end
subroutine ShowGroup1()
implicit none
www.eeworm.com/read/162614/5517204
c wdtor1.c
// PR c++/20145
// { dg-options "-Wnon-virtual-dtor" }
# 1 "t.cc"
# 1 ""
# 1 ""
# 1 "t.cc"
# 1 "include/t.h" 1 3 4
// Declare the template with explicit C++ linkage in case sys
www.eeworm.com/read/162614/5519301
c explicit-instantiation2.c
// Bug 10968: implicit instantiation overrides explicit instantiation
// { dg-final { scan-assembler "_Z1fIiET_S0_" } }
template T f (T t) { return t; }
inline void g () { f (4); }
template
www.eeworm.com/read/162614/5520231
c typename7.c
// { dg-do assemble }
// { dg-options "" }
// Test for implicit typename
template
struct A {
protected:
typedef struct B { } B;
};
template
struct C { };
template
s
www.eeworm.com/read/162614/5520815
c typename14.c
// { dg-do assemble }
// { dg-options "-Wno-deprecated" }
template
struct B {
typedef T X;
};
template
struct S : public B
{
struct I {
void f(X x); // { dg-warning
www.eeworm.com/read/162614/5528718
c c99-impl-int-2.c
/* Test for implicit int: in C90 only. Function parameters in old-style
function definition.
*/
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1