mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
805dd78c93
Bug 924839 - Remove a patch already part of ICU 52.1. See http://bugs.icu-project.org/trac/ticket/10283 but also note the relevant code was removed completely upstream. r=glandium * * * Bug 924839 - Remove another patch already part of ICU 52.1. See http://bugs.icu-project.org/trac/ticket/10290 for that. r=gaston * * * Bug 924839 - Remove another patch already in ICU 52.1. See http://bugs.icu-project.org/trac/ticket/10045 for more. r=Norbert * * * Bug 924839 - Remove another patch already applied upstream. See http://bugs.icu-project.org/trac/changeset/32937 for more. r=gaston * * * Bug 924839 - Update the ICU update script to update to 52.1, *without* applying any of our local patches. r=glandium * * * Bug 924839 - Make the ICU update script only do updating within intl/icu/source and nowhere else. r=glandium * * * Bug 924839 - Implement the changes that would be made by |cd intl/; ./update-icu.sh http://source.icu-project.org/repos/icu/icu/tags/release-52-1/;|, run with the prior changesets' changes made (thus not applying any of our local patches). These changes don't actually work without subsequent adjustments, but this provides a codebase upon which those adjustments can be made, for the purpose of generating local patches to be kept in intl/icu-patches/. rs=the-usual-suspects * * * Bug 924839 - Update the bug 899722 local patch to make runConfigureICU not override CC/CXX on BSD systems. r=gaston * * * Bug 924839 - Update the bug 724533 patch that makes ICU builds with MozillaBuild on Windows. r=glandium * * * Bug 924839 - Import an upstream patch fixing the genrb tool to properly handle the -R (--omitCollationRules) option. See http://bugs.icu-project.org/trac/ticket/10043 for the original bug report and a link to the ultimate upstream landing. r=Norbert * * * Bug 924839 - Import the upstream fix for http://bugs.icu-project.org/trac/ticket/10486 so that ICU with -DU_USING_ICU_NAMESPACE=0 will compile on Windows. r=Norbert * * * Bug 924839 - Adjust the update script to update ICU, then to apply all local patches (rather than skipping the second step). Thus if the update script is properly run, now, the final result should be no changes at all to the tree. NOT REVIEWED YET * * * Bug 924839 - Update jstests that depend on CLDR locale data to match CLDR 24. r=Norbert
74 lines
1.6 KiB
C++
74 lines
1.6 KiB
C++
// Copyright (C) 2009-2013, International Business Machines
|
|
// Corporation and others. All Rights Reserved.
|
|
//
|
|
// Copyright 2004 and onwards Google Inc.
|
|
//
|
|
// Author: wilsonh@google.com (Wilson Hsieh)
|
|
//
|
|
|
|
#include "unicode/utypes.h"
|
|
#include "unicode/stringpiece.h"
|
|
#include "cstring.h"
|
|
#include "cmemory.h"
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
StringPiece::StringPiece(const char* str)
|
|
: ptr_(str), length_((str == NULL) ? 0 : static_cast<int32_t>(uprv_strlen(str))) { }
|
|
|
|
StringPiece::StringPiece(const StringPiece& x, int32_t pos) {
|
|
if (pos < 0) {
|
|
pos = 0;
|
|
} else if (pos > x.length_) {
|
|
pos = x.length_;
|
|
}
|
|
ptr_ = x.ptr_ + pos;
|
|
length_ = x.length_ - pos;
|
|
}
|
|
|
|
StringPiece::StringPiece(const StringPiece& x, int32_t pos, int32_t len) {
|
|
if (pos < 0) {
|
|
pos = 0;
|
|
} else if (pos > x.length_) {
|
|
pos = x.length_;
|
|
}
|
|
if (len < 0) {
|
|
len = 0;
|
|
} else if (len > x.length_ - pos) {
|
|
len = x.length_ - pos;
|
|
}
|
|
ptr_ = x.ptr_ + pos;
|
|
length_ = len;
|
|
}
|
|
|
|
void StringPiece::set(const char* str) {
|
|
ptr_ = str;
|
|
if (str != NULL)
|
|
length_ = static_cast<int32_t>(uprv_strlen(str));
|
|
else
|
|
length_ = 0;
|
|
}
|
|
|
|
U_EXPORT UBool U_EXPORT2
|
|
operator==(const StringPiece& x, const StringPiece& y) {
|
|
int32_t len = x.size();
|
|
if (len != y.size()) {
|
|
return false;
|
|
}
|
|
if (len == 0) {
|
|
return true;
|
|
}
|
|
const char* p = x.data();
|
|
const char* p2 = y.data();
|
|
// Test last byte in case strings share large common prefix
|
|
--len;
|
|
if (p[len] != p2[len]) return false;
|
|
// At this point we can, but don't have to, ignore the last byte.
|
|
return uprv_memcmp(p, p2, len) == 0;
|
|
}
|
|
|
|
|
|
const int32_t StringPiece::npos = 0x7fffffff;
|
|
|
|
U_NAMESPACE_END
|