/external/icu4c/samples/ucnv/ |
convsamp.cpp | 211 UConverter *conv; local 215 conv = ucnv_open("koi8-r", &status); 219 len = ucnv_fromUChars(conv, target, 100, source, -1, &status); 223 ucnv_close(conv); 305 UConverter *conv; local 317 conv = ucnv_open("utf-8", &status); 320 uBufSize = (BUFFERSIZE/ucnv_getMinCharSize(conv)); 322 BUFFERSIZE, ucnv_getMinCharSize(conv), uBufSize); 339 ucnv_toUnicode(conv, &target, targetLimit, 373 ucnv_close(conv); 402 UConverter *conv; local 534 UConverter *conv; local 574 UConverter *conv = NULL; local 621 UConverter *conv = NULL; local 715 UConverter *conv = NULL, *cloneCnv = NULL; local 885 UConverter *conv = NULL; local 991 UConverter *conv = NULL; local [all...] |
/external/icu4c/i18n/ |
csmatch.cpp | 51 UConverter *conv = ucnv_open(getName(), status); local 52 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status); 54 ucnv_close(conv);
|
/external/webkit/Source/JavaScriptCore/wtf/wx/ |
StringWx.cpp | 65 wxMBConvUTF16 conv; 67 const size_t utf16bufLen = conv.FromWChar(0, 0, wideString, wideLength); 71 size_t len = conv.FromWChar(utf16buf.data(), utf16bufLen, wideString, wideLength) / 2;
|
/external/strace/strace/linux/x86_64/ |
gentab.pl | 4 %conv = ( 56 $name = $conv{$name} if defined($conv{$name});
|
/dalvik/vm/mterp/c/ |
header.cpp | 143 union { s8 ll; u4 parts[2]; } conv; local 146 conv.parts[0] = ptr[0]; 147 conv.parts[1] = ptr[1]; 148 return conv.ll; 160 union { s8 ll; u4 parts[2]; } conv; local 163 conv.ll = val; 164 ptr[0] = conv.parts[0]; 165 ptr[1] = conv.parts[1]; 175 union { double d; u4 parts[2]; } conv; local 178 conv.parts[0] = ptr[0] 192 union { double d; u4 parts[2]; } conv; local [all...] |
/dalvik/vm/ |
Misc.h | 49 union { u4 in; float out; } conv; local 50 conv.in = val; 51 return conv.out; 54 union { float in; u4 out; } conv; local 55 conv.in = val; 56 return conv.out;
|
/packages/apps/Mms/src/com/android/mms/data/ |
WorkingMessage.java | 286 Conversation conv) { 288 if (msg.loadFromConversation(conv)) { 295 private boolean loadFromConversation(Conversation conv) { 296 if (Log.isLoggable(LogTag.APP, Log.VERBOSE)) LogTag.debug("loadFromConversation %s", conv); 298 long threadId = conv.getThreadId(); 304 mText = readDraftSmsMessage(conv); 312 Uri uri = readDraftMmsMessage(mActivity, conv, sb); 817 // we didn't nullify conv.mThreadId, causing a temperary situation where conv 1043 final Conversation conv = mConversation; local [all...] |
Conversation.java | 38 private static final String TAG = "Mms/conv"; 135 Conversation conv = Cache.get(threadId); local 136 if (conv != null) 137 return conv; 139 conv = new Conversation(context, threadId, allowQuery); 141 Cache.put(conv); 143 LogTag.error("Tried to add duplicate Conversation to Cache (from threadId): " + conv); 144 if (!Cache.replace(conv)) { 145 LogTag.error("get by threadId cache.replace failed on " + conv); 148 return conv; 164 Conversation conv = Cache.get(recipients); local 266 Conversation conv = Cache.get(threadId); local 272 Conversation conv = new Conversation(context, cursor, false); local 1034 Conversation conv; local [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
ConversationListAdapter.java | 57 Conversation conv = Conversation.from(context, cursor); local 58 headerView.bind(context, conv); 93 Conversation conv = Conversation.from(mContext, cursor); local 94 conv.setIsChecked(false);
|
/external/icu4c/tools/toolutil/ |
ucbuf.c | 46 UConverter* conv; member in struct:UCHARBUF 52 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* error){ 72 *conv =NULL; 77 *conv = ucnv_open(*cp,error); 82 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error); 131 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv, int32_t* signatureLength,UErrorCode* error){ 136 if(conv==NULL || cp==NULL || fileName==NULL){ 148 if(ucbuf_autodetect_fs(in,cp,conv,signatureLength,error)) { 151 ucnv_close(*conv); 152 *conv=NULL [all...] |
ucbuf.h | 156 * @param conv Output param to receive the opened converter if autodetected; NULL otherwise. 164 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv, 175 * @param conv Output param to receive the opened converter if autodetected; NULL otherwise. 184 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* status);
|
/external/icu4c/common/ |
ustr_wcs.c | 78 UConverter* conv = NULL; local 87 conv = u_getDefaultConverter(pErrorCode); 104 ucnv_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode); 223 u_releaseDefaultConverter(conv); 289 UConverter* conv = NULL; local 435 conv= u_getDefaultConverter(pErrorCode); 437 if(U_FAILURE(*pErrorCode)|| conv==NULL){ 446 ucnv_toUnicode(conv,&pTarget,pTargetLimit,(const char**)&pCSrc,pCSrcLimit,NULL,(UBool)(pCSrc==pCSrcLimit),pErrorCode); 477 u_releaseDefaultConverter(conv);
|
/frameworks/base/media/libmedia/ |
MediaScannerClient.cpp | 143 UConverter *conv = ucnv_open(enc, &status); local 151 ucnv_close(conv); 180 ucnv_convertEx(utf8Conv, conv, &target, target + targetLength, 194 ucnv_close(conv);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/ |
asoundlib.h | 59 #include <alsa/conv.h>
|
/dalvik/vm/reflect/ |
Reflect.cpp | 903 enum Conversion conv; local 912 conv = (srcType == dstType) ? OK4 : bad; 918 case PRIM_SHORT: conv = OK4; break; 919 default: conv = bad; break; 928 case PRIM_INT: conv = OK4; break; 929 default: conv = bad; break; 938 case PRIM_INT: conv = ItoJ; break; 939 case PRIM_LONG: conv = OK8; break; 940 default: conv = bad; break; 949 case PRIM_INT: conv = ItoF; break [all...] |
/external/icu4c/samples/ugrep/ |
ugrep.cpp | 317 UConverter* conv; local 318 conv = ucnv_open(encoding, &status); 328 uint32_t destCap = ucnv_toUChars(conv, 341 ucnv_toUChars(conv, 351 ucnv_close(conv);
|
/external/icu4c/tools/genbrk/ |
genbrk.cpp | 241 UConverter* conv; 242 conv = ucnv_open(encoding, &status); 252 uint32_t destCap = ucnv_toUChars(conv, 265 ucnv_toUChars(conv, 275 ucnv_close(conv);
|
/external/icu4c/tools/genctd/ |
genctd.cpp | 239 UConverter* conv; 240 conv = ucnv_open(encoding, &status); 250 uint32_t destCap = ucnv_toUChars(conv, 263 ucnv_toUChars(conv, 273 ucnv_close(conv);
|
/external/icu4c/test/perf/convperf/ |
convperf.h | 26 UConverter* conv; member in class:ICUToUnicodePerfFunction 34 conv = ucnv_open(name,&status); 38 conv = NULL; 43 int32_t reqdLen = ucnv_toUChars(conv, target, 0, 59 ucnv_toUnicode(conv, &myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status); 66 ucnv_close(conv); 71 UConverter* conv; member in class:ICUFromUnicodePerfFunction 80 conv = ucnv_open(name,&status); 84 conv = NULL; 89 int32_t reqdLen = ucnv_fromUChars(conv, target, 0 [all...] |
/sdk/build/ |
tools.windows.atree | 60 rm tools/hprof-conv 61 bin/hprof-conv.exe strip tools/hprof-conv.exe
|
/dalvik/tools/hprof-conv/ |
Android.mk | 20 LOCAL_MODULE := hprof-conv
|
/external/e2fsprogs/intl/ |
gettextP.h | 117 __gconv_t conv; member in struct:loaded_domain 120 iconv_t conv; member in struct:loaded_domain
|
/external/clang/test/CodeGenCXX/ |
condition.cpp | 71 switch (ConvertibleToInt conv = ConvertibleToInt()) {
|
/packages/apps/Mms/tests/src/com/android/mms/ui/ |
ComposeMessageActivityTests.java | 200 Conversation conv = Conversation.get(mActivity, contactList, false); local 202 WorkingMessage workingMsg = WorkingMessage.loadDraft(mActivity, conv); 203 workingMsg.setConversation(conv); 204 workingMsg.setText("This is test #" + i + " thread id: " + conv.getThreadId());
|
/external/icu4c/test/intltest/ |
idnaconf.cpp | 105 UConverter* conv = ucnv_open("utf-8", &status); local 106 int dest_len = ucnv_toUChars(conv, 117 ucnv_toUChars(conv, dest, dest_len + 1, source, source_len, &status); 124 ucnv_close(conv); 129 ucnv_close(conv);
|