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

1 2 3 4 5

  /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);
401 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;
  /dalvik/vm/mterp/c/
header.cpp 151 union { s8 ll; u4 parts[2]; } conv; local
154 conv.parts[0] = ptr[0];
155 conv.parts[1] = ptr[1];
156 return conv.ll;
168 union { s8 ll; u4 parts[2]; } conv; local
171 conv.ll = val;
172 ptr[0] = conv.parts[0];
173 ptr[1] = conv.parts[1];
183 union { double d; u4 parts[2]; } conv; local
186 conv.parts[0] = ptr[0]
200 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 295 final Conversation conv,
297 if (Log.isLoggable(LogTag.APP, Log.VERBOSE)) LogTag.debug("loadDraft %s", conv);
300 if (conv.getThreadId() <= 0) {
315 String draftText = msg.readDraftSmsMessage(conv);
321 Uri uri = readDraftMmsMessage(msg.mActivity, conv, sb);
1192 final Conversation conv = mConversation; local
    [all...]
Conversation.java 41 private static final String TAG = "Mms/conv";
141 Conversation conv = Cache.get(threadId); local
142 if (conv != null)
143 return conv;
145 conv = new Conversation(context, threadId, allowQuery);
147 Cache.put(conv);
149 LogTag.error("Tried to add duplicate Conversation to Cache (from threadId): " + conv);
150 if (!Cache.replace(conv)) {
151 LogTag.error("get by threadId cache.replace failed on " + conv);
154 return conv;
170 Conversation conv = Cache.get(recipients); local
273 Conversation conv = Cache.get(threadId); local
279 Conversation conv = new Conversation(context, cursor, false); local
1190 Conversation conv; local
    [all...]
  /external/elfutils/tests/
run-ranlib-test2.sh 40 dd of=$original seek=24 bs=1 count=12 conv=notrunc 2>/dev/null
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationListAdapter.java 56 Conversation conv = Conversation.from(context, cursor); local
57 headerView.bind(context, conv);
92 Conversation conv = Conversation.from(mContext, cursor); local
93 conv.setIsChecked(false);
RecipientListActivity.java 70 Conversation conv = Conversation.get(this, mThreadId, true); local
71 if (conv == null) {
76 final ContactList contacts = conv.getRecipients();
  /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);
  /development/build/
product_sdk.mk 39 hprof-conv \
  /hardware/invensense/libsensors_iio/software/core/mllite/
hal_outputs.c 257 float conv = 1.f / (1L<<30); local
260 r[0][0] = rot[0]*conv;
261 r[0][1] = rot[1]*conv;
262 r[0][2] = rot[2]*conv;
263 r[1][0] = rot[3]*conv;
264 r[1][1] = rot[4]*conv;
265 r[1][2] = rot[5]*conv;
266 r[2][0] = rot[6]*conv;
267 r[2][1] = rot[7]*conv;
268 r[2][2] = rot[8]*conv;
    [all...]
  /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);
  /packages/apps/Mms/src/com/android/mms/widget/
MmsWidgetService.java 225 Conversation conv = Conversation.from(mContext, mConversationCursor);
231 if (conv.hasUnreadMessages()) {
238 boolean hasAttachment = conv.hasAttachment();
244 addColor(MessageUtils.formatTimeStampString(mContext, conv.getDate()),
245 conv.hasUnreadMessages() ? SUBJECT_TEXT_COLOR_UNREAD :
249 int color = conv.hasUnreadMessages() ? SENDERS_TEXT_COLOR_UNREAD :
251 SpannableStringBuilder from = addColor(conv.getRecipients().formatNames(", "),
254 if (conv.hasDraft()) {
267 if (conv.hasUnreadMessages()) {
278 addColor(parser.addSmileySpans(conv.getSnippet())
    [all...]
  /frameworks/av/media/libmedia/
MediaScannerClient.cpp 143 UConverter *conv = ucnv_open(enc, &status); local
151 ucnv_close(conv);
181 ucnv_convertEx(utf8Conv, conv, &target, target + targetLength,
195 ucnv_close(conv);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
asoundlib.h 59 #include <alsa/conv.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
asoundlib.h 59 #include <alsa/conv.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
asoundlib.h 59 #include <alsa/conv.h>
  /dalvik/vm/reflect/
Reflect.cpp 903 enum Conversion conv; local
915 conv = (srcType == dstType) ? OK4 : bad;
921 case PRIM_SHORT: conv = OK4; break;
922 default: conv = bad; break;
931 case PRIM_INT: conv = OK4; break;
932 default: conv = bad; break;
941 case PRIM_INT: conv = ItoJ; break;
942 case PRIM_LONG: conv = OK8; break;
943 default: conv = bad; break;
952 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...]

Completed in 2953 milliseconds

1 2 3 4 5