Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dscriptset.cpp31 ScriptSet::ScriptSet() { in ScriptSet() function in ScriptSet
37 ScriptSet::~ScriptSet() { in ~ScriptSet()
40 ScriptSet::ScriptSet(const ScriptSet &other) { in ScriptSet() function in ScriptSet
45 ScriptSet & ScriptSet::operator =(const ScriptSet &other) { in operator =()
53 UBool ScriptSet::operator == (const ScriptSet &other) const { in operator ==()
62 UBool ScriptSet::test(UScriptCode script, UErrorCode &status) const { in test()
76 ScriptSet &ScriptSet::set(UScriptCode script, UErrorCode &status) { in set()
90 ScriptSet &ScriptSet::reset(UScriptCode script, UErrorCode &status) { in reset()
106 ScriptSet &ScriptSet::Union(const ScriptSet &other) { in Union()
113 ScriptSet &ScriptSet::intersect(const ScriptSet &other) { in intersect()
[all …]
Dscriptset.h36 class U_I18N_API ScriptSet: public UMemory {
38 ScriptSet();
39 ScriptSet(const ScriptSet &other);
40 ~ScriptSet();
42 UBool operator == (const ScriptSet &other) const;
43 UBool operator != (const ScriptSet &other) const {return !(*this == other);};
44 ScriptSet & operator = (const ScriptSet &other);
47 ScriptSet &Union(const ScriptSet &other);
48 ScriptSet &set(UScriptCode script, UErrorCode &status);
49 ScriptSet &reset(UScriptCode script, UErrorCode &status);
[all …]
Duspoof_impl.h46 class ScriptSet; variable
80 static void getAugmentedScriptSet(UChar32 codePoint, ScriptSet& result, UErrorCode& status);
81 …void getResolvedScriptSet(const UnicodeString& input, ScriptSet& result, UErrorCode& status) const;
82 …void getResolvedScriptSetWithout(const UnicodeString& input, UScriptCode script, ScriptSet& result…
Duspoof_impl.cpp251 void SpoofImpl::getAugmentedScriptSet(UChar32 codePoint, ScriptSet& result, UErrorCode& status) { in getAugmentedScriptSet()
282 void SpoofImpl::getResolvedScriptSet(const UnicodeString& input, ScriptSet& result, UErrorCode& sta… in getResolvedScriptSet()
288 …esolvedScriptSetWithout(const UnicodeString& input, UScriptCode script, ScriptSet& result, UErrorC… in getResolvedScriptSetWithout()
291 ScriptSet temp; in getResolvedScriptSetWithout()
347 ScriptSet resolvedScriptSet; in getRestrictionLevel()
357 ScriptSet resolvedNoLatn; in getRestrictionLevel()
Duspoof.cpp504 ScriptSet id1RSS; in uspoof_areConfusableUnicodeString()
506 ScriptSet id2RSS; in uspoof_areConfusableUnicodeString()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java1399 ScriptSet s1RSS = new ScriptSet(); in areConfusable()
1401 ScriptSet s2RSS = new ScriptSet(); in areConfusable()
1516 private static void getAugmentedScriptSet(int codePoint, ScriptSet result) { in getAugmentedScriptSet()
1548 private void getResolvedScriptSet(CharSequence input, ScriptSet result) { in getResolvedScriptSet()
1556 private void getResolvedScriptSetWithout(CharSequence input, int script, ScriptSet result) { in getResolvedScriptSetWithout()
1559 ScriptSet temp = new ScriptSet(); in getResolvedScriptSetWithout()
1609 ScriptSet resolvedScriptSet = new ScriptSet(); in getRestrictionLevel()
1618 ScriptSet resolvedNoLatn = new ScriptSet(); in getRestrictionLevel()
1962 static class ScriptSet extends BitSet { class in SpoofChecker.Builder.ConfusabledataBuilder
2001 ScriptSet() { in ScriptSet() method in SpoofChecker.Builder.ConfusabledataBuilder.ScriptSet
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java1461 ScriptSet s1RSS = new ScriptSet(); in areConfusable()
1463 ScriptSet s2RSS = new ScriptSet(); in areConfusable()
1582 private static void getAugmentedScriptSet(int codePoint, ScriptSet result) { in getAugmentedScriptSet()
1614 private void getResolvedScriptSet(CharSequence input, ScriptSet result) { in getResolvedScriptSet()
1622 private void getResolvedScriptSetWithout(CharSequence input, int script, ScriptSet result) { in getResolvedScriptSetWithout()
1625 ScriptSet temp = new ScriptSet(); in getResolvedScriptSetWithout()
1675 ScriptSet resolvedScriptSet = new ScriptSet(); in getRestrictionLevel()
1684 ScriptSet resolvedNoLatn = new ScriptSet(); in getRestrictionLevel()
2028 static class ScriptSet extends BitSet { class in SpoofChecker.Builder.ConfusabledataBuilder
/external/icu/icu4c/source/test/intltest/
Ditspoof.cpp412 ScriptSet s1; in testScriptSet()
413 ScriptSet s2; in testScriptSet()
513 ScriptSet bitset12; bitset12.set(USCRIPT_LATIN, status).set(USCRIPT_HANGUL, status); in testScriptSet()
514 ScriptSet bitset2; bitset2.set(USCRIPT_HANGUL, status); in testScriptSet()
519 ScriptSet arabSet; arabSet.set(USCRIPT_ARABIC, status); in testScriptSet()
520 ScriptSet latinSet; latinSet.set(USCRIPT_LATIN, status); in testScriptSet()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/
DSpoofCheckerTest.java799 Class ScriptSet = Class.forName("android.icu.text.SpoofChecker$ScriptSet"); in testScriptSet() local
800 Constructor ctor = ScriptSet.getDeclaredConstructor(); in testScriptSet()
810 Method and = ScriptSet.getDeclaredMethod("and", Integer.TYPE); in testScriptSet()
815 Method setAll = ScriptSet.getDeclaredMethod("setAll"); in testScriptSet()
820 Method isFull = ScriptSet.getDeclaredMethod("isFull"); in testScriptSet()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
DSpoofCheckerTest.java796 Class ScriptSet = Class.forName("com.ibm.icu.text.SpoofChecker$ScriptSet"); in testScriptSet() local
797 Constructor ctor = ScriptSet.getDeclaredConstructor(); in testScriptSet()
807 Method and = ScriptSet.getDeclaredMethod("and", Integer.TYPE); in testScriptSet()
812 Method setAll = ScriptSet.getDeclaredMethod("setAll"); in testScriptSet()
817 Method isFull = ScriptSet.getDeclaredMethod("isFull"); in testScriptSet()