Home | History | Annotate | Download | only in unicode

Lines Matching full:uchar32

280     UChar32* list; // MUST be terminated with HIGH
282 UChar32* buffer; // internal buffer, may be NULL
370 UnicodeSet(UChar32 start, UChar32 end);
572 UnicodeSet& set(UChar32 start, UChar32 end);
757 virtual UBool contains(UChar32 c) const;
767 virtual UBool contains(UChar32 start, UChar32 end) const;
804 UBool containsNone(UChar32 start, UChar32 end) const;
832 inline UBool containsSome(UChar32 start, UChar32 end) const;
1004 int32_t findCodePoint(UChar32 c) const;
1025 int32_t indexOf(UChar32 c) const;
1030 * out of range, return (UChar32)-1. The inverse of this method is
1033 * @return the character at the given index, or (UChar32)-1.
1036 UChar32 charAt(int32_t index) const;
1052 virtual UnicodeSet& add(UChar32 start, UChar32 end);
1061 UnicodeSet& add(UChar32 c);
1160 virtual UnicodeSet& retain(UChar32 start, UChar32 end);
1168 UnicodeSet& retain(UChar32 c);
1183 virtual UnicodeSet& remove(UChar32 start, UChar32 end);
1192 UnicodeSet& remove(UChar32 c);
1228 virtual UnicodeSet& complement(UChar32 start, UChar32 end);
1237 UnicodeSet& complement(UChar32
1260 * @see #add(UChar32, UChar32)
1362 virtual UChar32 getRangeStart(int32_t index) const;
1371 virtual UChar32 getRangeEnd(int32_t index) const;
1522 static void _appendToPat(UnicodeString& buf, UChar32 c, UBool escapeUnprintable);
1528 void exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity);
1530 void add(const UChar32* other, int32_t otherLen, int8_t polarity);
1532 void retain(const UChar32* other, int32_t otherLen, int8_t polarity);
1599 typedef UBool (*Filter)(UChar32 codePoint, void* context);
1637 inline UBool UnicodeSet::containsSome(UChar32 start, UChar32 end) const {