代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/375190/2733914
cpp repeat_ast_tests.cpp
/*=============================================================================
Copyright (c) 2004 Chris Hoeppler
http://spirit.sourceforge.net/
Use, modification and distribution is subj
www.eeworm.com/read/366702/2876376
f90 repeat_3.f90
! REPEAT intrinsic, test for PR 31304
! We check that REPEAT accepts all kind arguments for NCOPIES
!
! { dg-do run }
program test
implicit none
integer(kind=1) i1
integer(kind=2) i2
integer(
www.eeworm.com/read/366702/2876839
f90 repeat_5.f90
! { dg-do compile }
!
! PR32472 -- character literals were not implemented in REPEAT.
!
! Contributed by Tobias Burnus
!
CHARACTER(len=1025) :: string2 = repeat('?',1025)
prin
www.eeworm.com/read/366702/2877010
f90 repeat_2.f90
! REPEAT intrinsic
!
! { dg-do run }
subroutine foo(i, j, s, t)
implicit none
integer, intent(in) :: i, j
character(len=i), intent(in) :: s
character(len=i*j), intent(in) :: t
if (repeat(s,
www.eeworm.com/read/366702/2877318
f90 repeat_4.f90
! REPEAT intrinsic -- various checks should be enforced
!
! { dg-do compile }
program test
implicit none
character(len=0), parameter :: s0 = ""
character(len=1), parameter :: s1 = "a"
charact
www.eeworm.com/read/366702/2877561
f90 repeat_6.f90
! { dg-do run }
!
! PR34559 -- ICE on empty string literals
!
! Contributed by Tobias Burnus
!
character(len=200) :: string = "a" // repeat ("", 3) &
www.eeworm.com/read/366702/2877729
f90 repeat_1.f90
! { dg-do run }
! { dg-shouldfail "negative NCOPIES argument to REPEAT intrinsic" }
character(len=80) :: str
integer :: i
i = -1
write(str,"(a)") repeat ("a", f())
if (trim(str) /= "aaaa") c
www.eeworm.com/read/154890/5631300
h fl_repeat_button.h
//
// "$Id: Fl_Repeat_Button.H,v 1.1.1.1 2003/08/07 21:18:38 jasonk Exp $"
//
// Repeat button header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-1999 by Bill Spitzak and others.
//
www.eeworm.com/read/154890/5631562
cxx fl_repeat_button.cxx
//
// "$Id: Fl_Repeat_Button.cxx,v 1.1.1.1 2003/08/07 21:18:40 jasonk Exp $"
//
// Repeat button widget for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-1999 by Bill Spitzak and others.
//
//
www.eeworm.com/read/368409/9697055
v repeat_1s.v
//-------------------------------
//Count one bits in a 8-bit word
//using repeat loop
//Filename : repeat_1s.v
//-------------------------------
module repeat_1s(ones, Din);
output [3:0] ones