Home
last modified time | relevance | path

Searched refs:lookForText (Results 1 – 5 of 5) sorted by relevance

/dports/games/ags/ags_linux_v.3.4.4.1/Engine/ac/
H A Dstring.cpp135 const char* String_Replace(const char *thisString, const char *lookForText, const char *replaceWith… in String_Replace() argument
145 matchHere = (strncmp(&thisString[i], lookForText, strlen(lookForText)) == 0); in String_Replace()
149 matchHere = (strnicmp(&thisString[i], lookForText, strlen(lookForText)) == 0); in String_Replace()
156 i += strlen(lookForText) - 1; in String_Replace()
H A Dstring.h36 const char* String_Replace(const char *thisString, const char *lookForText, const char *replaceWith…
/dports/games/scummvm/scummvm-2.5.1/engines/ags/engine/ac/
H A Dstring.cpp148 const char *String_Replace(const char *thisString, const char *lookForText, const char *replaceWith… in String_Replace() argument
152 size_t lookForLen = strlen(lookForText); in String_Replace()
155 if (strncmp(ptr, lookForText, lookForLen) == 0) { in String_Replace()
165 size_t lookForLen = ustrlen(lookForText); in String_Replace()
166 size_t lookForSz = strlen(lookForText); // length in bytes in String_Replace()
170 if (ustrnicmp(p_cur, lookForText, lookForLen) == 0) { in String_Replace()
H A Dstring.h44 const char *String_Replace(const char *thisString, const char *lookForText, const char *replaceWith…
/dports/games/scummvm/scummvm-2.5.1/engines/ags/plugins/core/
H A Dstring.cpp102 …PARAMS4(const char *, thisString, const char *, lookForText, const char *, replaceWithText, bool, … in Replace()
103 params._result = AGS3::String_Replace(thisString, lookForText, replaceWithText, caseSensitive); in Replace()