Searched defs:pszNeedle (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A DRTStrStr.cpp35 RTDECL(char *) RTStrStr(const char *pszHaystack, const char *pszNeedle) argument
40 if (!pszNeedle)
44 return (char *)strstr(pszHaystack, pszNeedle);
H A Dutf-8-case.cpp198 RTDECL(char *) RTStrIStr(const char *pszHaystack, const char *pszNeedle) argument
203 if (!pszNeedle)
207 if (!*pszNeedle)
215 const char * const pszNeedleStart = pszNeedle;
217 RTStrGetCpEx(&pszNeedle, &Cp0); /* pszNeedle is advanced one code point. */
218 size_t const cchNeedle = strlen(pszNeedle);
219 size_t const cchNeedleCp0= pszNeedle - pszNeedleStart;
233 && !RTStrNICmp(pszHaystack, pszNeedle, cchNeedle))
249 && !RTStrNICmp(pszHaystack, pszNeedle, cchNeedl
[all...]

Completed in 54 milliseconds