代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/168845/5432275
ipp dual_name_parameter.ipp
// (C) Copyright Gennadiy Rozental 2005.
// Use, modification, and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at
www.eeworm.com/read/163987/5501689
pas sample - array as parameter.pas
// This script not working !
// Arrays as parameters not supported now....
// Sorry....
unit cray;
function main: string;
var
A: array[1..10] of integer;
begin
InitArray(A);
//Resul
www.eeworm.com/read/162614/5517951
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/162614/5523173
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/162614/5523279
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/162614/5523351
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/162614/5523372
f90 parameter_1.f90
! legal
integer, parameter :: j = huge(j)
integer i
if (j /= huge(i)) call abort
end
www.eeworm.com/read/162614/5526390
f90 parameter_save.f90
! { dg-do compile }
! PR 20848 - parameter and save should conflict.
integer, parameter, save :: x=0 ! { dg-error "conflicts" }
integer, save :: y
parameter (y=42) ! { dg-error "conflicts" }
www.eeworm.com/read/340665/3272886
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/339586/3298706
hxx uint32parameter.hxx
#if !defined(RESIP_UINT32PARAMETER_HXX)
#define RESIP_UINT32PARAMETER_HXX
#include "resip/stack/ParameterTypeEnums.hxx"
#include "resip/stack/Parameter.hxx"
#include
namespace resip
{
cla