Lines Matching refs:fScriptSetSet
71 fIdentifier(NULL), fRequiredScripts(NULL), fScriptSetSet(NULL), in IdentifierInfo()
80 fScriptSetSet = uhash_open(uhash_hashScriptSet, uhash_compareScriptSet, NULL, &status); in IdentifierInfo()
81 uhash_setKeyDeleter(fScriptSetSet, uhash_deleteScriptSet); in IdentifierInfo()
86 …if (U_SUCCESS(status) && (fIdentifier == NULL || fRequiredScripts == NULL || fScriptSetSet == NULL… in IdentifierInfo()
95 uhash_close(fScriptSetSet); in ~IdentifierInfo()
104 uhash_removeAll(fScriptSetSet); in clear()
156 && !uhash_geti(fScriptSetSet, &scriptsForCP)) { in setIdentifier()
159 uhash_puti(fScriptSetSet, new ScriptSet(scriptsForCP), 1, &status); in setIdentifier()
168 if (uhash_count(fScriptSetSet) > 0) { in setIdentifier()
171 const UHashElement *nextHashEl = uhash_nextElement(fScriptSetSet, &it); in setIdentifier()
178 uhash_removeElement(fScriptSetSet, nextHashEl); in setIdentifier()
183 const UHashElement *otherHashEl = uhash_nextElement(fScriptSetSet, &otherIt); in setIdentifier()
189 uhash_removeElement(fScriptSetSet, nextHashEl); in setIdentifier()
196 if (uhash_count(fScriptSetSet) == 0) { in setIdentifier()
212 return fScriptSetSet; in getAlternates()
241 (fCommonAmongAlternates->countMembers() == 0 ? uhash_count(fScriptSetSet) : 1); in getRestrictionLevel()
262 (fCommonAmongAlternates->countMembers() == 0 ? uhash_count(fScriptSetSet) : 1); in getScriptCount()
273 const UHashElement *hashEl = uhash_nextElement(fScriptSetSet, &iter); in containsWithAlternates()