代码搜索:repeat

找到约 6,690 项符合「repeat」的源代码

代码结果 6,690
www.eeworm.com/read/106971/6190983

inc strpgm.inc

%macro REPEAT 0 %push REPEAT %$BEGIN: %endmacro %macro UNTIL 1 J%-1 %$BEGIN %pop %endmacro %macro IF 1 %push if j%-1 %$ifnot %endmacro %macro ELSE 0
www.eeworm.com/read/104260/6205090

java ptimerspec.java

/* * PTimerSpec * * PersonalJava API 1.1 * * Copyright (c) 1998 * Transvirtual Technologies, Inc. All rights reserved. * * See the file "license.terms" for information on usage and redistr
www.eeworm.com/read/103192/6220553

h scroll.h

/* COW : Character Oriented Windows scroll.h : scroll bar cow private interface */ #define cwExtraScroll 5 /* size of rgwExtra for scroll windows */ /* scroll bar definitions */ #def
www.eeworm.com/read/101594/6236250

properties messagesbundle.properties

# Localized error messages for gnu.regexp # Prefix for REException messages error.prefix=At position {0} in regular expression pattern: # REException (parse error) messages repeat.assertion=repeated
www.eeworm.com/read/101082/6249532

y r.y

/* @(#)r.g 1.1 (Berkeley) 12/15/82 */ %{ extern int transfer; extern int indent; %} %term IF ELSE FOR WHILE BREAK NEXT %term DIGITS DO %term GOK DEFINE INCLUDE %term REPEAT UNTIL %term RETURN %term
www.eeworm.com/read/101066/6256884

c repeathost.c

/* repeatHost.c - target support of host side repeat command */ /* Copyright 1984-1998 Wind River Systems, Inc. */ #include "copyright_wrs.h" /* modification history -------------------- 01c,04sep98
www.eeworm.com/read/101015/6261997

h scroll.h

/* COW : Character Oriented Windows scroll.h : scroll bar cow private interface */ #define cwExtraScroll 5 /* size of rgwExtra for scroll windows */ /* scroll bar definitions */ #def
www.eeworm.com/read/100926/6264619

gperf modula2.gperf

AND ARRAY BEGIN BY CASE CONST DEFINITION DIV DO ELSE ELSIF END EXIT EXPORT FOR FROM IF IMPLEMENTATION IMPORT IN LOOP MOD MODULE NOT OF OR POINTER PROCEDURE QUALIFIED RECOR
www.eeworm.com/read/100926/6264647

gperf pascal.gperf

with array and function case var const until then set record program procedure or packed not nil label in repeat of goto forward for while file else downto do div to typ
www.eeworm.com/read/100133/6273687

pas p_4_3.pas

{ program 4.3 compute h(n) = 1 + 1/2 + 1/3 +...+ 1/n } program egrepeat(input, output); var n : integer; h : real; begin read(n); write(n); h := 0; repeat h := h + 1