代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/470693/1464571
c c99-impl-decl-1.c
/* Test for implicit function declaration: in C90 only. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
void
foo (vo
www.eeworm.com/read/233522/4667662
txx vcl_vector.txx
#ifndef vcl_vector_txx_
#define vcl_vector_txx_
// -*- c++ -*-
#include "vcl_vector.h"
#if VCL_USE_IMPLICIT_TEMPLATES
# include "iso/vcl_vector.txx"
#elif !VCL_USE_NATIVE_STL
# include "emu
www.eeworm.com/read/233522/4667819
txx vcl_stack.txx
#ifndef vcl_stack_txx_
#define vcl_stack_txx_
// -*- c++ -*-
#include "vcl_stack.h"
#if VCL_USE_IMPLICIT_TEMPLATES
# include "iso/vcl_stack.txx"
#else // only need "template class vcl_stack
www.eeworm.com/read/233522/4667900
txx vcl_deque.txx
#ifndef vcl_deque_txx_
#define vcl_deque_txx_
// -*- c++ -*-
#include "vcl_deque.h"
#if VCL_USE_IMPLICIT_TEMPLATES
# include "iso/vcl_deque.txx"
#elif !VCL_USE_NATIVE_STL
# include "emulati
www.eeworm.com/read/233448/4678773
f90 hollerith.f90
! PR 14038- 'H' in hollerith causes mangling of string
program hollerith
IMPLICIT NONE
CHARACTER*4 LINE
100 FORMAT (4H12H4)
WRITE(LINE,100)
IF (LINE .NE. '12H4') call abort ()
end
www.eeworm.com/read/233448/4678845
f90 intrinsic_sign.f90
! Program to test SIGN intrinsic
program intrinsic_sign
implicit none
integer i, j
real r, s
i = 2
j = 3
if (sign (i, j) .ne. 2) call abort
i = 4
j = -5
if (sign (i, j) .ne
www.eeworm.com/read/233448/4678883
f90 inquiry_1.f90
! Check that inquiry functions are allowed as specification expressions.
subroutine inquiry(x1)
implicit none
real, dimension(1:), intent(out) :: x1
real, dimension(1:size(x1)) :: x3
x3 = 0
www.eeworm.com/read/233448/4681524
f90 bound_1.f90
! { dg-do run }
implicit none
type test_type
integer, dimension(5) :: a
end type test_type
type (test_type), target :: tt(2)
integer i
i = ubound(tt(1)%a, 1)
if (i/=5) call abort(
www.eeworm.com/read/233448/4684070
c c90-impl-decl-1.c
/* Test for implicit function declaration: in C90 only. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
void
foo (vo
www.eeworm.com/read/233448/4685627
c c90-impl-int-1.c
/* Test for implicit int: in C90 only. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
extern foo;
bar (void) { }