Home
last modified time | relevance | path

Searched refs:ScriptSet (Results 1 – 12 of 12) sorted by relevance

/external/icu/icu4c/source/i18n/
Dscriptset.cpp29 ScriptSet::ScriptSet() { in ScriptSet() function in ScriptSet
35 ScriptSet::~ScriptSet() { in ~ScriptSet()
38 ScriptSet::ScriptSet(const ScriptSet &other) { in ScriptSet() function in ScriptSet
43 ScriptSet & ScriptSet::operator =(const ScriptSet &other) { in operator =()
51 UBool ScriptSet::operator == (const ScriptSet &other) const { in operator ==()
60 UBool ScriptSet::test(UScriptCode script, UErrorCode &status) const { in test()
74 ScriptSet &ScriptSet::set(UScriptCode script, UErrorCode &status) { in set()
88 ScriptSet &ScriptSet::reset(UScriptCode script, UErrorCode &status) { in reset()
104 ScriptSet &ScriptSet::Union(const ScriptSet &other) { in Union()
111 ScriptSet &ScriptSet::intersect(const ScriptSet &other) { in intersect()
[all …]
Dscriptset.h34 class U_I18N_API ScriptSet: public UMemory {
36 ScriptSet();
37 ScriptSet(const ScriptSet &other);
38 ~ScriptSet();
40 UBool operator == (const ScriptSet &other) const;
41 ScriptSet & operator = (const ScriptSet &other);
44 ScriptSet &Union(const ScriptSet &other);
45 ScriptSet &set(UScriptCode script, UErrorCode &status);
46 ScriptSet &reset(UScriptCode script, UErrorCode &status);
47 ScriptSet &intersect(const ScriptSet &other);
[all …]
Didentifier_info.cpp22 static ScriptSet *JAPANESE;
23 static ScriptSet *CHINESE;
24 static ScriptSet *KOREAN;
25 static ScriptSet *CONFUSABLE_WITH_LATIN;
49 JAPANESE = new ScriptSet(); in IdentifierInfo_init()
50 CHINESE = new ScriptSet(); in IdentifierInfo_init()
51 KOREAN = new ScriptSet(); in IdentifierInfo_init()
52 CONFUSABLE_WITH_LATIN = new ScriptSet(); in IdentifierInfo_init()
79 fRequiredScripts = new ScriptSet(); in IdentifierInfo()
82 fCommonAmongAlternates = new ScriptSet(); in IdentifierInfo()
[all …]
Didentifier_info.h24 class ScriptSet; variable
109 const ScriptSet *getScripts() const;
138 const ScriptSet *getCommonAmongAlternates() const;
177 …UBool containsWithAlternates(const ScriptSet &container, const ScriptSet &containee) c…
180 ScriptSet *fRequiredScripts;
182 ScriptSet *fCommonAmongAlternates;
Duspoof_impl.h41 class ScriptSet; variable
87 const UnicodeString &text, ScriptSet *result, UErrorCode &status) const;
256 ScriptSet *fScriptSets;
Duspoof_wsconf.cpp237 bsset->sset = new ScriptSet(); in buildWSConfusableData()
357 ScriptSet *rtScriptSets = static_cast<ScriptSet *> in buildWSConfusableData()
358 (spImpl->fSpoofData->reserveSpace(rtScriptSetsCount * sizeof(ScriptSet), status)); in buildWSConfusableData()
Duspoof_wsconf.h48 ScriptSet *sset; // The set of scripts itself.
Duspoof_impl.cpp237 const UnicodeString &text, ScriptSet *result, UErrorCode &status) const { in wholeScriptCheck()
657 fScriptSets = (ScriptSet *)((char *)fRawData + fRawData->fScriptSets); in initPtrs()
848 sectionLength = ds->readUInt32(spoofDH->fScriptSetsLength) * sizeof(ScriptSet); in uspoof_swap()
Duspoof.cpp626 ScriptSet scripts; in uspoof_checkUnicodeString()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java786 bsset.sset = new ScriptSet(); in buildWSConfusableData()
867 dest.fScriptSets = new ScriptSet[rtScriptSetsCount]; in buildWSConfusableData()
868 dest.fScriptSets[0] = new ScriptSet(); in buildWSConfusableData()
869 dest.fScriptSets[1] = new ScriptSet(); in buildWSConfusableData()
894 ScriptSet sset; // The set of scripts itself.
1695 ScriptSet scripts = new ScriptSet();
2031 private void wholeScriptCheck(CharSequence text, ScriptSet result) {
2182 ScriptSet[] fScriptSets;
2336 fScriptSets = new ScriptSet[scriptSetslength];
2338 fScriptSets[i] = new ScriptSet(bytes);
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java823 bsset.sset = new ScriptSet(); in buildWSConfusableData()
904 dest.fScriptSets = new ScriptSet[rtScriptSetsCount]; in buildWSConfusableData()
905 dest.fScriptSets[0] = new ScriptSet(); in buildWSConfusableData()
906 dest.fScriptSets[1] = new ScriptSet(); in buildWSConfusableData()
931 ScriptSet sset; // The set of scripts itself.
1744 ScriptSet scripts = new ScriptSet();
2084 private void wholeScriptCheck(CharSequence text, ScriptSet result) {
2235 ScriptSet[] fScriptSets;
2389 fScriptSets = new ScriptSet[scriptSetslength];
2391 fScriptSets[i] = new ScriptSet(bytes);
[all …]
/external/icu/icu4c/source/test/intltest/
Ditspoof.cpp452 ScriptSet bitset12; bitset12.set(USCRIPT_LATIN, status).set(USCRIPT_HANGUL, status); in testIdentifierInfo()
453 ScriptSet bitset2; bitset2.set(USCRIPT_HANGUL, status); in testIdentifierInfo()
458 ScriptSet arabSet; arabSet.set(USCRIPT_ARABIC, status); in testIdentifierInfo()
459 ScriptSet latinSet; latinSet.set(USCRIPT_LATIN, status); in testIdentifierInfo()
479 ScriptSet tScriptSet; in testIdentifierInfo()
530 ScriptSet scripts; in testIdentifierInfo()
538 ScriptSet commonAlternates; in testIdentifierInfo()
587 ScriptSet s1; in testScriptSet()
588 ScriptSet s2; in testScriptSet()