HomeSort by relevance Sort by last modified time
    Searched refs:Normalizer2 (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/i18n/
nortrans.h 18 #include "unicode/normalizer2.h"
27 const Normalizer2 &fNorm2;
87 NormalizationTransliterator(const UnicodeString& id, const Normalizer2 &norm2);
nortrans.cpp 15 #include "unicode/normalizer2.h"
62 const Normalizer2 *norm2 = Normalizer2::getInstance(NULL, name, mode, errorCode);
74 const Normalizer2 &norm2) :
usrchimp.h 16 #include "unicode/normalizer2.h"
64 const U_NAMESPACE_QUALIFIER Normalizer2 *nfd;
  /external/icu/icu4c/source/i18n/
nortrans.h 18 #include "unicode/normalizer2.h"
27 const Normalizer2 &fNorm2;
87 NormalizationTransliterator(const UnicodeString& id, const Normalizer2 &norm2);
nortrans.cpp 15 #include "unicode/normalizer2.h"
63 const Normalizer2 *norm2 = Normalizer2::getInstance(NULL, name, mode, errorCode);
75 const Normalizer2 &norm2) :
collationruleparser.h 31 class Normalizer2;
178 const Normalizer2 &nfd, &nfc;
collationbuilder.h 35 class Normalizer2;
293 const Normalizer2 &nfd, &fcd;
usrchimp.h 16 #include "unicode/normalizer2.h"
170 const icu::Normalizer2 *nfd;
  /external/icu/icu4c/source/common/unicode/
normalizer2.h 8 * file name: normalizer2.h
40 * The Normalizer2 class is not intended for public subclassing.
78 class U_COMMON_API Normalizer2 : public UObject {
84 ~Normalizer2();
87 * Returns a Normalizer2 instance for Unicode NFC normalization.
94 * @return the requested Normalizer2, if successful
97 static const Normalizer2 *
101 * Returns a Normalizer2 instance for Unicode NFD normalization.
108 * @return the requested Normalizer2, if successful
111 static const Normalizer2 *
    [all...]
caniter.h 34 class Normalizer2;
181 const Normalizer2 &nfd;
normlzr.h 22 #include "unicode/normalizer2.h"
33 * Note: This API has been replaced by the Normalizer2 class and is only available
34 * for backward compatibility. This class simply delegates to the Normalizer2 class.
744 const Normalizer2 *fNorm2; // not owned; may be equal to fFilteredNorm2
  /external/icu/icu4c/source/common/
normalizer2.cpp 8 * file name: normalizer2.cpp
22 #include "unicode/normalizer2.h"
35 // Public API dispatch via Normalizer2 subclasses -------------------------- ***
37 Normalizer2::~Normalizer2() {}
40 Normalizer2::getRawDecomposition(UChar32, UnicodeString &) const {
45 Normalizer2::composePair(UChar32, UChar32) const {
50 Normalizer2::getCombiningClass(UChar32 /*c*/) const {
54 // Normalizer2 implementation for the old UNORM_NONE.
55 class NoopNormalizer2 : public Normalizer2 {
    [all...]
unorm.cpp 23 * 2009-nov..2010-jan Markus Scherer total rewrite, new Normalizer2 API & code
51 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
59 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
63 reinterpret_cast<const UNormalizer2 *>(static_cast<Normalizer2 *>(&fn2)),
74 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
82 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
86 reinterpret_cast<const UNormalizer2 *>(static_cast<Normalizer2 *>(&fn2)),
101 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
105 reinterpret_cast<const UNormalizer2 *>(static_cast<Normalizer2 *>(&fn2)),
119 const Normalizer2 *n2
    [all...]
normalizer2impl.h 24 #include "unicode/normalizer2.h"
425 // NFD without an NFD Normalizer2 instance.
623 static const Normalizer2 *getNFCInstance(UErrorCode &errorCode);
624 static const Normalizer2 *getNFDInstance(UErrorCode &errorCode);
625 static const Normalizer2 *getFCDInstance(UErrorCode &errorCode);
626 static const Normalizer2 *getFCCInstance(UErrorCode &errorCode);
627 static const Normalizer2 *getNFKCInstance(UErrorCode &errorCode);
628 static const Normalizer2 *getNFKDInstance(UErrorCode &errorCode);
629 static const Normalizer2 *getNFKC_CFInstance(UErrorCode &errorCode);
630 static const Normalizer2 *getNoopInstance(UErrorCode &errorCode)
    [all...]
normlzr.cpp 139 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, status);
174 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, status);
191 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, status);
225 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, errorCode);
filterednormalizer2.cpp 21 #include "unicode/normalizer2.h"
280 Normalizer2 *fn2=new FilteredNormalizer2(*(Normalizer2 *)norm2,
  /external/chromium_org/third_party/icu/source/common/unicode/
normalizer2.h 8 * file name: normalizer2.h
40 * The Normalizer2 class is not intended for public subclassing.
78 class U_COMMON_API Normalizer2 : public UObject {
81 * Returns a Normalizer2 instance which uses the specified data file
98 * @return the requested Normalizer2, if successful
101 static const Normalizer2 *
179 * on a UNORM2_DECOMPOSE Normalizer2 instance, but much faster.
180 * This function is independent of the mode of the Normalizer2.
307 * This class implements all of (and only) the Normalizer2 API.
312 class U_COMMON_API FilteredNormalizer2 : public Normalizer2 {
    [all...]
caniter.h 34 class Normalizer2;
179 const Normalizer2 &nfd;
normlzr.h 22 #include "unicode/normalizer2.h"
33 * Note: This API has been replaced by the Normalizer2 class and is only available
34 * for backward compatibility. This class simply delegates to the Normalizer2 class.
744 const Normalizer2 *fNorm2; // not owned; may be equal to fFilteredNorm2
  /external/chromium_org/third_party/icu/source/common/
unorm.cpp 23 * 2009-nov..2010-jan Markus Scherer total rewrite, new Normalizer2 API & code
51 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
59 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
63 reinterpret_cast<const UNormalizer2 *>(static_cast<Normalizer2 *>(&fn2)),
74 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
82 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
86 reinterpret_cast<const UNormalizer2 *>(static_cast<Normalizer2 *>(&fn2)),
101 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
105 reinterpret_cast<const UNormalizer2 *>(static_cast<Normalizer2 *>(&fn2)),
122 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode)
    [all...]
normalizer2.cpp 8 * file name: normalizer2.cpp
22 #include "unicode/normalizer2.h"
34 // Public API dispatch via Normalizer2 subclasses -------------------------- ***
36 // Normalizer2 implementation for the old UNORM_NONE.
37 class NoopNormalizer2 : public Normalizer2 {
100 class Normalizer2WithImpl : public Normalizer2 {
403 class Norm2Singleton : public SimpleSingletonWrapper<Normalizer2> {
405 Norm2Singleton(SimpleSingleton &s) : SimpleSingletonWrapper<Normalizer2>(s) {}
406 Normalizer2 *getInstance(UErrorCode &errorCode) {
407 return SimpleSingletonWrapper<Normalizer2>::getInstance(createInstance, NULL, errorCode)
    [all...]
normalizer2impl.h 24 #include "unicode/normalizer2.h"
509 static const Normalizer2 *getNFCInstance(UErrorCode &errorCode);
510 static const Normalizer2 *getNFDInstance(UErrorCode &errorCode);
511 static const Normalizer2 *getFCDInstance(UErrorCode &errorCode);
512 static const Normalizer2 *getFCCInstance(UErrorCode &errorCode);
513 static const Normalizer2 *getNFKCInstance(UErrorCode &errorCode);
514 static const Normalizer2 *getNFKDInstance(UErrorCode &errorCode);
515 static const Normalizer2 *getNFKC_CFInstance(UErrorCode &errorCode);
516 static const Normalizer2 *getNoopInstance(UErrorCode &errorCode);
518 static const Normalizer2 *getInstance(UNormalizationMode mode, UErrorCode &errorCode)
    [all...]
normlzr.cpp 140 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, status);
175 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, status);
192 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, status);
226 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, errorCode);
filterednormalizer2.cpp 21 #include "unicode/normalizer2.h"
263 Normalizer2 *fn2=new FilteredNormalizer2(*(Normalizer2 *)norm2,
  /external/chromium_org/third_party/icu/source/test/intltest/
tstnorm.cpp     [all...]

Completed in 616 milliseconds

1 2