Lines Matching defs:that
2 // Use of this source code is governed by a BSD-style license that can be
49 // This is dependent on an ASCII-based character set, but that's a
105 // Find the position of the '.' that separates the extension from the rest
172 FilePath::FilePath(const FilePath& that) = default;
173 FilePath::FilePath(FilePath&& that) noexcept = default;
184 FilePath& FilePath::operator=(const FilePath& that) = default;
186 FilePath& FilePath::operator=(FilePath&& that) = default;
188 bool FilePath::operator==(const FilePath& that) const {
190 return EqualDriveLetterCaseInsensitive(this->path_, that.path_);
192 return path_ == that.path_;
196 bool FilePath::operator!=(const FilePath& that) const {
198 return !EqualDriveLetterCaseInsensitive(this->path_, that.path_);
200 return path_ != that.path_;