HomeSort by relevance Sort by last modified time
    Searched refs:conv (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /packages/apps/Mms/src/com/android/mms/ui/
ConversationListItemData.java 46 public ConversationListItemData(Context context, Conversation conv) {
47 mConversation = conv;
48 mThreadId = conv.getThreadId();
50 mSubject = conv.getSnippet();
51 mDate = MessageUtils.formatTimeStampString(context, conv.getDate());
52 mIsRead = !conv.hasUnreadMessages();
53 mHasError = conv.hasError();
54 mHasDraft = conv.hasDraft();
55 mMessageCount = conv.getMessageCount();
56 mHasAttachment = conv.hasAttachment()
    [all...]
ConversationListAdapter.java 57 Conversation conv = Conversation.from(context, cursor); local
58 ConversationListItemData ch = new ConversationListItemData(context, conv);
  /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/chromium/third_party/icu/source/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/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/WebCore/platform/text/wx/
StringWx.cpp 69 wxMBConvUTF16 conv; local
70 const size_t utf16bufLen = conv.FromWChar(NULL, 0, widestr, widelen);
75 size_t len = conv.FromWChar(utf16buf.data(), utf16bufLen, widestr, widelen) / 2;
  /external/strace/strace/linux/x86_64/
gentab.pl 4 %conv = (
56 $name = $conv{$name} if defined($conv{$name});
  /dalvik/vm/
Native.h 102 union { u4 parts[2]; s8 whole; } conv;
103 conv.parts[0] = args[elem];
104 conv.parts[1] = args[elem+1];
105 return conv.whole;
Misc.h 46 union { u4 in; float out; } conv; local
47 conv.in = val;
48 return conv.out;
51 union { float in; u4 out; } conv; local
52 conv.in = val;
53 return conv.out;
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 32 private static final String TAG = "Mms/conv";
118 Conversation conv = Cache.get(threadId); local
119 if (conv != null)
120 return conv;
122 conv = new Conversation(context, threadId, allowQuery);
124 Cache.put(conv);
128 return conv;
141 Conversation conv = Cache.get(recipients); local
142 if (conv != null)
143 return conv;
228 Conversation conv = Cache.get(threadId); local
234 Conversation conv = new Conversation(context, cursor, false); local
878 Conversation conv; local
    [all...]
WorkingMessage.java 282 Conversation conv) {
284 if (msg.loadFromConversation(conv)) {
291 private boolean loadFromConversation(Conversation conv) {
292 if (Log.isLoggable(LogTag.APP, Log.VERBOSE)) LogTag.debug("loadFromConversation %s", conv);
294 long threadId = conv.getThreadId();
300 mText = readDraftSmsMessage(conv);
764 // we didn't nullify conv.mThreadId, causing a temperary situation where conv
884 public void setConversation(Conversation conv) {
885 if (DEBUG) LogTag.debug("setConversation %s -> %s", mConversation, conv);
1022 final Conversation conv = mConversation; local
    [all...]
  /dalvik/vm/mterp/c/
header.c 161 union { s8 ll; u4 parts[2]; } conv; local
164 conv.parts[0] = ptr[0];
165 conv.parts[1] = ptr[1];
166 return conv.ll;
180 union { s8 ll; u4 parts[2]; } conv; local
183 conv.ll = val;
184 ptr[0] = conv.parts[0];
185 ptr[1] = conv.parts[1];
197 union { double d; u4 parts[2]; } conv; local
200 conv.parts[0] = ptr[0]
216 union { double d; u4 parts[2]; } conv; local
    [all...]
  /external/chromium/third_party/icu/source/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/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/chromium/third_party/icu/source/common/
ustr_wcs.c 71 UConverter* conv = NULL; local
80 conv = u_getDefaultConverter(pErrorCode);
97 ucnv_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode);
216 u_releaseDefaultConverter(conv);
280 UConverter* conv = NULL; local
426 conv= u_getDefaultConverter(pErrorCode);
428 if(U_FAILURE(*pErrorCode)|| conv==NULL){
437 ucnv_toUnicode(conv,&pTarget,pTargetLimit,(const char**)&pCSrc,pCSrcLimit,NULL,(UBool)(pCSrc==pCSrcLimit),pErrorCode);
468 u_releaseDefaultConverter(conv);
  /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>
  /external/chromium/third_party/icu/source/tools/genbrk/
genbrk.cpp 240 UConverter* conv;
241 conv = ucnv_open(encoding, &status);
251 uint32_t destCap = ucnv_toUChars(conv,
264 ucnv_toUChars(conv,
274 ucnv_close(conv);
  /external/chromium/third_party/icu/source/tools/genctd/
genctd.cpp 252 UConverter* conv;
253 conv = ucnv_open(encoding, &status);
263 uint32_t destCap = ucnv_toUChars(conv,
276 ucnv_toUChars(conv,
286 ucnv_close(conv);
  /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);

Completed in 573 milliseconds

1 2 3 4 5