Home
last modified time | relevance | path

Searched refs:SubStr (Results 1 – 25 of 370) sorted by relevance

12345678910>>...15

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dsubstr.h8 struct SubStr { struct
13 typedef struct SubStr SubStr; typedef
15 int SubStr_eq(const SubStr *, const SubStr *);
23 static void SubStr_copy(SubStr*, const SubStr*);
24 static SubStr *SubStr_new_copy(const SubStr*);
48 static SubStr *
51 SubStr *r = malloc(sizeof(SubStr)); in SubStr_new_u()
64 static SubStr *
67 SubStr *r = malloc(sizeof(SubStr)); in SubStr_new()
74 SubStr_copy(SubStr *r, const SubStr *s) in SubStr_copy()
[all …]
H A Dparse.h14 void Symbol_init(Symbol *, const SubStr*);
15 static Symbol *Symbol_new(const SubStr*);
16 Symbol *Symbol_find(const SubStr*);
22 Symbol_new(const SubStr *str) in Symbol_new()
H A Dtoken.h11 static void Token_init(Token *, SubStr, unsigned int);
12 static Token *Token_new(SubStr, unsigned int);
15 Token_init(Token *r, SubStr t, unsigned int l) in Token_init()
22 Token_new(SubStr t, unsigned int l) in Token_new()
H A Dsubstr.c6 SubStr_out(const SubStr *s, FILE *o) in SubStr_out()
16 SubStr_eq(const SubStr *s1, const SubStr *s2) in SubStr_eq()
22 Str_init(Str *r, const SubStr* s) in Str_init()
29 Str_new(const SubStr* s) in Str_new()
/dports/devel/yasm/yasm-1.3.0/tools/re2c/
H A Dsubstr.h8 struct SubStr { struct
13 typedef struct SubStr SubStr; argument
15 int SubStr_eq(const SubStr *, const SubStr *);
23 static void SubStr_copy(SubStr*, const SubStr*);
24 static SubStr *SubStr_new_copy(const SubStr*);
48 static SubStr *
51 SubStr *r = malloc(sizeof(SubStr)); in SubStr_new_u()
64 static SubStr *
67 SubStr *r = malloc(sizeof(SubStr)); in SubStr_new()
74 SubStr_copy(SubStr *r, const SubStr *s) in SubStr_copy()
[all …]
H A Dparse.h14 void Symbol_init(Symbol *, const SubStr*);
15 static Symbol *Symbol_new(const SubStr*);
16 Symbol *Symbol_find(const SubStr*);
22 Symbol_new(const SubStr *str) in Symbol_new()
H A Dtoken.h11 static void Token_init(Token *, SubStr, unsigned int);
12 static Token *Token_new(SubStr, unsigned int);
15 Token_init(Token *r, SubStr t, unsigned int l) in Token_init()
22 Token_new(SubStr t, unsigned int l) in Token_new()
H A Dsubstr.c6 SubStr_out(const SubStr *s, FILE *o) in SubStr_out()
16 SubStr_eq(const SubStr *s1, const SubStr *s2) in SubStr_eq()
22 Str_init(Str *r, const SubStr* s) in Str_init()
29 Str_new(const SubStr* s) in Str_new()
/dports/games/zdoom/zdoom-2.8.1/tools/re2c/
H A Dsubstr.h12 class SubStr
20 friend bool operator==(const SubStr &, const SubStr &);
24 SubStr(const SubStr&);
25 virtual ~SubStr();
32 SubStr& operator = (const SubStr& oth);
56 inline SubStr::SubStr(const uchar *s, uint l) in SubStr() function
60 inline SubStr::SubStr(const char *s, uint l) in SubStr() function
64 inline SubStr::SubStr(const char *s) in SubStr() function
68 inline SubStr::SubStr(const SubStr &s) in SubStr() function
72 inline SubStr::~SubStr() in ~SubStr()
[all …]
H A Dscanner.h42 SubStr token() const;
46 uint unescape(SubStr &s) const;
47 std::string& unescape(SubStr& str_in, std::string& str_out) const;
49 Range * getRange(SubStr &s) const;
51 RegExp * strToName(SubStr s) const;
52 RegExp * strToRE(SubStr s) const;
53 RegExp * strToCaseInsensitiveRE(SubStr s) const;
54 RegExp * ranToRE(SubStr s) const;
55 RegExp * invToRE(SubStr s) const;
64 inline SubStr Scanner::token() const in token()
[all …]
H A Dsubstr.cc23 void SubStr::out(std::ostream& o) const in out()
28 bool operator==(const SubStr &s1, const SubStr &s2) in operator ==()
33 Str::Str(const SubStr& s) in Str()
34 : SubStr(strndup(s.str, s.len), s.len) in Str()
40 : SubStr(s.str, s.len) in Str()
47 : SubStr((char*) NULL, 0) in Str()
/dports/net-mgmt/icinga2/icinga2-2.13.2/lib/remote/
H A Durl.cpp24 if (!ParseScheme(url.SubStr(0, pHelper))) in Url()
26 url = url.SubStr(pHelper + 1); in Url()
45 url = url.SubStr(pHelper); in Url()
54 url = url.SubStr(pHelper); in Url()
64 url = url.SubStr(pHelper); in Url()
68 if (!ParseFragment(url.SubStr(1))) in Url()
243 String auth = authority.SubStr(2); in ParseAuthority()
248 auth = auth.SubStr(pos+1); in ParseAuthority()
257 m_Host = auth.SubStr(0, pos); in ParseAuthority()
324 value = token.SubStr(pHelper+1); in ParseQuery()
[all …]
/dports/editors/lazarus/lazarus/ide/
H A Detmakemsgparser.pas66 function CompStr(const SubStr: string; p: PChar): boolean; in CompStr()
67 function CompStrI(const SubStr: string; p: PChar): boolean; in CompStrI()
68 function FindSubStrI(const SubStr: string; p: PChar): PChar; in FindSubStrI()
80 function CompStr(const SubStr: string; p: PChar): boolean; in CompStr()
85 if (SubStr='') or (p=nil) then exit;
86 s:=PChar(SubStr);
94 function CompStrI(const SubStr: string; p: PChar): boolean; in CompStrI()
99 if (SubStr='') or (p=nil) then exit;
100 s:=PChar(SubStr);
113 if (SubStr='') or (p=nil) then exit;
[all …]
/dports/editors/lazarus-qt5/lazarus/ide/
H A Detmakemsgparser.pas66 function CompStr(const SubStr: string; p: PChar): boolean; in CompStr()
67 function CompStrI(const SubStr: string; p: PChar): boolean; in CompStrI()
68 function FindSubStrI(const SubStr: string; p: PChar): PChar; in FindSubStrI()
80 function CompStr(const SubStr: string; p: PChar): boolean; in CompStr()
85 if (SubStr='') or (p=nil) then exit;
86 s:=PChar(SubStr);
94 function CompStrI(const SubStr: string; p: PChar): boolean; in CompStrI()
99 if (SubStr='') or (p=nil) then exit;
100 s:=PChar(SubStr);
113 if (SubStr='') or (p=nil) then exit;
[all …]
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/ide/
H A Detmakemsgparser.pas67 function CompStr(const SubStr: string; p: PChar): boolean; in CompStr()
68 function CompStrI(const SubStr: string; p: PChar): boolean; in CompStrI()
69 function FindSubStrI(const SubStr: string; p: PChar): PChar; in FindSubStrI()
81 function CompStr(const SubStr: string; p: PChar): boolean; in CompStr()
86 if (SubStr='') or (p=nil) then exit;
87 s:=PChar(SubStr);
95 function CompStrI(const SubStr: string; p: PChar): boolean; in CompStrI()
100 if (SubStr='') or (p=nil) then exit;
101 s:=PChar(SubStr);
114 if (SubStr='') or (p=nil) then exit;
[all …]
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/ide/
H A Detmakemsgparser.pas67 function CompStr(const SubStr: string; p: PChar): boolean; in CompStr()
68 function CompStrI(const SubStr: string; p: PChar): boolean; in CompStrI()
69 function FindSubStrI(const SubStr: string; p: PChar): PChar; in FindSubStrI()
81 function CompStr(const SubStr: string; p: PChar): boolean; in CompStr()
86 if (SubStr='') or (p=nil) then exit;
87 s:=PChar(SubStr);
95 function CompStrI(const SubStr: string; p: PChar): boolean; in CompStrI()
100 if (SubStr='') or (p=nil) then exit;
101 s:=PChar(SubStr);
114 if (SubStr='') or (p=nil) then exit;
[all …]
/dports/editors/lazarus/lazarus/components/jcf2/Utils/
H A DJcfStringUtils.pas116 function StrAfter(const SubStr, S: string): string; in StrAfter()
117 function StrBefore(const SubStr, S: string): string; in StrBefore()
120 function StrIPos(const SubStr, S: string): integer; in StrIPos()
299 function StrAfter(const SubStr, S: string): string; in StrAfter()
303 P := StrSearch(SubStr, S, 1);
305 Result := Copy(S, P + Length(SubStr), Length(S))
314 P := StrSearch(SubStr, S, 1);
333 NewPos := StrSearch(SubStr, S, Result + 1);
342 function StrIPos(const SubStr, S: string): integer; in StrIPos()
345 Result := Pos(UpperCase(SubStr), UpperCase(s));
[all …]
/dports/editors/lazarus-qt5/lazarus/components/jcf2/Utils/
H A DJcfStringUtils.pas116 function StrAfter(const SubStr, S: string): string; in StrAfter()
117 function StrBefore(const SubStr, S: string): string; in StrBefore()
120 function StrIPos(const SubStr, S: string): integer; in StrIPos()
299 function StrAfter(const SubStr, S: string): string; in StrAfter()
303 P := StrSearch(SubStr, S, 1);
305 Result := Copy(S, P + Length(SubStr), Length(S))
314 P := StrSearch(SubStr, S, 1);
333 NewPos := StrSearch(SubStr, S, Result + 1);
342 function StrIPos(const SubStr, S: string): integer; in StrIPos()
345 Result := Pos(UpperCase(SubStr), UpperCase(s));
[all …]
/dports/devel/jwasm/JWasm-f0a2fdd/Samples/
H A Dowfchlp.inc27 mov typ ptr dst, @SubStr( %src, ?Reg3End+2 )
28 mov typ ptr dst+@WordSize, @SubStr( %src, ?Reg2End+2, ?Reg3End-(?Reg2End+2) )
34 mov typ ptr dst+displ, @SubStr( %src, ?Reg1End+2, ?Reg2End-(?Reg1End+2) )
36 mov typ ptr dst+displ, @SubStr( %src, ?Reg1End+2 )
38 mov typ ptr dst+displ+@WordSize, @SubStr( %src, 1, ?Reg1End-1 )
/dports/net-mgmt/icinga2/icinga2-2.13.2/lib/db_ido/
H A Ddbtype.cpp91 if (objName.SubStr(0, 6) == "check_") { in GetOrCreateObjectByName()
93 objName = objName.SubStr(6); in GetOrCreateObjectByName()
94 } else if (objName.SubStr(0, 13) == "notification_") { in GetOrCreateObjectByName()
96 objName = objName.SubStr(13); in GetOrCreateObjectByName()
97 } else if (objName.SubStr(0, 6) == "event_") { in GetOrCreateObjectByName()
99 objName = objName.SubStr(6); in GetOrCreateObjectByName()
/dports/editors/cudatext/CudaText-1.151.0/atsynedit/atsynedit/
H A Datstringproc.pas1002 if SubStr='' then exit;
1004 for i:= 1 to Length(SubStr) do
1005 if S[i]<>SubStr[i] then exit;
1015 if SubStr='' then exit;
1017 for i:= 1 to Length(SubStr) do
1018 if S[i]<>SubStr[i] then exit;
1028 if SubStr='' then exit;
1031 for i:= 1 to Length(SubStr) do
1042 if SubStr='' then exit;
1045 for i:= 1 to Length(SubStr) do
[all …]
/dports/editors/lazarus/lazarus/components/leakview/
H A Dleakinfo.pas336 Result := Pos(SubStr, Trc[TrcIndex])>0
361 s, SubStr: String;
363 SubStr := Trc[Idx];
366 s := Trim(SubStr);
397 l := length(SubStr);
399 if (i > l) or (SubStr[i] <> '$') then exit;
402 ((SubStr[i] in ['0'..'9']) or ((SubStr[i] in ['A'..'F'])) or ((SubStr[i] in ['a'..'f'])))
409 Result := (Pos('line', SubStr) > 0)
418 SubStr: String;
420 SubStr := Trc[Idx];
[all …]
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/leakview/
H A Dleakinfo.pas340 Result := Pos(SubStr, Trc[TrcIndex])>0
342 Result := PosI(SubStr, Trc[TrcIndex])>0;
365 s, SubStr: String;
367 SubStr := Trc[Idx];
370 s := Trim(SubStr);
401 l := length(SubStr);
406 ((SubStr[i] in ['0'..'9']) or ((SubStr[i] in ['A'..'F'])) or ((SubStr[i] in ['a'..'f'])))
413 Result := (Pos('line', SubStr) > 0)
422 SubStr: String;
424 SubStr := Trc[Idx];
[all …]
/dports/editors/lazarus-qt5/lazarus/components/leakview/
H A Dleakinfo.pas336 Result := Pos(SubStr, Trc[TrcIndex])>0
361 s, SubStr: String;
363 SubStr := Trc[Idx];
366 s := Trim(SubStr);
397 l := length(SubStr);
399 if (i > l) or (SubStr[i] <> '$') then exit;
402 ((SubStr[i] in ['0'..'9']) or ((SubStr[i] in ['A'..'F'])) or ((SubStr[i] in ['a'..'f'])))
409 Result := (Pos('line', SubStr) > 0)
418 SubStr: String;
420 SubStr := Trc[Idx];
[all …]
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/leakview/
H A Dleakinfo.pas340 Result := Pos(SubStr, Trc[TrcIndex])>0
342 Result := PosI(SubStr, Trc[TrcIndex])>0;
365 s, SubStr: String;
367 SubStr := Trc[Idx];
370 s := Trim(SubStr);
401 l := length(SubStr);
406 ((SubStr[i] in ['0'..'9']) or ((SubStr[i] in ['A'..'F'])) or ((SubStr[i] in ['a'..'f'])))
413 Result := (Pos('line', SubStr) > 0)
422 SubStr: String;
424 SubStr := Trc[Idx];
[all …]

12345678910>>...15