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

1 2

  /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/base/telephony/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;
81 dest.writeInt(ucs2 ? 1 : 0);
ResponseData.java 80 public GetInkeyInputResponseData(String inData, boolean ucs2, boolean packed) {
82 this.mIsUcs2 = ucs2;
143 buf.write(0x08); // UCS2
ValueParser.java 322 } else if (codingScheme == 0x08) { // UCS2
CommandParamsFactory.java 403 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0;
469 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0;
    [all...]
CatService.java 691 input.ucs2, input.packed);
  /external/icu4c/common/
ustr_cnv.c 202 const UChar *ucs2,
213 &ucs2,
214 ucs2+u_ustrnlen(ucs2, n),
234 const UChar *ucs2 )
242 ucs2,
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccUtils.java 152 * - one of the UCS2 coded options as defined in annex B.
156 * remaining octets are 16 bit UCS2 characters ...
163 * base pointer to a "half page" in the UCS2 code space, to be
175 * base pointer to a "half page" in the UCS2 code space...
233 // UCS2 subset case
357 // UCS2
  /external/skia/include/core/
SkString.h 187 /** This returns the number of ucs2 characters
191 /** This returns a null terminated ucs2 string
  /frameworks/base/core/java/com/google/android/mms/pdu/
CharacterSets.java 45 public static final int UCS2 = 0x03E8;
71 UCS2,
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_rights_manager.c 66 /* convert in ucs2 */
168 /* convert in ucs2 */
263 /* convert in ucs2 */
390 /* convert in ucs2 */
429 /* convert in ucs2 */
  /packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/
DialogSmsDisplayTests.java 120 pdus[0] = encodeCellBroadcast(0, 0, DCS_16BIT_UCS2, "Hello in UCS2");
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libc-2.7.so 
libc.so.6 
libc.a     [all...]
  /external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 59 Q_CORE_EXPORT const Properties * QT_FASTCALL properties(ushort ucs2);
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmSmsCbTest.java 382 "A UCS2 message containing a \u0434 character", msg.getMessageBody());
411 "A UCS2 message containing a \u0434 character", msg.getMessageBody());
456 assertEquals("Unexpected multipage UCS2 string decoded",
479 "A UCS2 message containing a \u0434 character", msg.getMessageBody());
510 "A UCS2 message containing a \u0434 character", msg.getMessageBody());
    [all...]
  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 351 * @param coding Specifies the coding scheme of the string, such as GSM, UTF8, UCS2, etc. This coding scheme
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
ModelInterpreter.java 715 {"+CSCS=?", "+CSCS: (\"HEX\",\"UCS2\")\r"},
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_iconv.c 128 { "UCS2", ENCODING_UCS2 },
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/xen/
libc.a     [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
ustring.h 548 * @param ucs2 A string to compare.
557 const UChar *ucs2,
    [all...]
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
ustring.h 548 * @param ucs2 A string to compare.
557 const UChar *ucs2,
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
ustring.h 548 * @param ucs2 A string to compare.
557 const UChar *ucs2,
    [all...]

Completed in 3783 milliseconds

1 2