Lines Matching defs:target
526 String String::Replace(const char* target, const char* replacement) const
528 if (target == nullptr || target[0] == '\0' || replacement == nullptr) {
532 int index = IndexOf(target);
539 int step = strlen(target);
544 index = IndexOf(target, begin);
550 String String::Replace(const String& target, const String& replacement) const
552 if (target.IsEmpty() || replacement.IsNull()) {
556 int index = IndexOf(target);
563 int step = target.GetLength();
568 index = IndexOf(target, begin);