/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
|
CommandParamsFactory.java | 403 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0; 470 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0; [all...] |
CatService.java | 665 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,
|
/external/webkit/LayoutTests/http/conf/ |
apache2-debian-httpd.conf | 517 AddCharset UCS-2 .ucs2
|
apache2-httpd.conf | 538 AddCharset UCS-2 .ucs2
|
apache2-msys-httpd.conf | 539 AddCharset UCS-2 .ucs2
|
cygwin-httpd.conf | 570 AddCharset UCS-2 .ucs2
|
fedora-httpd.conf | 621 AddCharset UCS-2 .ucs2
|
httpd.conf | 573 AddCharset UCS-2 .ucs2
|
/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...] |
/external/webkit/Source/WebKit/mac/icu/unicode/ |
ustring.h | 548 * @param ucs2 A string to compare. 557 const UChar *ucs2, [all...] |
/external/icu4c/common/unicode/ |
ustring.h | 554 * @param ucs2 A string to compare. 563 const UChar *ucs2, [all...] |
/external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/ |
UnicodeQt4.h | 59 Q_CORE_EXPORT const Properties * QT_FASTCALL properties(ushort ucs2);
|
/external/webkit/Source/WebCore/css/ |
CSSParser.cpp | [all...] |