Home | History | Annotate | Download | only in common

Lines Matching refs:Normalizer2WithImpl

122 class Normalizer2WithImpl : public Normalizer2 {
124 Normalizer2WithImpl(const Normalizer2Impl &ni) : impl(ni) {}
125 virtual ~Normalizer2WithImpl();
255 return Normalizer2WithImpl::isNormalized(s, errorCode) ? UNORM_YES : UNORM_NO;
279 Normalizer2WithImpl::~Normalizer2WithImpl() {}
281 class DecomposeNormalizer2 : public Normalizer2WithImpl {
283 DecomposeNormalizer2(const Normalizer2Impl &ni) : Normalizer2WithImpl(ni) {}
292 using Normalizer2WithImpl::normalize; // Avoid warning about hiding base class function.
303 using Normalizer2WithImpl::spanQuickCheckYes; // Avoid warning about hiding base class function.
314 class ComposeNormalizer2 : public Normalizer2WithImpl {
317 Normalizer2WithImpl(ni), onlyContiguous(fcc) {}
326 using Normalizer2WithImpl::normalize; // Avoid warning about hiding base class function.
369 using Normalizer2WithImpl::spanQuickCheckYes; // Avoid warning about hiding base class function.
388 class FCDNormalizer2 : public Normalizer2WithImpl {
390 FCDNormalizer2(const Normalizer2Impl &ni) : Normalizer2WithImpl(ni) {}
399 using Normalizer2WithImpl::normalize; // Avoid warning about hiding base class function.
410 using Normalizer2WithImpl::spanQuickCheckYes; // Avoid warning about hiding base class function.
598 return &((Normalizer2WithImpl *)norm2)->impl;
765 const Normalizer2WithImpl *n2wi=dynamic_cast<const Normalizer2WithImpl *>(n2);
802 const Normalizer2WithImpl *n2wi=dynamic_cast<const Normalizer2WithImpl *>(n2);
987 return ((const Normalizer2WithImpl *)norm2)->getQuickCheck(c);