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

1 2 3

  /external/qemu/telephony/
gsm.h 104 ** Note that here, 'ucs2' really refers to non-aligned UCS2-BE, as used by the GSM standard
107 /* check that all characters in a given ucs2 string can be encoded into the GSM alphabet.
109 extern int ucs2_check_gsm7( cbytes_t ucs2, int ucs2len );
111 /* convert a ucs2 string into a GSM septet string, assumes 'dst' is NULL or properly sized,
114 extern int ucs2_to_gsm7( cbytes_t ucs2, int ucs2len, bytes_t dst, int offset );
116 /* convert a ucs2 string into a GSM septet string, assumes 'dst' is NULL or properly sized,
118 extern int ucs2_to_gsm8( cbytes_t ucs2, int ucs2len, bytes_t dst );
120 /* convert a GSM septets string into a ucs2 string. assumes that 'ucs2' is NULL o
    [all...]
gsm.c 446 ucs2_write( bytes_t ucs2, int offset, int v )
448 if (ucs2) {
449 ucs2[offset+0] = (byte_t) (v >> 8);
450 ucs2[offset+1] = (byte_t) (v);
493 /** UCS2 to UTF8
496 /* convert a UCS2 string into a UTF8 byte string, assumes 'buf' is correctly sized */
498 ucs2_to_utf8( cbytes_t ucs2,
505 for (nn = 0; nn < ucs2len; ucs2 += 2, nn++) {
506 int c= (ucs2[0] << 8) | ucs2[1]
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 33 public boolean ucs2; field in class:Input
47 ucs2 = false;
62 ucs2 = in.readInt() == 1 ? true : false;
83 dest.writeInt(ucs2 ? 1 : 0);
ResponseData.java 80 public GetInkeyInputResponseData(String inData, boolean ucs2, boolean packed) {
82 mIsUcs2 = ucs2;
117 // ucs2 is by definition big endian.
146 buf.write(0x08); // UCS2
ValueParser.java 343 } else if (codingScheme == 0x08) { // UCS2
  /external/chromium_org/third_party/icu/source/common/
ustr_cnv.c 202 const UChar *ucs2,
213 &ucs2,
214 ucs2+u_ustrnlen(ucs2, n),
234 const UChar *ucs2 )
242 ucs2,
  /external/chromium_org/third_party/re2/
ucs2.diff 27 - if (prog_->flags() & Regexp::UCS2)
167 - else if (re->parse_flags() & Regexp::UCS2)
190 - bool ucs2 = prog_->flags() & Regexp::UCS2;
198 - if (!ucs2 && !anchored && first_byte_ >= 0 && runq->size() == 0 &&
209 - if(ucs2 && runq->size() == 0 &&
218 - if(!ucs2 || (p - context.begin()) % 2 == 0) {
234 - else if (flags & UCS2)
244 - if (flags_ & UCS2) {
256 - if (flags_ & UCS2) {
    [all...]
  /external/icu4c/common/
ustr_cnv.c 202 const UChar *ucs2,
213 &ucs2,
214 ucs2+u_ustrnlen(ucs2, n),
234 const UChar *ucs2 )
242 ucs2,
  /external/regex-re2/
ucs2.diff 27 - if (prog_->flags() & Regexp::UCS2)
167 - else if (re->parse_flags() & Regexp::UCS2)
190 - bool ucs2 = prog_->flags() & Regexp::UCS2;
198 - if (!ucs2 && !anchored && first_byte_ >= 0 && runq->size() == 0 &&
209 - if(ucs2 && runq->size() == 0 &&
218 - if(!ucs2 || (p - context.begin()) % 2 == 0) {
234 - else if (flags & UCS2)
244 - if (flags_ & UCS2) {
256 - if (flags_ & UCS2) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccUtils.java 150 * - one of the UCS2 coded options as defined in annex B.
154 * remaining octets are 16 bit UCS2 characters ...
161 * base pointer to a "half page" in the UCS2 code space, to be
173 * base pointer to a "half page" in the UCS2 code space...
231 // UCS2 subset case
355 // UCS2
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccUtils.java 150 * - one of the UCS2 coded options as defined in annex B.
154 * remaining octets are 16 bit UCS2 characters ...
161 * base pointer to a "half page" in the UCS2 code space, to be
173 * base pointer to a "half page" in the UCS2 code space...
231 // UCS2 subset case
355 // UCS2
  /external/libmtp/src/
unicode.c 82 char loclstr[STRING_BUFFER_LENGTH*3+1]; // UTF-8 encoding is max 3 bytes per UCS2 char.
115 char unicstr[(STRING_BUFFER_LENGTH+1)*2]; // UCS2 encoding is 2 bytes per UTF-8 char.
playlist-spl.c 324 * (needed for ucs2->utf8 charset conversion)
333 // upto 3 bytes per utf8 character, 2 bytes per ucs2 character,
456 // write out BOM for utf16/ucs2 (byte order mark)
460 // note: 2 bytes per ucs2 character
469 printf("ucs2=");
487 // write carriage return, line feed in ucs2
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
CharacterSets.java 45 public static final int UCS2 = 0x03E8;
71 UCS2,
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_name.h 120 * UnicodeUCS4. Symbol and UnicodeBMPUCS2 are both UCS2-BE, UnicodeUCS4 is actually
125 ((Symbol, SkTEndian_SwapBE16(0))) // UCS2-BE, but don't use this font to display it's own name.
126 ((UnicodeBMPUCS2, SkTEndian_SwapBE16(1))) // UCS2-BE, Windows default
  /external/skia/src/sfnt/
SkOTTable_name.h 120 * UnicodeUCS4. Symbol and UnicodeBMPUCS2 are both UCS2-BE, UnicodeUCS4 is actually
125 ((Symbol, SkTEndian_SwapBE16(0))) // UCS2-BE, but don't use this font to display it's own name.
126 ((UnicodeBMPUCS2, SkTEndian_SwapBE16(1))) // UCS2-BE, Windows default
  /packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/
DialogSmsDisplayTests.java 133 byte[] pdu = encodeCellBroadcast(0, 0, DCS_16BIT_UCS2, "Hello in UCS2");
  /external/chromium_org/tools/python/google/httpd_config/
httpd2_mac.conf 165 AddCharset UCS-2 .ucs2
httpd2.conf 216 AddCharset UCS-2 .ucs2
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libc-2.7.so 
libc.so.6 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/
libc-2.7.so 
libc.so.6 
  /ndk/sources/android/support/src/musl-locale/
iconv.c 38 "ucs2\0ucs2be\0\0\304"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multibytecodec.py 160 if len(u'\U00012345') == 2: # UCS2

Completed in 372 milliseconds

1 2 3