Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Unified Diff: third_party/WebKit/Source/wtf/text/StringView.cpp

Issue 2764243002: Move files in wtf/ to platform/wtf/ (Part 9). (Closed)
Patch Set: Rebase. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/wtf/text/StringView.h ('k') | third_party/WebKit/Source/wtf/text/UTF8.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/text/StringView.cpp
diff --git a/third_party/WebKit/Source/wtf/text/StringView.cpp b/third_party/WebKit/Source/wtf/text/StringView.cpp
deleted file mode 100644
index b74b75ccfd8d7f40dbcf96b0a749b51767c1bf8d..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/wtf/text/StringView.cpp
+++ /dev/null
@@ -1,101 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "wtf/text/StringView.h"
-
-#include "wtf/text/AtomicString.h"
-#include "wtf/text/StringImpl.h"
-#include "wtf/text/WTFString.h"
-
-namespace WTF {
-
-StringView::StringView(const UChar* chars)
- : StringView(chars, chars ? lengthOfNullTerminatedString(chars) : 0) {}
-
-#if DCHECK_IS_ON()
-StringView::~StringView() {
- DCHECK(m_impl);
- DCHECK(!m_impl->hasOneRef() || m_impl->isStatic())
- << "StringView does not own the StringImpl, it "
- "must not have the last ref.";
-}
-#endif
-
-String StringView::toString() const {
- if (isNull())
- return String();
- if (isEmpty())
- return emptyString;
- if (StringImpl* impl = sharedImpl())
- return impl;
- if (is8Bit())
- return String(characters8(), m_length);
- return StringImpl::create8BitIfPossible(characters16(), m_length);
-}
-
-AtomicString StringView::toAtomicString() const {
- if (isNull())
- return nullAtom;
- if (isEmpty())
- return emptyAtom;
- if (StringImpl* impl = sharedImpl())
- return AtomicString(impl);
- if (is8Bit())
- return AtomicString(characters8(), m_length);
- return AtomicString(characters16(), m_length);
-}
-
-bool equalStringView(const StringView& a, const StringView& b) {
- if (a.isNull() || b.isNull())
- return a.isNull() == b.isNull();
- if (a.length() != b.length())
- return false;
- if (a.is8Bit()) {
- if (b.is8Bit())
- return equal(a.characters8(), b.characters8(), a.length());
- return equal(a.characters8(), b.characters16(), a.length());
- }
- if (b.is8Bit())
- return equal(a.characters16(), b.characters8(), a.length());
- return equal(a.characters16(), b.characters16(), a.length());
-}
-
-bool equalIgnoringCaseAndNullity(const StringView& a, const StringView& b) {
- if (a.length() != b.length())
- return false;
- if (a.is8Bit()) {
- if (b.is8Bit())
- return equalIgnoringCase(a.characters8(), b.characters8(), a.length());
- return equalIgnoringCase(a.characters8(), b.characters16(), a.length());
- }
- if (b.is8Bit())
- return equalIgnoringCase(a.characters16(), b.characters8(), a.length());
- return equalIgnoringCase(a.characters16(), b.characters16(), a.length());
-}
-
-bool equalIgnoringCase(const StringView& a, const StringView& b) {
- if (a.isNull() || b.isNull())
- return a.isNull() == b.isNull();
- return equalIgnoringCaseAndNullity(a, b);
-}
-
-bool equalIgnoringASCIICase(const StringView& a, const StringView& b) {
- if (a.isNull() || b.isNull())
- return a.isNull() == b.isNull();
- if (a.length() != b.length())
- return false;
- if (a.is8Bit()) {
- if (b.is8Bit())
- return equalIgnoringASCIICase(a.characters8(), b.characters8(),
- a.length());
- return equalIgnoringASCIICase(a.characters8(), b.characters16(),
- a.length());
- }
- if (b.is8Bit())
- return equalIgnoringASCIICase(a.characters16(), b.characters8(),
- a.length());
- return equalIgnoringASCIICase(a.characters16(), b.characters16(), a.length());
-}
-
-} // namespace WTF
« no previous file with comments | « third_party/WebKit/Source/wtf/text/StringView.h ('k') | third_party/WebKit/Source/wtf/text/UTF8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698