OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:toUnicode
(Results
1 - 17
of
17
) sorted by null
/libcore/luni/src/main/java/java/net/
IDN.java
93
public static String
toUnicode
(String input, int flags) {
94
return NativeIDN.
toUnicode
(input, flags);
98
* Equivalent to {@code
toUnicode
(input, 0)}.
103
public static String
toUnicode
(String input) {
104
return NativeIDN.
toUnicode
(input, 0);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
IDNTest.java
121
* @tests {@link java.net.IDN#
toUnicode
(String)}
127
IDN.
toUnicode
(null);
133
assertEquals("", IDN.
toUnicode
(""));
134
assertEquals("www.bcher.de", IDN.
toUnicode
("www.bcher.de"));
135
assertEquals("www.b\u00FCcher.de", IDN.
toUnicode
("www.b\u00FCcher.de"));
137
.
toUnicode
("www.\u65E5\u672C\u5E73.jp"));
138
assertEquals("www.\u65E5\u672C\u5E73.jp", IDN.
toUnicode
("www\uFF0Exn--gwtq9nb2a\uFF61jp"));
139
assertEquals("www.\u65E5\u672C\u5E73.jp", IDN.
toUnicode
("www.xn--gwtq9nb2a.jp"));
143
* @tests {@link java.net.IDN#
toUnicode
(String, int)}
148
assertEquals("", IDN.
toUnicode
("", IDN.ALLOW_UNASSIGNED))
[
all
...]
/libcore/luni/src/test/java/libcore/java/net/
IDNTest.java
35
assertEquals("b\u00fccher", IDN.
toUnicode
(makePunyString(0)));
38
assertEquals(longInput, IDN.
toUnicode
(longInput));
/libcore/luni/src/main/java/libcore/icu/
NativeIDN.java
24
public static String
toUnicode
(String s, int flags) {
/external/icu4c/test/intltest/
testidna.h
78
const char* toUnicodeName, TestFunc
toUnicode
);
110
const char* toUnicodeName, TestFunc
toUnicode
testidna.cpp
732
//test
toUnicode
with all labels in the string
[
all
...]
/external/icu4c/common/
ucnv_cnv.h
37
* commented out because there are actually two values used in
toUnicode
tables:
78
* then the
toUnicode
function will be used and the offsets will be set to -1.
113
* - The
toUnicode
side must behave and keep state exactly like the
118
* - Continuing a partial match and flushing the
toUnicode
replay buffer
119
* are handled by pivoting, using the
toUnicode
and fromUnicode functions.
127
* If the function pointer is NULL, then the
toUnicode
function will be used.
137
* to indicate that the ucnv.c code shall call the
toUnicode
function instead
217
* Every converter type must implement
toUnicode
, fromUnicode, and getNextUChar,
237
UConverterToUnicode
toUnicode
;
275
* getNextUChar() implementation to indicate to use the converter's
toUnicode
()
[
all
...]
ucnv.c
[
all
...]
/external/webkit/Source/WebCore/platform/text/qt/
TextCodecQt.cpp
111
QString decoded = m_codec->
toUnicode
(buf, size, &m_state);
/external/harfbuzz/tests/linebreaking/
main.cpp
193
QString txt = codec->
toUnicode
(QByteArray("\xca\xc7\xd1\xca\xb4\xd5\xa4\xc3\xd1\xba\x20\xb9\xd5\xe8\xe0\xbb\xe7\xb9\xa1\xd2\xc3\xb7\xb4\xca\xcd\xba\xb5\xd1\xc7\xe0\xcd\xa7"));
/external/webkit/Source/WebCore/platform/qt/
ClipboardQt.cpp
163
QString data = QTextCodec::codecForName("UTF-16")->
toUnicode
(rawData);
/external/libxml2/
encoding.c
102
openIcuConverter(const char* name, int
toUnicode
)
114
if (
toUnicode
) {
[
all
...]
/prebuilt/common/http-client/
httpclient-4.1.1.jar
/prebuilt/sdk/10/
android.jar
/prebuilt/sdk/11/
android.jar
/prebuilt/sdk/13/
android.jar
/prebuilt/sdk/9/
android.jar
Completed in 599 milliseconds