Home
last modified time | relevance | path

Searched refs:bmpSet (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4c/source/common/
Duniset.cpp146 len(1), capacity(1 + START_EXTRA), list(0), bmpSet(0), buffer(0), in UnicodeSet()
173 len(1), capacity(1 + START_EXTRA), list(0), bmpSet(0), buffer(0), in UnicodeSet()
199 bmpSet(0), in UnicodeSet()
223 bmpSet(0), in UnicodeSet()
260 delete bmpSet; in ~UnicodeSet()
290 if (o.bmpSet == NULL) { in operator =()
291 bmpSet = NULL; in operator =()
293 bmpSet = new BMPSet(*o.bmpSet, list, len); in operator =()
294 if (bmpSet == NULL) { // Check for memory allocation error. in operator =()
410 if (bmpSet != NULL) { in contains()
[all …]
Duniset_closure.cpp51 len(0), capacity(START_EXTRA), list(0), bmpSet(0), buffer(0), in UnicodeSet()
72 len(0), capacity(START_EXTRA), list(0), bmpSet(0), buffer(0), in UnicodeSet()
Duniset_props.cpp328 len(0), capacity(START_EXTRA), list(0), bmpSet(0), buffer(0), in UnicodeSet()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeSet.java354 private volatile BMPSet bmpSet; // The set is frozen if bmpSet or stringSpan is not null. field in UnicodeSet
512 result.bmpSet = this.bmpSet; in clone()
1665 if (bmpSet != null) { in contains()
1666 return bmpSet.contains(c); in contains()
3928 return (bmpSet != null || stringSpan != null); in isFrozen()
3967 bmpSet = new BMPSet(list, len); in freeze()
4003 if (bmpSet != null) { in span()
4005 return bmpSet.span(s, start, spanCondition, null); in span()
4044 } else if (bmpSet != null) { in spanAndCount()
4045 return bmpSet.span(s, start, spanCondition, outCount); in spanAndCount()
[all …]
/external/icu/icu4c/source/common/unicode/
Duniset.h281 BMPSet *bmpSet; // The set is frozen iff either bmpSet or stringSpan is not NULL. variable
1634 return (UBool)(bmpSet!=NULL || stringSpan!=NULL); in isFrozen()