/external/icu/icu4c/source/i18n/ |
D | scriptset.cpp | 31 ScriptSet::ScriptSet() { in ScriptSet() function in ScriptSet 35 ScriptSet::~ScriptSet() { in ~ScriptSet() 38 ScriptSet::ScriptSet(const ScriptSet &other) { in ScriptSet() function in ScriptSet 42 ScriptSet & ScriptSet::operator =(const ScriptSet &other) { in operator =() 47 UBool ScriptSet::operator == (const ScriptSet &other) const { in operator ==() 56 UBool ScriptSet::test(UScriptCode script, UErrorCode &status) const { in test() 70 ScriptSet &ScriptSet::set(UScriptCode script, UErrorCode &status) { in set() 84 ScriptSet &ScriptSet::reset(UScriptCode script, UErrorCode &status) { in reset() 100 ScriptSet &ScriptSet::Union(const ScriptSet &other) { in Union() 107 ScriptSet &ScriptSet::intersect(const ScriptSet &other) { in intersect() [all …]
|
D | scriptset.h | 36 class U_I18N_API ScriptSet: public UMemory { 40 ScriptSet(); 41 ScriptSet(const ScriptSet &other); 42 ~ScriptSet(); 44 UBool operator == (const ScriptSet &other) const; 45 UBool operator != (const ScriptSet &other) const {return !(*this == other);} 46 ScriptSet & operator = (const ScriptSet &other); 49 ScriptSet &Union(const ScriptSet &other); 50 ScriptSet &set(UScriptCode script, UErrorCode &status); 51 ScriptSet &reset(UScriptCode script, UErrorCode &status); [all …]
|
D | uspoof_impl.h | 48 class ScriptSet; variable 83 static void getAugmentedScriptSet(UChar32 codePoint, ScriptSet& result, UErrorCode& status); 84 …void getResolvedScriptSet(const UnicodeString& input, ScriptSet& result, UErrorCode& status) const; 85 …void getResolvedScriptSetWithout(const UnicodeString& input, UScriptCode script, ScriptSet& result…
|
D | uspoof_impl.cpp | 239 void SpoofImpl::getAugmentedScriptSet(UChar32 codePoint, ScriptSet& result, UErrorCode& status) { in getAugmentedScriptSet() 270 void SpoofImpl::getResolvedScriptSet(const UnicodeString& input, ScriptSet& result, UErrorCode& sta… in getResolvedScriptSet() 276 …esolvedScriptSetWithout(const UnicodeString& input, UScriptCode script, ScriptSet& result, UErrorC… in getResolvedScriptSetWithout() 279 ScriptSet temp; in getResolvedScriptSetWithout() 335 ScriptSet resolvedScriptSet; in getRestrictionLevel() 345 ScriptSet resolvedNoLatn; in getRestrictionLevel()
|
D | uspoof.cpp | 507 ScriptSet id1RSS; in uspoof_areConfusableUnicodeString() 509 ScriptSet id2RSS; in uspoof_areConfusableUnicodeString()
|
/external/icu/libicu/cts_headers/ |
D | scriptset.h | 36 class U_I18N_API ScriptSet: public UMemory { 40 ScriptSet(); 41 ScriptSet(const ScriptSet &other); 42 ~ScriptSet(); 44 UBool operator == (const ScriptSet &other) const; 45 UBool operator != (const ScriptSet &other) const {return !(*this == other);} 46 ScriptSet & operator = (const ScriptSet &other); 49 ScriptSet &Union(const ScriptSet &other); 50 ScriptSet &set(UScriptCode script, UErrorCode &status); 51 ScriptSet &reset(UScriptCode script, UErrorCode &status); [all …]
|
D | uspoof_impl.h | 48 class ScriptSet; variable 83 static void getAugmentedScriptSet(UChar32 codePoint, ScriptSet& result, UErrorCode& status); 84 …void getResolvedScriptSet(const UnicodeString& input, ScriptSet& result, UErrorCode& status) const; 85 …void getResolvedScriptSetWithout(const UnicodeString& input, UScriptCode script, ScriptSet& result…
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | SpoofChecker.java | 1400 ScriptSet s1RSS = new ScriptSet(); in areConfusable() 1402 ScriptSet s2RSS = new ScriptSet(); in areConfusable() 1517 private static void getAugmentedScriptSet(int codePoint, ScriptSet result) { in getAugmentedScriptSet() 1549 private void getResolvedScriptSet(CharSequence input, ScriptSet result) { in getResolvedScriptSet() 1557 private void getResolvedScriptSetWithout(CharSequence input, int script, ScriptSet result) { in getResolvedScriptSetWithout() 1560 ScriptSet temp = new ScriptSet(); in getResolvedScriptSetWithout() 1610 ScriptSet resolvedScriptSet = new ScriptSet(); in getRestrictionLevel() 1619 ScriptSet resolvedNoLatn = new ScriptSet(); in getRestrictionLevel() 1963 static class ScriptSet extends BitSet { class in SpoofChecker.Builder.ConfusabledataBuilder 2002 ScriptSet() { in ScriptSet() method in SpoofChecker.Builder.ConfusabledataBuilder.ScriptSet
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SpoofChecker.java | 1463 ScriptSet s1RSS = new ScriptSet(); in areConfusable() 1465 ScriptSet s2RSS = new ScriptSet(); in areConfusable() 1584 private static void getAugmentedScriptSet(int codePoint, ScriptSet result) { in getAugmentedScriptSet() 1616 private void getResolvedScriptSet(CharSequence input, ScriptSet result) { in getResolvedScriptSet() 1624 private void getResolvedScriptSetWithout(CharSequence input, int script, ScriptSet result) { in getResolvedScriptSetWithout() 1627 ScriptSet temp = new ScriptSet(); in getResolvedScriptSetWithout() 1677 ScriptSet resolvedScriptSet = new ScriptSet(); in getRestrictionLevel() 1686 ScriptSet resolvedNoLatn = new ScriptSet(); in getRestrictionLevel() 2030 static class ScriptSet extends BitSet { class in SpoofChecker.Builder.ConfusabledataBuilder
|
/external/icu/icu4c/source/test/intltest/ |
D | itspoof.cpp | 429 TEST_ASSERT(USCRIPT_CODE_LIMIT <= ScriptSet::SCRIPT_LIMIT); in testScriptSet() 432 TEST_ASSERT(u_getIntPropertyMaxValue(UCHAR_SCRIPT) < ScriptSet::SCRIPT_LIMIT); in testScriptSet() 434 ScriptSet s1; in testScriptSet() 435 ScriptSet s2; in testScriptSet() 536 ScriptSet bitset12; bitset12.set(USCRIPT_LATIN, status).set(USCRIPT_HANGUL, status); in testScriptSet() 537 ScriptSet bitset2; bitset2.set(USCRIPT_HANGUL, status); in testScriptSet() 542 ScriptSet arabSet; arabSet.set(USCRIPT_ARABIC, status); in testScriptSet() 543 ScriptSet latinSet; latinSet.set(USCRIPT_LATIN, status); in testScriptSet()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/ |
D | SpoofCheckerTest.java | 799 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/ |
D | SpoofCheckerTest.java | 796 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()
|