Searched defs:stringSpan (Results 1 - 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/unicode/
H A Duniset.h281 BMPSet *bmpSet; // The set is frozen iff either bmpSet or stringSpan is not NULL.
297 UnicodeSetStringSpan *stringSpan; member in class:U_FINAL
1634 return (UBool)(bmpSet!=NULL || stringSpan!=NULL);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeSet.java354 private volatile BMPSet bmpSet; // The set is frozen if bmpSet or stringSpan is not null.
355 private volatile UnicodeSetStringSpan stringSpan; field in class:UnicodeSet
513 result.stringSpan = this.stringSpan;
1668 if (stringSpan != null) {
1669 return stringSpan.contains(c);
3928 return (bmpSet != null || stringSpan != null);
3958 stringSpan = new UnicodeSetStringSpan(this, new ArrayList<String>(strings), UnicodeSetStringSpan.ALL);
3960 if (stringSpan == null || !stringSpan
[all...]

Completed in 106 milliseconds