Searched refs:sFind (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/include/
H A DSString.h255 int search(const char *sFind, lenpos_t start=0) const;
256 bool contains(const char *sFind) const {
257 return search(sFind) >= 0;
260 int substitute(const char *sFind, const char *sReplace);
261 int remove(const char *sFind) { argument
262 return substitute(sFind, "");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DPropSet.cxx269 int SString::search(const char *sFind, lenpos_t start) const { argument
271 const char *sFound = strstr(s + start, sFind);
293 int SString::substitute(const char *sFind, const char *sReplace) { argument
295 lenpos_t lenFind = strlen(sFind);
297 int posFound = search(sFind);
301 posFound = search(sFind, posFound + lenReplace);

Completed in 102 milliseconds