Home
last modified time | relevance | path

Searched refs:bmpSet (Results 1 – 6 of 6) 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/android_icu4j/src/main/java/android/icu/text/
DUnicodeSet.java351 private volatile BMPSet bmpSet; // The set is frozen if bmpSet or stringSpan is not null. field in UnicodeSet
499 result.bmpSet = this.bmpSet; in clone()
1616 if (bmpSet != null) { in contains()
1617 return bmpSet.contains(c); in contains()
3885 return (bmpSet != null || stringSpan != null); in isFrozen()
3923 bmpSet = new BMPSet(list, len); in freeze()
3957 if (bmpSet != null) { in span()
3959 return bmpSet.span(s, start, spanCondition, null); in span()
3999 } else if (bmpSet != null) { in spanAndCount()
4000 return bmpSet.span(s, start, spanCondition, outCount); in spanAndCount()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeSet.java355 private volatile BMPSet bmpSet; // The set is frozen if bmpSet or stringSpan is not null. field in UnicodeSet
513 result.bmpSet = this.bmpSet; in clone()
1666 if (bmpSet != null) { in contains()
1667 return bmpSet.contains(c); in contains()
3975 return (bmpSet != null || stringSpan != null); in isFrozen()
4014 bmpSet = new BMPSet(list, len); in freeze()
4050 if (bmpSet != null) { in span()
4052 return bmpSet.span(s, start, spanCondition, null); in span()
4091 } else if (bmpSet != null) { in spanAndCount()
4092 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
1656 return (UBool)(bmpSet!=NULL || stringSpan!=NULL); in isFrozen()