Home | History | Annotate | Download | only in unicode

Lines Matching refs:uset

18 #include "unicode/uset.h"
504 * Get a UnicodeSet pointer from a USet
506 * @param uset a USet (the ICU plain C type for UnicodeSet)
511 inline static UnicodeSet *fromUSet(USet *uset);
514 * Get a UnicodeSet pointer from a const USet
516 * @param uset a const USet (the ICU plain C type for UnicodeSet)
521 inline static const UnicodeSet *fromUSet(const USet *uset);
524 * Produce a USet * pointer for this UnicodeSet.
525 * USet is the plain C type for UnicodeSet
527 * @return a USet pointer for this UnicodeSet
530 inline USet *toUSet();
534 * Produce a const USet * pointer for this UnicodeSet.
535 * USet is the plain C type for UnicodeSet
537 * @return a const USet pointer for this UnicodeSet
540 inline const USet * toUSet() const;
1480 // Private API for the USet API
1677 inline UnicodeSet *UnicodeSet::fromUSet(USet *uset) {
1678 return reinterpret_cast<UnicodeSet *>(uset);
1681 inline const UnicodeSet *UnicodeSet::fromUSet(const USet *uset) {
1682 return reinterpret_cast<const UnicodeSet *>(uset);
1685 inline USet *UnicodeSet::toUSet() {
1686 return reinterpret_cast<USet *>(this);
1689 inline const USet *UnicodeSet::toUSet() const {
1690 return reinterpret_cast<const USet *>(this);