Home
last modified time | relevance | path

Searched refs:chkend (Results 1 – 8 of 8) sorted by relevance

/dports/devel/upp/upp/uppsrc/Core/
H A DParser.h67 String ReadOneString(bool chkend = true);
68 String ReadString(bool chkend = true);
69 String ReadOneString(int delim, bool chkend = true);
70 String ReadString(int delim, bool chkend = true);
H A Dparser.cpp375 String CParser::ReadOneString(int delim, bool chkend) { in ReadOneString() argument
453 if(chkend) { in ReadOneString()
467 String CParser::ReadOneString(bool chkend) in ReadOneString() argument
469 return ReadOneString('\"', chkend); in ReadOneString()
472 String CParser::ReadString(int delim, bool chkend) { in ReadString() argument
476 result.Cat(ReadOneString(delim, chkend)); in ReadString()
481 String CParser::ReadString(bool chkend) in ReadString() argument
483 return ReadString('\"', chkend); in ReadString()
/dports/devel/upp/upp/uppsrc/Core/src.tpp/
H A DCParser_en-us.tpp312 l]_[*@3 chkend]_`=_[@(0.0.255) true])&]
315 lines are not concatenated (unlike C). When [%-*C@3 chkend] is
325 lines are concatenated (as in C). When [%-*C@3 chkend] is [* false],
332 nt]_[*@3 delim], [@(0.0.255) bool]_[*@3 chkend]_`=_[@(0.0.255) true])&]
336 concatenated (unlike C). When [%-*C@3 chkend] is false, [* ReadOneString
342 [*@3 delim], [@(0.0.255) bool]_[*@3 chkend]_`=_[@(0.0.255) true])&]
346 (as in C). When [%-*C@3 chkend] is false, [* ReadOneString ]is more
/dports/lang/rexx-imc/rexx-imc-1.76/
H A Drexx.c345 int chkend; /* whether to check for a line terminator */ local
418 chkend=1; /* do check for line terminator */
711 chkend=0; /* We will be already at start of a stmt */
719 case ELSE:chkend=0; /* We will be already at start of a stmt */
723 case SELECT:chkend=0; /* We will be already at start of a stmt */
780 chkend=1; /* do check for linend char */
1065 chkend=0;
1116 chkend=0; /* Already at the start of a statement */
1433 if(chkend){
/dports/devel/upp/upp/uppsrc/Geom/
H A Dpolyalg.cpp216 Vector<int> chkend; in ContainsPoly() local
217 chkend.SetCount(1); in ContainsPoly()
218 chkend[0] = chkpoly.GetCount(); in ContainsPoly()
219 Rectf cfull = SplitPoly(chkpoly, chkend, true, cp); in ContainsPoly()
/dports/biology/emboss/EMBOSS-6.6.0/ajax/ensembl/
H A Densmapper.c3249 ajint chkend, in ensMapperrangeregistryCheck() argument
3293 chkend, in ensMapperrangeregistryCheck()
3327 regend = chkend; in ensMapperrangeregistryCheck()
3354 if (regend < chkend) in ensMapperrangeregistryCheck()
3360 regend, chkend); in ensMapperrangeregistryCheck()
3439 if ((range->Start <= chkstart) && (range->End >= chkend)) in ensMapperrangeregistryCheck()
H A Densmapper.h528 ajint chkend,
/dports/math/libmesh/libmesh-1.6.2/contrib/gmv/
H A Dgmvread.c131 int chkend; in gmvread_checkfile() local
157 chkend = chk_gmvend(gmvchk); in gmvread_checkfile()
158 if (!chkend) in gmvread_checkfile()
232 int chkend, ilast, i, isize; in gmvread_open() local
257 chkend = chk_gmvend(gmvin); in gmvread_open()
258 if (!chkend) in gmvread_open()
4650 int i, chkend; in chk_gmvend() local
4663 chkend = 0; in chk_gmvend()
4665 if (strncmp((rdend+i),"endgmv",6) == 0) chkend = 1; in chk_gmvend()
4670 return chkend; in chk_gmvend()