aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/icu/i18n/funcrepl.cpp
diff options
context:
space:
mode:
authorneksard <neksard@yandex-team.ru>2022-02-10 16:45:33 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:33 +0300
commit1d9c550e7c38e051d7961f576013a482003a70d9 (patch)
treeb2cc84ee7850122e7ccf51d0ea21e4fa7e7a5685 /contrib/libs/icu/i18n/funcrepl.cpp
parent8f7cf138264e0caa318144bf8a2c950e0b0a8593 (diff)
downloadydb-1d9c550e7c38e051d7961f576013a482003a70d9.tar.gz
Restoring authorship annotation for <neksard@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/icu/i18n/funcrepl.cpp')
-rw-r--r--contrib/libs/icu/i18n/funcrepl.cpp256
1 files changed, 128 insertions, 128 deletions
diff --git a/contrib/libs/icu/i18n/funcrepl.cpp b/contrib/libs/icu/i18n/funcrepl.cpp
index 0735ccdf69..7dd54ed8d2 100644
--- a/contrib/libs/icu/i18n/funcrepl.cpp
+++ b/contrib/libs/icu/i18n/funcrepl.cpp
@@ -1,130 +1,130 @@
// © 2016 and later: Unicode, Inc. and others.
-// License & terms of use: http://www.unicode.org/copyright.html
-/*
-**********************************************************************
-* Copyright (c) 2002-2012, International Business Machines Corporation
-* and others. All Rights Reserved.
-**********************************************************************
-* Date Name Description
-* 02/04/2002 aliu Creation.
-**********************************************************************
-*/
-
-#include "unicode/utypes.h"
-
-#if !UCONFIG_NO_TRANSLITERATION
-
-#include "unicode/translit.h"
-#include "unicode/uniset.h"
-#include "funcrepl.h"
-
-static const UChar AMPERSAND = 38; // '&'
-static const UChar OPEN[] = {40,32,0}; // "( "
-static const UChar CLOSE[] = {32,41,0}; // " )"
-
-U_NAMESPACE_BEGIN
-
-UOBJECT_DEFINE_RTTI_IMPLEMENTATION(FunctionReplacer)
-
-/**
- * Construct a replacer that takes the output of the given
- * replacer, passes it through the given transliterator, and emits
- * the result as output.
- */
-FunctionReplacer::FunctionReplacer(Transliterator* adoptedTranslit,
- UnicodeFunctor* adoptedReplacer) {
- translit = adoptedTranslit;
- replacer = adoptedReplacer;
-}
-
-/**
- * Copy constructor.
- */
-FunctionReplacer::FunctionReplacer(const FunctionReplacer& other) :
- UnicodeFunctor(other),
- UnicodeReplacer(other)
-{
- translit = other.translit->clone();
- replacer = other.replacer->clone();
-}
-
-/**
- * Destructor
- */
-FunctionReplacer::~FunctionReplacer() {
- delete translit;
- delete replacer;
-}
-
-/**
- * Implement UnicodeFunctor
- */
+// License & terms of use: http://www.unicode.org/copyright.html
+/*
+**********************************************************************
+* Copyright (c) 2002-2012, International Business Machines Corporation
+* and others. All Rights Reserved.
+**********************************************************************
+* Date Name Description
+* 02/04/2002 aliu Creation.
+**********************************************************************
+*/
+
+#include "unicode/utypes.h"
+
+#if !UCONFIG_NO_TRANSLITERATION
+
+#include "unicode/translit.h"
+#include "unicode/uniset.h"
+#include "funcrepl.h"
+
+static const UChar AMPERSAND = 38; // '&'
+static const UChar OPEN[] = {40,32,0}; // "( "
+static const UChar CLOSE[] = {32,41,0}; // " )"
+
+U_NAMESPACE_BEGIN
+
+UOBJECT_DEFINE_RTTI_IMPLEMENTATION(FunctionReplacer)
+
+/**
+ * Construct a replacer that takes the output of the given
+ * replacer, passes it through the given transliterator, and emits
+ * the result as output.
+ */
+FunctionReplacer::FunctionReplacer(Transliterator* adoptedTranslit,
+ UnicodeFunctor* adoptedReplacer) {
+ translit = adoptedTranslit;
+ replacer = adoptedReplacer;
+}
+
+/**
+ * Copy constructor.
+ */
+FunctionReplacer::FunctionReplacer(const FunctionReplacer& other) :
+ UnicodeFunctor(other),
+ UnicodeReplacer(other)
+{
+ translit = other.translit->clone();
+ replacer = other.replacer->clone();
+}
+
+/**
+ * Destructor
+ */
+FunctionReplacer::~FunctionReplacer() {
+ delete translit;
+ delete replacer;
+}
+
+/**
+ * Implement UnicodeFunctor
+ */
FunctionReplacer* FunctionReplacer::clone() const {
- return new FunctionReplacer(*this);
-}
-
-/**
- * UnicodeFunctor API. Cast 'this' to a UnicodeReplacer* pointer
- * and return the pointer.
- */
-UnicodeReplacer* FunctionReplacer::toReplacer() const {
- FunctionReplacer *nonconst_this = const_cast<FunctionReplacer *>(this);
- UnicodeReplacer *nonconst_base = static_cast<UnicodeReplacer *>(nonconst_this);
-
- return nonconst_base;
-}
-
-/**
- * UnicodeReplacer API
- */
-int32_t FunctionReplacer::replace(Replaceable& text,
- int32_t start,
- int32_t limit,
- int32_t& cursor)
-{
-
- // First delegate to subordinate replacer
- int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
- limit = start + len;
-
- // Now transliterate
- limit = translit->transliterate(text, start, limit);
-
- return limit - start;
-}
-
-/**
- * UnicodeReplacer API
- */
-UnicodeString& FunctionReplacer::toReplacerPattern(UnicodeString& rule,
- UBool escapeUnprintable) const {
- UnicodeString str;
- rule.truncate(0);
- rule.append(AMPERSAND);
- rule.append(translit->getID());
- rule.append(OPEN, 2);
- rule.append(replacer->toReplacer()->toReplacerPattern(str, escapeUnprintable));
- rule.append(CLOSE, 2);
- return rule;
-}
-
-/**
- * Implement UnicodeReplacer
- */
-void FunctionReplacer::addReplacementSetTo(UnicodeSet& toUnionTo) const {
- UnicodeSet set;
- toUnionTo.addAll(translit->getTargetSet(set));
-}
-
-/**
- * UnicodeFunctor API
- */
-void FunctionReplacer::setData(const TransliterationRuleData* d) {
- replacer->setData(d);
-}
-
-U_NAMESPACE_END
-
-#endif /* #if !UCONFIG_NO_TRANSLITERATION */
-
-//eof
+ return new FunctionReplacer(*this);
+}
+
+/**
+ * UnicodeFunctor API. Cast 'this' to a UnicodeReplacer* pointer
+ * and return the pointer.
+ */
+UnicodeReplacer* FunctionReplacer::toReplacer() const {
+ FunctionReplacer *nonconst_this = const_cast<FunctionReplacer *>(this);
+ UnicodeReplacer *nonconst_base = static_cast<UnicodeReplacer *>(nonconst_this);
+
+ return nonconst_base;
+}
+
+/**
+ * UnicodeReplacer API
+ */
+int32_t FunctionReplacer::replace(Replaceable& text,
+ int32_t start,
+ int32_t limit,
+ int32_t& cursor)
+{
+
+ // First delegate to subordinate replacer
+ int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
+ limit = start + len;
+
+ // Now transliterate
+ limit = translit->transliterate(text, start, limit);
+
+ return limit - start;
+}
+
+/**
+ * UnicodeReplacer API
+ */
+UnicodeString& FunctionReplacer::toReplacerPattern(UnicodeString& rule,
+ UBool escapeUnprintable) const {
+ UnicodeString str;
+ rule.truncate(0);
+ rule.append(AMPERSAND);
+ rule.append(translit->getID());
+ rule.append(OPEN, 2);
+ rule.append(replacer->toReplacer()->toReplacerPattern(str, escapeUnprintable));
+ rule.append(CLOSE, 2);
+ return rule;
+}
+
+/**
+ * Implement UnicodeReplacer
+ */
+void FunctionReplacer::addReplacementSetTo(UnicodeSet& toUnionTo) const {
+ UnicodeSet set;
+ toUnionTo.addAll(translit->getTargetSet(set));
+}
+
+/**
+ * UnicodeFunctor API
+ */
+void FunctionReplacer::setData(const TransliterationRuleData* d) {
+ replacer->setData(d);
+}
+
+U_NAMESPACE_END
+
+#endif /* #if !UCONFIG_NO_TRANSLITERATION */
+
+//eof