HomeSort by relevance Sort by last modified time
    Searched full:toascii (Results 1 - 25 of 213) sorted by null

1 2 3 4 5 6 7 8 9

  /external/llvm/test/Transforms/InstCombine/
toascii-1.ll 1 ; Test that the toascii library call simplifier works correctly.
7 declare i32 @toascii(i32)
13 %ret = call i32 @toascii(i32 0)
20 %ret = call i32 @toascii(i32 1)
27 %ret = call i32 @toascii(i32 127)
34 %ret = call i32 @toascii(i32 128)
41 %ret = call i32 @toascii(i32 255)
48 %ret = call i32 @toascii(i32 256)
55 %ret = call i32 @toascii(i32 %x)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
IDNTest.java 26 * @tests {@link java.net.IDN#toASCII(String)}
32 IDN.toASCII(null);
39 IDN.toASCII("www.m\uE400kitorppa.edu");
46 IDN.toASCII("www.\u672C\uFE73\uFFFF.jp");
53 .toASCII("www.\u65E5\u672C\u5E73.jp"));
57 .toASCII("www.\u30CF\u30F3\u30C9\u30DC\u30FC\u30EB\u30B5\u30E0\u30BA.com"));
59 .toASCII("www.f\u00E4rgbolaget.nu"));
60 assertEquals("www.xn--bcher-kva.de", IDN.toASCII("www.b\u00FCcher.de"));
62 .toASCII("www.br\u00E6ndendek\u00E6rlighed.com"));
64 .toASCII("www.r\u00E4ksm\u00F6rg\u00E5s.se"))
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeIDN.java 20 public static String toASCII(String s, int flags) {
35 private static String convert(String s, int flags, boolean toAscii) {
39 return convertImpl(s, flags, toAscii);
41 private static native String convertImpl(String s, int flags, boolean toAscii);
  /libcore/luni/src/main/native/
libcore_icu_NativeIDN.cpp 35 static jstring NativeIDN_convertImpl(JNIEnv* env, jclass, jstring javaSrc, jint flags, jboolean toAscii) {
42 size_t resultLength = toAscii
49 if (!toAscii) {
50 // ICU only translates separators to ASCII for toASCII.
  /external/icu4c/test/intltest/
idnaconf.h 41 int type; // 0 toascii, 1 tounicode
testidna.h 77 void testChaining(const char* toASCIIName, TestFunc toASCII,
107 void testConformance(const char* toASCIIName, TestFunc toASCII,
  /libcore/luni/src/main/java/java/net/
IDN.java 63 public static String toASCII(String input, int flags) {
64 return NativeIDN.toASCII(input, flags);
68 * Equivalent to {@code toASCII(input, 0)}.
74 public static String toASCII(String input) {
75 return toASCII(input, 0);
82 * <p>Unlike {@code toASCII}, this transformation cannot fail.
  /external/webkit/Source/WebCore/icu/unicode/
uidna.h 30 * The RFC defines 2 operations: ToASCII and ToUnicode. Domain labels
32 * ToASCII operation before passing it to resolver libraries. Domain names
41 * The input and output of ToASCII and ToUnicode operations are Unicode
42 * and are designed to be chainable, i.e., applying ToASCII or ToUnicode operations
46 * ToASCII(ToASCII(ToASCII...(ToASCII(string))) == ToASCII(string).
78 * This function implements the ToASCII operation as defined in the IDNA RFC
    [all...]
  /external/webkit/Source/WebKit/mac/icu/unicode/
uidna.h 30 * The RFC defines 2 operations: ToASCII and ToUnicode. Domain labels
32 * ToASCII operation before passing it to resolver libraries. Domain names
41 * The input and output of ToASCII and ToUnicode operations are Unicode
42 * and are designed to be chainable, i.e., applying ToASCII or ToUnicode operations
46 * ToASCII(ToASCII(ToASCII...(ToASCII(string))) == ToASCII(string).
78 * This function implements the ToASCII operation as defined in the IDNA RFC
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
DisallowCType.h 53 #undef toascii macro
70 #define toascii toascii_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue_generated_istype.cpp 177 QTest::newRow(testcase.first.toAscii().constData()) << testcase.second << expectedValue.contains(testcase.first);
212 QTest::newRow(testcase.first.toAscii().constData()) << testcase.second << expectedValue.contains(testcase.first);
247 QTest::newRow(testcase.first.toAscii().constData()) << testcase.second << expectedValue.contains(testcase.first);
330 QTest::newRow(testcase.first.toAscii().constData()) << testcase.second << expectedValue.contains(testcase.first);
366 QTest::newRow(testcase.first.toAscii().constData()) << testcase.second << expectedValue.contains(testcase.first);
398 QTest::newRow(testcase.first.toAscii().constData()) << testcase.second << expectedValue.contains(testcase.first);
460 QTest::newRow(testcase.first.toAscii().constData()) << testcase.second << expectedValue.contains(testcase.first);
493 QTest::newRow(testcase.first.toAscii().constData()) << testcase.second << expectedValue.contains(testcase.first);
547 QTest::newRow(testcase.first.toAscii().constData()) << testcase.second << expectedValue.contains(testcase.first);
579 QTest::newRow(testcase.first.toAscii().constData()) << testcase.second << expectedValue.contains(testcase.first)
    [all...]
  /development/ndk/platforms/android-3/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /external/tcpdump/
tcpdump-stdinc.h 59 #undef toascii macro
61 #define toascii __toascii macro
87 #ifndef toascii
88 #define toascii(c) ((c) & 0x7f) macro
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapSimpleString.java 47 return new ByteArrayInputStream(Utility.toAscii(mString));
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
ctype.h 39 #define toascii(c) (((unsigned char)(c))&0x7f) macro

Completed in 1397 milliseconds

1 2 3 4 5 6 7 8 9