HomeSort by relevance Sort by last modified time
    Searched full:ucs2 (Results 1 - 25 of 61) 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/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 327 } else if (codingScheme == 0x08) { // UCS2
CommandParamsFactory.java 411 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0;
478 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0;
    [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/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/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
  /external/skia/include/core/
SkString.h 180 /** This returns the number of ucs2 characters
184 /** 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 133 byte[] pdu = encodeCellBroadcast(0, 0, DCS_16BIT_UCS2, "Hello in 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 
  /external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 59 Q_CORE_EXPORT const Properties * QT_FASTCALL properties(ushort ucs2);
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3inputstream.c 70 // UTF16 (also covers UCS2)
88 // UTF32 (also covers UCS2)
691 /// \brief Common function to setup function interface for a UTF16 or UCS2 input stream.
696 /// - Strictly speaking, there is no such thing as a UCS2 input stream as the term
697 /// tends to confuse the notions of character encoding, unicode and so on. UCS2 is
    [all...]
antlr3filestream.c 183 // machine (or it is really UCS2). If there is a BOM we determine if the encoding
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GsmSmsCbTest.java 402 "A UCS2 message containing a \u0434 character", msg.getMessageBody());
431 "A UCS2 message containing a \u0434 character", msg.getMessageBody());
476 assertEquals("Unexpected multipage UCS2 string decoded",
499 "A UCS2 message containing a \u0434 character", msg.getMessageBody());
530 "A UCS2 message containing a \u0434 character", msg.getMessageBody());
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3defs.h 83 /// UTF-16 encoding scheme (which also covers UCS2 as that does not have surrogates)
  /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

Completed in 1250 milliseconds

1 2 3