HomeSort by relevance Sort by last modified time
    Searched defs:UNICODE (Results 1 - 9 of 9) sorted by null

  /external/bluetooth/glib/build/win32/dirent/
wdirent.c 2 #define UNICODE 1
  /ndk/sources/host-tools/toolbox/
echo_win.c 29 /* To avoid many issues, always build this as a Unicode program */
30 #define UNICODE 1
  /external/expat/xmlwf/
win32filemap.c 15 #define UNICODE
xmlwin32url.cxx 3 #define UNICODE
  /external/dbus/tools/
dbus-launch-win.c 25 #ifndef UNICODE
26 #define UNICODE 1
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.java 221 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
222 int mode = NONE, unicode = 0, count = 0, nextChar; local
227 if (mode == UNICODE) {
230 unicode = (unicode << 4) + digit;
236 buffer.append((char) unicode);
266 mode = UNICODE;
267 unicode = count = 0;
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 315 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
316 int mode = NONE, unicode = 0, count = 0, nextChar; local
321 if (mode == UNICODE) {
324 unicode = (unicode << 4) + digit;
330 buffer.append((char) unicode);
360 mode = UNICODE;
361 unicode = count = 0;
  /libcore/luni/src/main/java/java/util/
Properties.java 57 * ISO-8859-1 is only capable of representing a tiny subset of Unicode.
86 private static final int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3,
269 * "\!", "\#", "\t", "\b", "\f", and "&#92;uXXXX" (unicode character).</li>
281 int mode = NONE, unicode = 0, count = 0; local
300 if (mode == UNICODE) {
303 unicode = (unicode << 4) + digit;
308 throw new IllegalArgumentException("Invalid Unicode sequence: illegal character");
311 buf[offset++] = (char) unicode;
341 mode = UNICODE;
    [all...]
  /external/icu4c/tools/gennames/
gennames.c 16 * This program reads the Unicode character database text file,
19 * Unicode 1.0 character name, and (starting with ICU 2.2) the ISO 10646 comment.
30 * dataVersion = Unicode version from -u or --unicode command line option, defaults to 3.0.0
89 * algorithmic names (Unicode 3.0.0: 3, hardcoded in gennames)
101 * the algRangeData (zero-terminated), followed by the Unicode code point
122 #include "unicode/utypes.h"
123 #include "unicode/putil.h"
124 #include "unicode/uclean.h"
125 #include "unicode/udata.h
    [all...]

Completed in 155 milliseconds