代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/375190/2730321
cpp dual_name_parameter.cpp
// (C) Copyright Gennadiy Rozental 2005-2008.
// Use, modification, and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy
www.eeworm.com/read/375190/2730339
ipp dual_name_parameter.ipp
// (C) Copyright Gennadiy Rozental 2005-2008.
// Use, modification, and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy
www.eeworm.com/read/375190/2736402
cpp parameter_types_fail.cpp
// (C) Copyright Tobias Schwinger
//
// Use modification and distribution are subject to the boost Software License,
// Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).
//-------------------
www.eeworm.com/read/367917/2830141
sql code-system_parameter.sql
-- Insert CodeType
INSERT IGNORE INTO CODE_TYPE (
CODE_TYPE_ID
,CODE_TYPE_NAME
,CODE_TYPE_DESCRIPTION
,PARENT_CODE_TYPE_ID
,IS_VISIBLE
) VALUES (
'SYSTEM_PARAMETER'
,'System Paramete
www.eeworm.com/read/366702/2866650
c parameter-declaration-1.c
// Contributed by Gabriel Dos Reis
// Origin: Robert Schiele; PR C++/8799
// { dg-do compile }
struct {
a(void = 0; a(0), a(0) // { dg-error "" "" { target *-*-* } }
www.eeworm.com/read/366702/2873156
f90 parameter_2.f90
module m
parameter (p = -1.) ! negative numbers used to get output incorrectly
end module m
use m
if (p .ne. -1.) CALL abort()
end
www.eeworm.com/read/366702/2873272
f90 parameter_1.f90
! Program to test array parameter variables.
program parameter_1
implicit none
integer i
INTEGER, PARAMETER :: ii(10) = (/ (I,I=1,10) /)
REAL, PARAMETER :: rr(10) = ii
do i = 1, 10
i
www.eeworm.com/read/366702/2873350
f90 parameter_2.f90
! Program to test initialization expressions involving subobjects
program parameter_2
implicit none
type :: SS
integer :: I
integer :: J
end type SS
type :: TT
integer :: N
t
www.eeworm.com/read/366702/2873376
f90 parameter_3.f90
program tst
write (6,"(a,es15.8)") "2.0**(-0.0) = ",2.0**(-0.0)
end program tst
www.eeworm.com/read/366702/2873378
f90 parameter_1.f90
! legal
integer, parameter :: j = huge(j)
integer i
if (j /= huge(i)) call abort
end