Searched refs:findThis (Results 1 - 4 of 4) sorted by relevance

/haiku/src/apps/stylededit/
H A DStyledEditWindow.h66 bool _Replace(BString findThis, BString replaceWith,
H A DStyledEditWindow.cpp1795 StyledEditWindow::_Replace(BString findThis, BString replaceWith, argument
1798 if (_Search(findThis, caseSensitive, wrap, backSearch)) {
1805 fTextView->Delete(start, start + findThis.Length());
1818 StyledEditWindow::_ReplaceAll(BString findThis, BString replaceWith, argument
1827 // iterate occurences of findThis without wrapping around
1828 while (_Search(findThis, caseSensitive, false, false, false)) {
1837 fTextView->Delete(start, start + findThis.Length());
/haiku/headers/os/support/
H A DString.h414 BString& _DoReplace(const char* findThis,
/haiku/src/kits/support/
H A DString.cpp2643 BString::_DoReplace(const char* findThis, const char* replaceWith, argument
2646 if (findThis == NULL || maxReplaceCount <= 0
2650 int32 findLen = strlen(findThis);
2665 && (srcPos = (this->*findMethod)(findThis, lastSrcPos, findLen)) >= 0;

Completed in 42 milliseconds