mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-21 20:09:40 +02:00
* Add offset to Pos functions, Delphi XE 8 compatible.
git-svn-id: trunk@31464 -
This commit is contained in:
parent
130eba51ee
commit
8161c1135c
@ -915,18 +915,18 @@ end;
|
|||||||
|
|
||||||
{$ifndef FPC_HAS_POS_SHORTSTR_ANSISTR}
|
{$ifndef FPC_HAS_POS_SHORTSTR_ANSISTR}
|
||||||
{$define FPC_HAS_POS_SHORTSTR_ANSISTR}
|
{$define FPC_HAS_POS_SHORTSTR_ANSISTR}
|
||||||
Function Pos(Const Substr : ShortString; Const Source : RawByteString) : SizeInt;
|
Function Pos(Const Substr : ShortString; Const Source : RawByteString; Offset : Sizeint = 1) : SizeInt;
|
||||||
|
|
||||||
var
|
var
|
||||||
i,MaxLen : SizeInt;
|
i,MaxLen : SizeInt;
|
||||||
pc : PAnsiChar;
|
pc : PAnsiChar;
|
||||||
begin
|
begin
|
||||||
Pos:=0;
|
Pos:=0;
|
||||||
if Length(SubStr)>0 then
|
if (Length(SubStr)>0) and (Offset>0) and (Offset<=Length(Source)) then
|
||||||
begin
|
begin
|
||||||
MaxLen:=Length(source)-Length(SubStr);
|
MaxLen:=Length(source)-Length(SubStr);
|
||||||
i:=0;
|
i:=Offset-1;
|
||||||
pc:=@source[1];
|
pc:=@source[Offset];
|
||||||
while (i<=MaxLen) do
|
while (i<=MaxLen) do
|
||||||
begin
|
begin
|
||||||
inc(i);
|
inc(i);
|
||||||
@ -945,17 +945,17 @@ end;
|
|||||||
|
|
||||||
{$ifndef FPC_HAS_POS_ANSISTR_ANSISTR}
|
{$ifndef FPC_HAS_POS_ANSISTR_ANSISTR}
|
||||||
{$define FPC_HAS_POS_ANSISTR_ANSISTR}
|
{$define FPC_HAS_POS_ANSISTR_ANSISTR}
|
||||||
Function Pos(Const Substr : RawByteString; Const Source : RawByteString) : SizeInt;
|
Function Pos(Const Substr : RawByteString; Const Source : RawByteString; Offset : Sizeint = 1) : SizeInt;
|
||||||
var
|
var
|
||||||
i,MaxLen : SizeInt;
|
i,MaxLen : SizeInt;
|
||||||
pc : PAnsiChar;
|
pc : PAnsiChar;
|
||||||
begin
|
begin
|
||||||
Pos:=0;
|
Pos:=0;
|
||||||
if Length(SubStr)>0 then
|
if (Length(SubStr)>0) and (Offset>0) and (Offset<=Length(Source)) then
|
||||||
begin
|
begin
|
||||||
MaxLen:=Length(source)-Length(SubStr);
|
MaxLen:=Length(source)-Length(SubStr);
|
||||||
i:=0;
|
i:=Offset-1;
|
||||||
pc:=@source[1];
|
pc:=@source[Offset];
|
||||||
while (i<=MaxLen) do
|
while (i<=MaxLen) do
|
||||||
begin
|
begin
|
||||||
inc(i);
|
inc(i);
|
||||||
@ -978,13 +978,16 @@ end;
|
|||||||
{ pos(c: char; const s: shortstring) also exists, so otherwise }
|
{ pos(c: char; const s: shortstring) also exists, so otherwise }
|
||||||
{ using pos(char,pchar) will always call the shortstring version }
|
{ using pos(char,pchar) will always call the shortstring version }
|
||||||
{ (exact match for first argument), also with $h+ (JM) }
|
{ (exact match for first argument), also with $h+ (JM) }
|
||||||
Function Pos(c : AnsiChar; Const s : RawByteString) : SizeInt;
|
Function Pos(c : AnsiChar; Const s : RawByteString; Offset : Sizeint = 1) : SizeInt;
|
||||||
var
|
var
|
||||||
i: SizeInt;
|
i: SizeInt;
|
||||||
pc : PAnsiChar;
|
pc : PAnsiChar;
|
||||||
begin
|
begin
|
||||||
pc:=@s[1];
|
Pos:=0;
|
||||||
for i:=1 to length(s) do
|
If (Offset<1) or (Offset>Length(S)) then
|
||||||
|
exit;
|
||||||
|
pc:=@s[OffSet];
|
||||||
|
for i:=Offset to length(s) do
|
||||||
begin
|
begin
|
||||||
if pc^=c then
|
if pc^=c then
|
||||||
begin
|
begin
|
||||||
|
@ -125,17 +125,17 @@ end;
|
|||||||
|
|
||||||
{$ifndef FPC_HAS_SHORTSTR_POS_SHORTSTR}
|
{$ifndef FPC_HAS_SHORTSTR_POS_SHORTSTR}
|
||||||
{$define FPC_HAS_SHORTSTR_POS_SHORTSTR}
|
{$define FPC_HAS_SHORTSTR_POS_SHORTSTR}
|
||||||
function pos(const substr : shortstring;const s : shortstring):SizeInt;
|
function pos(const substr : shortstring;const s : shortstring; Offset : Sizeint = 1):SizeInt;
|
||||||
var
|
var
|
||||||
i,MaxLen : SizeInt;
|
i,MaxLen : SizeInt;
|
||||||
pc : pchar;
|
pc : pchar;
|
||||||
begin
|
begin
|
||||||
Pos:=0;
|
Pos:=0;
|
||||||
if Length(SubStr)>0 then
|
if (Length(SubStr)>0) and (Offset>0) and (Offset<=Length(S)) then
|
||||||
begin
|
begin
|
||||||
MaxLen:=sizeint(Length(s))-Length(SubStr);
|
MaxLen:=sizeint(Length(s))-Length(SubStr);
|
||||||
i:=0;
|
i:=Offset-1;
|
||||||
pc:=@s[1];
|
pc:=@s[Offset];
|
||||||
while (i<=MaxLen) do
|
while (i<=MaxLen) do
|
||||||
begin
|
begin
|
||||||
inc(i);
|
inc(i);
|
||||||
@ -155,13 +155,16 @@ end;
|
|||||||
{$ifndef FPC_HAS_SHORTSTR_POS_CHAR}
|
{$ifndef FPC_HAS_SHORTSTR_POS_CHAR}
|
||||||
{$define FPC_HAS_SHORTSTR_POS_CHAR}
|
{$define FPC_HAS_SHORTSTR_POS_CHAR}
|
||||||
{Faster when looking for a single char...}
|
{Faster when looking for a single char...}
|
||||||
function pos(c:char;const s:shortstring):SizeInt;
|
function pos(c:char;const s:shortstring; Offset : Sizeint = 1 ):SizeInt;
|
||||||
var
|
var
|
||||||
i : SizeInt;
|
i : SizeInt;
|
||||||
pc : pchar;
|
pc : pchar;
|
||||||
begin
|
begin
|
||||||
pc:=@s[1];
|
Pos:=0;
|
||||||
for i:=1 to length(s) do
|
if (Offset<1) or (Offset>Length(S)) then
|
||||||
|
exit;
|
||||||
|
pc:=@s[Offset];
|
||||||
|
for i:=Offset to length(s) do
|
||||||
begin
|
begin
|
||||||
if pc^=c then
|
if pc^=c then
|
||||||
begin
|
begin
|
||||||
@ -183,9 +186,9 @@ begin
|
|||||||
fpc_char_Copy:='';
|
fpc_char_Copy:='';
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function pos(const substr : shortstring;c:char): SizeInt;
|
function pos(const substr : shortstring;c:char; Offset : Sizeint = 1): SizeInt;
|
||||||
begin
|
begin
|
||||||
if (length(substr)=1) and (substr[1]=c) then
|
if (length(substr)=1) and (substr[1]=c) and (Offset=1) then
|
||||||
Pos:=1
|
Pos:=1
|
||||||
else
|
else
|
||||||
Pos:=0;
|
Pos:=0;
|
||||||
|
@ -1120,10 +1120,10 @@ function Utf8CodePointLen(P: PAnsiChar; MaxLookAhead: SizeInt; IncludeCombiningD
|
|||||||
Procedure Delete(var s:shortstring;index:SizeInt;count:SizeInt);
|
Procedure Delete(var s:shortstring;index:SizeInt;count:SizeInt);
|
||||||
Procedure Insert(const source:shortstring;var s:shortstring;index:SizeInt);
|
Procedure Insert(const source:shortstring;var s:shortstring;index:SizeInt);
|
||||||
Procedure Insert(source:Char;var s:shortstring;index:SizeInt);
|
Procedure Insert(source:Char;var s:shortstring;index:SizeInt);
|
||||||
Function Pos(const substr:shortstring;const s:shortstring):SizeInt;
|
Function Pos(const substr:shortstring;const s:shortstring; Offset: Sizeint = 1):SizeInt;
|
||||||
Function Pos(C:Char;const s:shortstring):SizeInt;
|
Function Pos(C:Char;const s:shortstring; Offset: Sizeint = 1):SizeInt;
|
||||||
{$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
|
{$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
|
||||||
Function Pos(const Substr : ShortString; const Source : RawByteString) : SizeInt;
|
Function Pos(const Substr : ShortString; const Source : RawByteString; Offset: Sizeint = 1) : SizeInt;
|
||||||
|
|
||||||
{$ifdef FPC_HAS_CPSTRING}
|
{$ifdef FPC_HAS_CPSTRING}
|
||||||
Procedure fpc_setstring_ansistr_pansichar(out S : RawByteString; Buf : PAnsiChar; Len : SizeInt; cp: TSystemCodePage); rtlproc; compilerproc;
|
Procedure fpc_setstring_ansistr_pansichar(out S : RawByteString; Buf : PAnsiChar; Len : SizeInt; cp: TSystemCodePage); rtlproc; compilerproc;
|
||||||
@ -1159,7 +1159,7 @@ Function hexStr(Val:Pointer):shortstring;
|
|||||||
Function chr(b : byte) : Char; [INTERNPROC: fpc_in_chr_byte];
|
Function chr(b : byte) : Char; [INTERNPROC: fpc_in_chr_byte];
|
||||||
Function upCase(c:Char):Char;
|
Function upCase(c:Char):Char;
|
||||||
Function lowerCase(c:Char):Char; overload;
|
Function lowerCase(c:Char):Char; overload;
|
||||||
function pos(const substr : shortstring;c:char): SizeInt;
|
function pos(const substr : shortstring;c:char; Offset: Sizeint = 1): SizeInt;
|
||||||
|
|
||||||
|
|
||||||
{****************************************************************************
|
{****************************************************************************
|
||||||
@ -1168,8 +1168,8 @@ function pos(const substr : shortstring;c:char): SizeInt;
|
|||||||
|
|
||||||
{$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
|
{$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
|
||||||
Procedure UniqueString(var S : RawByteString);{$ifdef FPC_HAS_CPSTRING}rtlproc;{$endif FPC_HAS_CPSTRING}external name 'FPC_ANSISTR_UNIQUE';
|
Procedure UniqueString(var S : RawByteString);{$ifdef FPC_HAS_CPSTRING}rtlproc;{$endif FPC_HAS_CPSTRING}external name 'FPC_ANSISTR_UNIQUE';
|
||||||
Function Pos (const Substr : RawByteString; const Source : RawByteString) : SizeInt;
|
Function Pos (const Substr : RawByteString; const Source : RawByteString; Offset: Sizeint = 1) : SizeInt;
|
||||||
Function Pos (c : AnsiChar; const s : RawByteString) : SizeInt;
|
Function Pos (c : AnsiChar; const s : RawByteString; Offset: Sizeint = 1) : SizeInt;
|
||||||
Procedure Insert (const Source : RawByteString; var S : RawByteString; Index : SizeInt);{$ifdef FPC_HAS_CPSTRING}rtlproc;{$endif FPC_HAS_CPSTRING}
|
Procedure Insert (const Source : RawByteString; var S : RawByteString; Index : SizeInt);{$ifdef FPC_HAS_CPSTRING}rtlproc;{$endif FPC_HAS_CPSTRING}
|
||||||
Procedure Delete (var S : RawByteString; Index,Size: SizeInt);{$ifdef FPC_HAS_CPSTRING}rtlproc;{$endif FPC_HAS_CPSTRING}
|
Procedure Delete (var S : RawByteString; Index,Size: SizeInt);{$ifdef FPC_HAS_CPSTRING}rtlproc;{$endif FPC_HAS_CPSTRING}
|
||||||
Function StringOfChar(c : Ansichar;l : SizeInt) : AnsiString;
|
Function StringOfChar(c : Ansichar;l : SizeInt) : AnsiString;
|
||||||
|
@ -578,17 +578,17 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
Function Pos (Const Substr : WideString; Const Source : WideString) : SizeInt;
|
Function Pos (Const Substr : WideString; Const Source : WideString; Offset : SizeInt = 1) : SizeInt;
|
||||||
var
|
var
|
||||||
i,MaxLen : SizeInt;
|
i,MaxLen : SizeInt;
|
||||||
pc : pwidechar;
|
pc : pwidechar;
|
||||||
begin
|
begin
|
||||||
Pos:=0;
|
Pos:=0;
|
||||||
if Length(SubStr)>0 then
|
if Length(SubStr)>0 and (Offset>0) and (Offset<Length(Source)) then
|
||||||
begin
|
begin
|
||||||
MaxLen:=Length(source)-Length(SubStr);
|
MaxLen:=Length(source)-Length(SubStr);
|
||||||
i:=0;
|
i:=Offset-1;
|
||||||
pc:=@source[1];
|
pc:=@source[Offset];
|
||||||
while (i<=MaxLen) do
|
while (i<=MaxLen) do
|
||||||
begin
|
begin
|
||||||
inc(i);
|
inc(i);
|
||||||
@ -605,13 +605,15 @@ end;
|
|||||||
|
|
||||||
|
|
||||||
{ Faster version for a widechar alone }
|
{ Faster version for a widechar alone }
|
||||||
Function Pos (c : WideChar; Const s : WideString) : SizeInt;
|
Function Pos (c : WideChar; Const s : WideString; Offset : Sizeint = 1) : SizeInt;
|
||||||
var
|
var
|
||||||
i: SizeInt;
|
i: SizeInt;
|
||||||
pc : pwidechar;
|
pc : pwidechar;
|
||||||
begin
|
begin
|
||||||
pc:=@s[1];
|
pos:=0;
|
||||||
for i:=1 to length(s) do
|
if (Offset<1) or (Offset>Length(s)) then exit;
|
||||||
|
pc:=@s[Offset];
|
||||||
|
for i:=Offset to length(s) do
|
||||||
begin
|
begin
|
||||||
if pc^=c then
|
if pc^=c then
|
||||||
begin
|
begin
|
||||||
@ -620,47 +622,50 @@ begin
|
|||||||
end;
|
end;
|
||||||
inc(pc);
|
inc(pc);
|
||||||
end;
|
end;
|
||||||
pos:=0;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ DO NOT inline these! Inlining a managed typecast creates an implicit try..finally
|
{ DO NOT inline these! Inlining a managed typecast creates an implicit try..finally
|
||||||
block, which is significant bloat without any sensible speed improvement. }
|
block, which is significant bloat without any sensible speed improvement. }
|
||||||
Function Pos (c : WideChar; Const s : RawByteString) : SizeInt;
|
Function Pos (c : WideChar; Const s : RawByteString; Offset : SizeInt = 1) : SizeInt;
|
||||||
begin
|
begin
|
||||||
result:=Pos(c,WideString(s));
|
result:=Pos(c,WideString(s),Offset);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
Function Pos (const c : RawByteString; Const s : WideString) : SizeInt;
|
Function Pos (const c : RawByteString; Const s : WideString;Offset : SizeInt = 1) : SizeInt;
|
||||||
begin
|
begin
|
||||||
result:=Pos(WideString(c),s);
|
result:=Pos(WideString(c),s,Offset);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
Function Pos (const c : ShortString; Const s : WideString) : SizeInt;
|
Function Pos (const c : ShortString; Const s : WideString;Offset : SizeInt = 1) : SizeInt;
|
||||||
begin
|
begin
|
||||||
result:=Pos(WideString(c),s);
|
result:=Pos(WideString(c),s,Offset);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
Function Pos (const c : WideString; Const s : RawByteString) : SizeInt;
|
Function Pos (const c : WideString; Const s : RawByteString;Offset : SizeInt = 1) : SizeInt;
|
||||||
begin
|
begin
|
||||||
result:=Pos(c,WideString(s));
|
result:=Pos(c,WideString(s),Offset);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ Faster version for a char alone. Must be implemented because }
|
{ Faster version for a char alone. Must be implemented because }
|
||||||
{ pos(c: char; const s: shortstring) also exists, so otherwise }
|
{ pos(c: char; const s: shortstring) also exists, so otherwise }
|
||||||
{ using pos(char,pchar) will always call the shortstring version }
|
{ using pos(char,pchar) will always call the shortstring version }
|
||||||
{ (exact match for first argument), also with $h+ (JM) }
|
{ (exact match for first argument), also with $h+ (JM) }
|
||||||
Function Pos (c : Char; Const s : WideString) : SizeInt;
|
Function Pos (c : Char; Const s : WideString;Offset : SizeInt = 1) : SizeInt;
|
||||||
var
|
var
|
||||||
i: SizeInt;
|
i: SizeInt;
|
||||||
wc : widechar;
|
wc : widechar;
|
||||||
pc : pwidechar;
|
pc : pwidechar;
|
||||||
begin
|
begin
|
||||||
|
Pos:=0;
|
||||||
|
if (Offset<1) or (OffSet>Length(S)) then
|
||||||
|
exit;
|
||||||
wc:=c;
|
wc:=c;
|
||||||
pc:=@s[1];
|
|
||||||
for i:=1 to length(s) do
|
pc:=@s[offset];
|
||||||
|
for i:=Offset to length(s) do
|
||||||
begin
|
begin
|
||||||
if pc^=wc then
|
if pc^=wc then
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user