/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/ |
UTS46Test.java | 18 import android.icu.text.IDNA; 34 IDNA.USE_STD3_RULES|IDNA.CHECK_BIDI| 35 IDNA.CHECK_CONTEXTJ|IDNA.CHECK_CONTEXTO; 36 trans=IDNA.getUTS46Instance(commonOptions); 37 nontrans=IDNA.getUTS46Instance(commonOptions| 38 IDNA.NONTRANSITIONAL_TO_ASCII|IDNA.NONTRANSITIONAL_TO_UNICODE); 43 IDNA.Info info=new IDNA.Info() [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
UTS46Test.java | 17 import com.ibm.icu.text.IDNA; 30 IDNA.USE_STD3_RULES|IDNA.CHECK_BIDI| 31 IDNA.CHECK_CONTEXTJ|IDNA.CHECK_CONTEXTO; 32 trans=IDNA.getUTS46Instance(commonOptions); 33 nontrans=IDNA.getUTS46Instance(commonOptions| 34 IDNA.NONTRANSITIONAL_TO_ASCII|IDNA.NONTRANSITIONAL_TO_UNICODE); 39 IDNA.Info info=new IDNA.Info() [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/ |
TestIDNA.java | 14 import android.icu.text.IDNA; 34 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.DEFAULT, null); 35 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.ALLOW_UNASSIGNED, null); 36 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.USE_STD3_RULES, null); 37 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.USE_STD3_RULES|IDNA.ALLOW_UNASSIGNED, null); 45 doTestToASCII(new String(TestData.unicodeIn[i]),TestData.asciiIn[i],IDNA.DEFAULT, null); 46 doTestToASCII(new String(TestData.unicodeIn[i]),TestData.asciiIn[i],IDNA.ALLOW_UNASSIGNED, null); 47 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.USE_STD3_RULES, null); 48 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.USE_STD3_RULES|IDNA.ALLOW_UNASSIGNED, null); [all...] |
TestData.java | 10 import android.icu.text.IDNA; 461 "Nameprep", IDNA.DEFAULT, 468 "Nameprep", IDNA.DEFAULT, 474 "Nameprep", IDNA.DEFAULT, 480 "Nameprep", IDNA.DEFAULT, 486 "Nameprep", IDNA.DEFAULT, 492 "Nameprep", IDNA.DEFAULT, 498 "Nameprep", IDNA.DEFAULT, 504 "Nameprep", IDNA.DEFAULT, 510 "Nameprep", IDNA.DEFAULT [all...] |
IDNAConformanceTest.java | 23 import android.icu.text.IDNA; 84 result = IDNA.convertIDNToASCII(namebase, 85 IDNA.ALLOW_UNASSIGNED).toString(); 87 result = IDNA.convertIDNToASCII(namebase, 88 IDNA.USE_STD3_RULES).toString(); 125 result = IDNA.convertIDNToUnicode(namebase, 126 IDNA.ALLOW_UNASSIGNED).toString(); 128 result = IDNA.convertIDNToUnicode(namebase, 129 IDNA.USE_STD3_RULES).toString();
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
TestIDNA.java | 13 import com.ibm.icu.text.IDNA; 30 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.DEFAULT, null); 31 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.ALLOW_UNASSIGNED, null); 32 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.USE_STD3_RULES, null); 33 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.USE_STD3_RULES|IDNA.ALLOW_UNASSIGNED, null); 41 doTestToASCII(new String(TestData.unicodeIn[i]),TestData.asciiIn[i],IDNA.DEFAULT, null); 42 doTestToASCII(new String(TestData.unicodeIn[i]),TestData.asciiIn[i],IDNA.ALLOW_UNASSIGNED, null); 43 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.USE_STD3_RULES, null); 44 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.USE_STD3_RULES|IDNA.ALLOW_UNASSIGNED, null); [all...] |
TestData.java | 9 import com.ibm.icu.text.IDNA; 460 "Nameprep", IDNA.DEFAULT, 467 "Nameprep", IDNA.DEFAULT, 473 "Nameprep", IDNA.DEFAULT, 479 "Nameprep", IDNA.DEFAULT, 485 "Nameprep", IDNA.DEFAULT, 491 "Nameprep", IDNA.DEFAULT, 497 "Nameprep", IDNA.DEFAULT, 503 "Nameprep", IDNA.DEFAULT, 509 "Nameprep", IDNA.DEFAULT [all...] |
IDNAConformanceTest.java | 22 import com.ibm.icu.text.IDNA; 80 result = IDNA.convertIDNToASCII(namebase, 81 IDNA.ALLOW_UNASSIGNED).toString(); 83 result = IDNA.convertIDNToASCII(namebase, 84 IDNA.USE_STD3_RULES).toString(); 121 result = IDNA.convertIDNToUnicode(namebase, 122 IDNA.ALLOW_UNASSIGNED).toString(); 124 result = IDNA.convertIDNToUnicode(namebase, 125 IDNA.USE_STD3_RULES).toString();
|
/libcore/ojluni/src/main/java/java/net/ |
IDN.java | 28 import android.icu.text.IDNA; 110 return IDNA.convertIDNToASCII(input, flag).toString(); 160 return convertFullStop(IDNA.convertIDNToUnicode(input, flag)).toString();
|
/external/icu/icu4c/source/common/unicode/ |
idna.h | 6 * file name: idna.h 20 * \brief C++ API: Internationalizing Domain Names in Applications (IDNA) 37 * Abstract base class for IDNA processing. 41 * The IDNA class is not intended for public subclassing. 48 class U_COMMON_API IDNA : public UObject { 54 ~IDNA(); 57 * Returns an IDNA instance which implements UTS #46. 62 * UTS #46 defines Unicode IDNA Compatibility Processing, 86 * @return the UTS #46 IDNA instance, if successful 89 static IDNA * [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
IDNA.java | 19 * Abstract base class for IDNA processing. 23 * The IDNA class is not intended for public subclassing. 32 * The static IDNA API methods implement the IDNA protocol as defined in the 33 * <a href="http://www.ietf.org/rfc/rfc3490.txt">IDNA RFC</a>. 39 * IDNA requires that implementations process input strings with 43 * Implementations of IDNA MUST fully implement Nameprep and Punycode; 54 public abstract class IDNA { 78 * IDNA option to check for whether the input conforms to the BiDi rules. 85 * IDNA option to check for whether the input conforms to the CONTEXTJ rules [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
IDNA.java | 18 * Abstract base class for IDNA processing. 22 * The IDNA class is not intended for public subclassing. 31 * The static IDNA API methods implement the IDNA protocol as defined in the 32 * <a href="http://www.ietf.org/rfc/rfc3490.txt">IDNA RFC</a>. 38 * IDNA requires that implementations process input strings with 42 * Implementations of IDNA MUST fully implement Nameprep and Punycode; 54 public abstract class IDNA { 79 * IDNA option to check for whether the input conforms to the BiDi rules. 87 * IDNA option to check for whether the input conforms to the CONTEXTJ rules [all...] |
/external/icu/icu4c/source/common/ |
uts46.cpp | 19 #include "unicode/idna.h" 66 // IDNA class default implementations -------------------------------------- *** 68 IDNA::~IDNA() {} 71 IDNA::labelToASCII_UTF8(const StringPiece &label, ByteSink &dest, 81 IDNA::labelToUnicodeUTF8(const StringPiece &label, ByteSink &dest, 91 IDNA::nameToASCII_UTF8(const StringPiece &name, ByteSink &dest, 101 IDNA::nameToUnicodeUTF8(const StringPiece &name, ByteSink &dest, 112 class UTS46 : public IDNA { 198 IDNA * 201 IDNA *idna=new UTS46(options, errorCode); local [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
IDNA2003.java | 10 import android.icu.text.IDNA; 16 * IDNA2003 implementation code, moved out of android.icu.text.IDNA.java 22 /* IDNA ACE Prefix is "xn--" */ 136 * defined by the IDNA RFC 164 boolean useSTD3ASCIIRules = ((options & IDNA.USE_STD3_RULES) != 0);
|
UTS46.java | 16 import android.icu.text.IDNA; 21 // Note about tests for IDNA.Error.DOMAIN_NAME_TOO_LONG: 34 public final class UTS46 extends IDNA { 410 // so that we don't report IDNA.Error.DISALLOWED for the U+FFFD from here. [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
IDNA2003.java | 9 import com.ibm.icu.text.IDNA; 15 * IDNA2003 implementation code, moved out of com.ibm.icu.text.IDNA.java 20 /* IDNA ACE Prefix is "xn--" */ 134 * defined by the IDNA RFC 163 boolean useSTD3ASCIIRules = ((options & IDNA.USE_STD3_RULES) != 0);
|
UTS46.java | 15 import com.ibm.icu.text.IDNA; 20 // Note about tests for IDNA.Error.DOMAIN_NAME_TOO_LONG: 33 public final class UTS46 extends IDNA { 409 // so that we don't report IDNA.Error.DISALLOWED for the U+FFFD from here. [all...] |
/external/icu/icu4c/source/test/intltest/ |
uts46test.cpp | 21 #include "unicode/idna.h" 40 IDNA *trans, *nontrans; 60 trans=IDNA::createUTS46Instance(commonOptions, errorCode); 61 nontrans=IDNA::createUTS46Instance( 205 LocalPointer<IDNA> not3(IDNA::createUTS46Instance(UIDNA_CHECK_BIDI, errorCode)); [all...] |
uobjtest.cpp | 271 #include "unicode/idna.h" 344 TESTCLASSID_NONE_FACTORY(IDNA, IDNA::createUTS46Instance(0, status));
|
/prebuilts/go/darwin-x86/src/net/http/cookiejar/ |
punycode.go | 126 // Strictly speaking, the remaining code below deals with IDNA (RFC 5890 and
|
jar_test.go | 1141 "Host cookie on IDNA domain #1", 1159 "Host cookie on IDNA domain #2", 1177 "Domain cookie on IDNA domain #1", 1195 "Domain cookie on IDNA domain #2",
|
/prebuilts/go/linux-x86/src/net/http/cookiejar/ |
punycode.go | 126 // Strictly speaking, the remaining code below deals with IDNA (RFC 5890 and
|
jar_test.go | 1141 "Host cookie on IDNA domain #1", 1159 "Host cookie on IDNA domain #2", 1177 "Domain cookie on IDNA domain #1", 1195 "Domain cookie on IDNA domain #2",
|
/external/icu/icu4c/source/test/testdata/ |
testdata.mak | 89 @echo Making Test Resource Bundle file for IDNA reference implementation
|
/external/libgdx/backends/gdx-backend-moe/libs/ |
intel-moe-core.jar | |