]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/stringpiece.cpp
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 // Copyright (C) 2009-2013, International Business Machines
4 // Corporation and others. All Rights Reserved.
6 // Copyright 2004 and onwards Google Inc.
8 // Author: wilsonh@google.com (Wilson Hsieh)
11 #include "unicode/utypes.h"
12 #include "unicode/stringpiece.h"
18 StringPiece::StringPiece(const char* str
)
19 : ptr_(str
), length_((str
== NULL
) ? 0 : static_cast<int32_t>(uprv_strlen(str
))) { }
21 StringPiece::StringPiece(const StringPiece
& x
, int32_t pos
) {
24 } else if (pos
> x
.length_
) {
28 length_
= x
.length_
- pos
;
31 StringPiece::StringPiece(const StringPiece
& x
, int32_t pos
, int32_t len
) {
34 } else if (pos
> x
.length_
) {
39 } else if (len
> x
.length_
- pos
) {
40 len
= x
.length_
- pos
;
46 void StringPiece::set(const char* str
) {
49 length_
= static_cast<int32_t>(uprv_strlen(str
));
54 U_EXPORT UBool U_EXPORT2
55 operator==(const StringPiece
& x
, const StringPiece
& y
) {
56 int32_t len
= x
.size();
57 if (len
!= y
.size()) {
63 const char* p
= x
.data();
64 const char* p2
= y
.data();
65 // Test last byte in case strings share large common prefix
67 if (p
[len
] != p2
[len
]) return false;
68 // At this point we can, but don't have to, ignore the last byte.
69 return uprv_memcmp(p
, p2
, len
) == 0;
73 const int32_t StringPiece::npos
= 0x7fffffff;