Home
last modified time | relevance | path

Searched refs:sset (Results 1 – 6 of 6) sorted by relevance

/external/icu4c/i18n/
Duspoof_wsconf.cpp234 bsset->sset = new ScriptSet(); in buildWSConfusableData()
238 if (bsset->sset == NULL) { in buildWSConfusableData()
245 bsset->sset->Union(targScript); in buildWSConfusableData()
246 bsset->sset->Union(srcScript); in buildWSConfusableData()
278 if (*(outerSet->sset) == *(innerSet->sset) && outerSet->sset != innerSet->sset) { in buildWSConfusableData()
279 delete innerSet->sset; in buildWSConfusableData()
281 innerSet->sset = outerSet->sset; in buildWSConfusableData()
364 rtScriptSets[rindex] = *bSet->sset; // Assignment of a ScriptSet just copies the bits. in buildWSConfusableData()
417 sset = NULL; in BuilderScriptSet()
425 delete sset; in ~BuilderScriptSet()
Duspoof_wsconf.h48 ScriptSet *sset; // The set of scripts itself. variable
Ddecimfmt.cpp2597 UnicodeSet *sset, UChar32 schar) in matchSymbol() argument
2599 if (sset != NULL) { in matchSymbol()
2600 return sset->contains(schar); in matchSymbol()
2608 const UnicodeSet *sset, UChar32 schar) { in matchDecimal() argument
2613 } else if(sset!=NULL) { in matchDecimal()
2614 return sset->contains(schar); in matchDecimal()
2622 const UnicodeSet *sset, in matchGrouping() argument
2629 } else if(sset!=NULL) { in matchGrouping()
2630 return sset->contains(schar) && // in groupingSet but... in matchGrouping()
/external/icu4c/test/cintltst/
Dusettest.c478 USerializedSet sset; in TestSerialized() local
502 uset_getSerializedSet(&sset, buffer, length); in TestSerialized()
504 if(uset_contains(set, c)!=uset_serializedContains(&sset, c)) { in TestSerialized()
/external/icu4c/i18n/unicode/
Ddecimfmt.h2005 UnicodeSet *sset, UChar32 schar);
2009 const UnicodeSet *sset, UChar32 schar);
2013 const UnicodeSet *sset,
/external/valgrind/tsan/
Dthread_sanitizer.cc2131 SegmentSet *sset = Get(ssid); in Ref() local
2133 DCHECK(sset->ref_count_ >= 0); in Ref()
2134 sset->ref_count_++; in Ref()
2144 SegmentSet *sset = Get(ssid); in Unref() local
2146 DCHECK(sset->ref_count_ > 0); in Unref()
2147 sset->ref_count_--; in Unref()
2148 if (sset->ref_count_ == 0) { in Unref()
7202 SegmentSet *sset = SegmentSet::Get(ssid); in HandleMemoryAccessHelper() local
7203 (void)sset; in HandleMemoryAccessHelper()
7204 CHECK(sset->ref_count() > 0); in HandleMemoryAccessHelper()