Home
last modified time | relevance | path

Searched refs:WordDelims (Results 1 – 19 of 19) sorted by relevance

/dports/editors/lazarus/lazarus/components/lazreport/source/addons/addfunction/
H A DfrFuncStr.pas40 function frWordCount(const S: string; const WordDelims: TfrCharSet): Integer; in frWordCount()
41 function frIsWordPresent(const W, S: string; const WordDelims: TfrCharSet): Boolean; in frIsWordPresent()
78 while (I <= Length(S)) and (S[I] in WordDelims) do Inc(I);
83 while (I <= Length(S)) and not (S[I] in WordDelims) do Inc(I)
101 I := frWordPosition(N, S, WordDelims);
104 while (I <= Length(S)) and not(S[I] in WordDelims) do begin
119 function frWordCount(const S: string; const WordDelims: TfrCharSet): Integer; in frWordCount()
129 while (I <= SLen) and (S[I] in WordDelims) do Inc(I);
131 while (I <= SLen) and not(S[I] in WordDelims) do Inc(I);
147 Count := frWordCount(S, WordDelims);
[all …]
/dports/editors/lazarus-qt5/lazarus/components/lazreport/source/addons/addfunction/
H A DfrFuncStr.pas40 function frWordCount(const S: string; const WordDelims: TfrCharSet): Integer; in frWordCount()
41 function frIsWordPresent(const W, S: string; const WordDelims: TfrCharSet): Boolean; in frIsWordPresent()
78 while (I <= Length(S)) and (S[I] in WordDelims) do Inc(I);
83 while (I <= Length(S)) and not (S[I] in WordDelims) do Inc(I)
101 I := frWordPosition(N, S, WordDelims);
104 while (I <= Length(S)) and not(S[I] in WordDelims) do begin
119 function frWordCount(const S: string; const WordDelims: TfrCharSet): Integer; in frWordCount()
129 while (I <= SLen) and (S[I] in WordDelims) do Inc(I);
131 while (I <= SLen) and not(S[I] in WordDelims) do Inc(I);
147 Count := frWordCount(S, WordDelims);
[all …]
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazreport/source/addons/addfunction/
H A DfrFuncStr.pas40 function frWordCount(const S: string; const WordDelims: TfrCharSet): Integer; in frWordCount()
41 function frIsWordPresent(const W, S: string; const WordDelims: TfrCharSet): Boolean; in frIsWordPresent()
78 while (I <= Length(S)) and (S[I] in WordDelims) do Inc(I);
83 while (I <= Length(S)) and not (S[I] in WordDelims) do Inc(I)
101 I := frWordPosition(N, S, WordDelims);
104 while (I <= Length(S)) and not(S[I] in WordDelims) do begin
119 function frWordCount(const S: string; const WordDelims: TfrCharSet): Integer; in frWordCount()
129 while (I <= SLen) and (S[I] in WordDelims) do Inc(I);
131 while (I <= SLen) and not(S[I] in WordDelims) do Inc(I);
147 Count := frWordCount(S, WordDelims);
[all …]
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazreport/source/addons/addfunction/
H A DfrFuncStr.pas40 function frWordCount(const S: string; const WordDelims: TfrCharSet): Integer; in frWordCount()
41 function frIsWordPresent(const W, S: string; const WordDelims: TfrCharSet): Boolean; in frIsWordPresent()
78 while (I <= Length(S)) and (S[I] in WordDelims) do Inc(I);
83 while (I <= Length(S)) and not (S[I] in WordDelims) do Inc(I)
101 I := frWordPosition(N, S, WordDelims);
104 while (I <= Length(S)) and not(S[I] in WordDelims) do begin
119 function frWordCount(const S: string; const WordDelims: TfrCharSet): Integer; in frWordCount()
129 while (I <= SLen) and (S[I] in WordDelims) do Inc(I);
131 while (I <= SLen) and not(S[I] in WordDelims) do Inc(I);
147 Count := frWordCount(S, WordDelims);
[all …]
/dports/cad/zcad/zcad-8b8a693/cad_source/other/AGraphLaz/Test/Vectors/
H A Dwcnt.dpr15 function WordCount(const S: string; WordDelims: TCharSet): Integer;
23 while (I <= SLen) and (S[I] in WordDelims) do Inc(I);
25 while (I <= SLen) and not(S[I] in WordDelims) do Inc(I);
29 function WordPosition(const N: Integer; const S: string; WordDelims: TCharSet): Integer;
38 while (I <= Length(S)) and (S[I] in WordDelims) do Inc(I);
43 while (I <= Length(S)) and not (S[I] in WordDelims) do Inc(I)
48 function ExtractWord(N: Integer; const S: string; WordDelims: TCharSet): string;
54 I := WordPosition(N, S, WordDelims);
57 while (I <= Length(S)) and not(S[I] in WordDelims) do begin
/dports/lang/fpc-utils/fpc-3.2.2/utils/pas2jni/
H A Dppuparser.pas71 const WordDelims: TCharSet): Integer;
81 while (I <= Length(S)) and (S[I] in WordDelims) do
88 while (I <= Length(S)) and not (S[I] in WordDelims) do
96 const WordDelims: TCharSet): string;
102 I := WordPosition(N, S, WordDelims);
105 while (I <= Length(S)) and not (S[I] in WordDelims) do
/dports/lang/fpc-source/fpc-3.2.2/utils/pas2jni/
H A Dppuparser.pas71 const WordDelims: TCharSet): Integer;
81 while (I <= Length(S)) and (S[I] in WordDelims) do
88 while (I <= Length(S)) and not (S[I] in WordDelims) do
96 const WordDelims: TCharSet): string;
102 I := WordPosition(N, S, WordDelims);
105 while (I <= Length(S)) and not (S[I] in WordDelims) do
/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/IO/
H A DDefParser.cpp37 const String DefTokenizer::WordDelims = " \t\n\r()[]{};,="; member in TrenchBroom::IO::DefTokenizer
102 const char* e = readInteger(WordDelims); in emitToken()
105 e = readDecimal(WordDelims); in emitToken()
108 e = readString(WordDelims); in emitToken()
H A DDefParser.h60 static const String WordDelims;
H A DFgdParser.h57 static const String WordDelims;
H A DFgdParser.cpp37 const String FgdTokenizer::WordDelims = " \t\n\r()[]?;:,="; member in TrenchBroom::IO::FgdTokenizer
85 const char* e = readInteger(WordDelims); in emitToken()
89 e = readDecimal(WordDelims); in emitToken()
93 e = readString(WordDelims); in emitToken()
/dports/lang/fpc-source/fpc-3.2.2/packages/rtl-objpas/src/inc/
H A Dstrutils.pp2137 while (P<PE) and (P^ in WordDelims) do
2141 while (P<PE) and not (P^ in WordDelims) do
2157 while (P<PE) and (P^ in WordDelims) do
2161 while (P<PE) and not (P^ in WordDelims) do
2180 while (P<PE) and (P^ in WordDelims) do
2185 while (P<PE) and not (P^ in WordDelims) do
2197 Result:=ExtractWordPos(N,S,WordDelims,i);
2208 i:=WordPosition(N, S, WordDelims);
2235 i:=WordPosition(N, S, WordDelims);
2320 Count:=WordCount(S, WordDelims);
[all …]
/dports/lang/fpc/fpc-3.2.2/packages/rtl-objpas/src/inc/
H A Dstrutils.pp2137 while (P<PE) and (P^ in WordDelims) do
2141 while (P<PE) and not (P^ in WordDelims) do
2157 while (P<PE) and (P^ in WordDelims) do
2161 while (P<PE) and not (P^ in WordDelims) do
2180 while (P<PE) and (P^ in WordDelims) do
2185 while (P<PE) and not (P^ in WordDelims) do
2197 Result:=ExtractWordPos(N,S,WordDelims,i);
2208 i:=WordPosition(N, S, WordDelims);
2235 i:=WordPosition(N, S, WordDelims);
2320 Count:=WordCount(S, WordDelims);
[all …]
/dports/lang/fpc-rtl-objpas/fpc-3.2.2/packages/rtl-objpas/src/inc/
H A Dstrutils.pp2137 while (P<PE) and (P^ in WordDelims) do
2141 while (P<PE) and not (P^ in WordDelims) do
2157 while (P<PE) and (P^ in WordDelims) do
2161 while (P<PE) and not (P^ in WordDelims) do
2180 while (P<PE) and (P^ in WordDelims) do
2185 while (P<PE) and not (P^ in WordDelims) do
2197 Result:=ExtractWordPos(N,S,WordDelims,i);
2208 i:=WordPosition(N, S, WordDelims);
2235 i:=WordPosition(N, S, WordDelims);
2320 Count:=WordCount(S, WordDelims);
[all …]
/dports/editors/lazarus/lazarus/components/lazutils/
H A Dlazutf8.pas133 function UTF8ProperCase(const AInStr: string; const WordDelims: TSysCharSet): string; in UTF8ProperCase()
1232 function UTF8ProperCase(const AInStr: string; const WordDelims: TSysCharSet): string; in UTF8ProperCase()
1244 while (P<PE) and (P^ in WordDelims) do
1255 while (P<PE) and not (P^ in WordDelims) do
/dports/editors/lazarus-qt5/lazarus/components/lazutils/
H A Dlazutf8.pas133 function UTF8ProperCase(const AInStr: string; const WordDelims: TSysCharSet): string; in UTF8ProperCase()
1232 function UTF8ProperCase(const AInStr: string; const WordDelims: TSysCharSet): string; in UTF8ProperCase()
1244 while (P<PE) and (P^ in WordDelims) do
1255 while (P<PE) and not (P^ in WordDelims) do
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazutils/
H A Dlazutf8.pas131 function UTF8ProperCase(const AInStr: string; const WordDelims: TSysCharSet): string; in UTF8ProperCase()
1250 function UTF8ProperCase(const AInStr: string; const WordDelims: TSysCharSet): string; in UTF8ProperCase()
1262 while (P<PE) and (P^ in WordDelims) do
1273 while (P<PE) and not (P^ in WordDelims) do
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazutils/
H A Dlazutf8.pas131 function UTF8ProperCase(const AInStr: string; const WordDelims: TSysCharSet): string; in UTF8ProperCase()
1250 function UTF8ProperCase(const AInStr: string; const WordDelims: TSysCharSet): string; in UTF8ProperCase()
1262 while (P<PE) and (P^ in WordDelims) do
1273 while (P<PE) and not (P^ in WordDelims) do
/dports/net-p2p/transmission-remote-gui/transgui-5.18.0/
H A Drestranslator.pas77 property WordDelims: TSysCharset Read FWordDelims Write SetWordDelims; property