Searched defs:conv (Results 1 - 25 of 29) sorted by relevance

12

/external/icu4c/i18n/
H A Dcsmatch.cpp51 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/libxml2/include/libxml/
H A DxmlIO.h149 xmlBufferPtr conv; /* if encoder != NULL buffer for output */ member in struct:_xmlOutputBuffer
/external/e2fsprogs/intl/
H A DgettextP.h117 __gconv_t conv; member in struct:loaded_domain
120 iconv_t conv; member in struct:loaded_domain
/external/elfutils/libdwfl/
H A Ddwfl_module_getdwarf.c182 Elf_Data conv = local
195 Elf_Data *d = gelf_xlatetom (elf, &crcdata, &conv, ehdr->e_ident[EI_DATA]);
/external/icu4c/common/
H A Dustr_wcs.c78 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);
/external/icu4c/samples/ugrep/
H A Dugrep.cpp317 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/test/intltest/
H A Didnaconf.cpp105 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);
H A Dregextst.cpp3787 UConverter* conv = NULL; local
3843 conv = ucnv_open(encoding, &status);
3852 ulen = ucnv_toUChars(conv,
3863 ucnv_toUChars(conv,
3874 ucnv_close(conv);
/external/icu4c/test/perf/convperf/
H A Dconvperf.h26 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, targe
[all...]
/external/icu4c/samples/ucnv/
H A Dconvsamp.cpp211 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/test/cintltst/
H A Dcintltst.c505 UConverter* conv = ucnv_open(convName, &errorCode); local
512 ucnv_setFromUCallBack(conv, UCNV_FROM_U_CALLBACK_ESCAPE, UCNV_ESCAPE_C, &cb, &p, &errorCode);
513 ucnv_fromUnicode(conv,&target,targetLimit, &unichars, (UChar*)(unichars+length),NULL,TRUE,&errorCode);
514 ucnv_close(conv);
H A Dncnvfbts.c135 UConverter *conv = 0; local
162 conv = my_ucnv_open(codepage, &status);
171 ucnv_setFallback (conv, fallback);
172 action = ucnv_usesFallback(conv);
208 ucnv_fromUnicode (conv,
249 ucnv_close(conv);
296 UConverter *conv = 0; local
326 conv = my_ucnv_open(codepage, &status);
343 ucnv_setFallback (conv, fallback);
344 action = ucnv_usesFallback(conv);
[all...]
H A Dncnvtst.c913 UConverter *conv=NULL; local
917 conv=ucnv_open(ucnv_getAvailableName(i), &status);
923 ucnv_close(conv);
1022 UConverter *conv = 0; local
1023 conv = ucnv_open(codepage, &status);
1029 log_verbose("Converter %s opened..\n", ucnv_getName(conv, &status));
1041 ucnv_fromUnicode (conv,
1049 ucnv_close(conv);
1101 UConverter *conv = 0; local
1114 conv
1198 UConverter *conv = 0; local
1370 UConverter *conv = 0; local
[all...]
H A Dnccbtst.c2649 UConverter *conv = 0; local
2679 conv = ucnv_open(codepage, &status);
2689 ucnv_setFromUCallBack (conv, callback, NULL, &oldAction, &oldContext, &status);
2697 ucnv_setSubstChars(conv, mySubChar, len, &status);
2735 ucnv_fromUnicode (conv,
2752 ucnv_getInvalidUChars(conv,errChars, &errLen, &err);
2761 log_err("ucnv_getInvalidUChars did not return the correct invalid chars for encoding %s \n", ucnv_getName(conv,&err));
2794 ucnv_close(conv);
2848 UConverter *conv = 0; local
2879 conv
3046 UConverter *conv = 0; local
3224 UConverter *conv = 0; local
[all...]
H A Dnucnvtst.c111 const char* conv,
376 UConverter *conv = 0; local
401 conv = my_ucnv_open(codepage, &status);
409 ucnv_setFallback(conv,useFallback);
441 ucnv_fromUnicode (conv,
480 ucnv_close(conv);
533 UConverter *conv = 0; local
560 conv = my_ucnv_open(codepage, &status);
568 ucnv_setFallback(conv,useFallback);
599 ucnv_toUnicode (conv,
3381 TestConv(const uint16_t in[],int len, const char* conv, const char* lang, char byteArr[],int byteArrLen) argument
3809 UConverter* conv =ucnv_open("ISO_2022_JP",&err); local
5448 UConverter* conv=NULL; local
5488 UConverter* conv = ucnv_open("iscii-gur", &status); local
5541 UConverter* conv = ucnv_open("iscii", &status); local
[all...]
/external/icu4c/tools/toolutil/
H A Ducbuf.c46 UConverter* conv; member in struct:UCHARBUF
52 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* error){ argument
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){ argument
136 if(conv==NULL || cp==NULL || fileName==NULL){
148 if(ucbuf_autodetect_fs(in,cp,conv,signatureLength,error)) {
151 ucnv_close(*conv);
152 *conv
[all...]
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dpseudotcp.cc221 PseudoTcp::PseudoTcp(IPseudoTcpNotify* notify, uint32 conv) argument
230 m_conv = conv;
535 seg.conv = bytes_to_long(buffer);
548 LOG(LS_INFO) << "--> <CONV=" << seg.conv
600 if (seg.conv != m_conv) {
H A Dpseudotcp.h66 PseudoTcp(IPseudoTcpNotify* notify, uint32 conv);
118 uint32 conv, seq, ack; member in struct:cricket::PseudoTcp::Segment
/external/clang/test/SemaCXX/
H A Dconditional-expr.cpp93 Convertible conv; local
96 Base &bar3 = i1 ? base : conv;
97 Base &bar4 = i1 ? conv : base;
/external/icu4c/tools/genrb/
H A Dwrtjava.c101 static UConverter* conv = NULL; variable
187 int retVal=ucnv_fromUChars(conv,dest,30,source+i,1,status);
693 conv=ucnv_open(enc,status);
704 ucnv_close(conv);
H A Dwrtxml.cpp46 static UConverter* conv = NULL; variable
1130 conv=ucnv_open(enc,status);
1190 ucnv_close(conv);
/external/qemu/audio/
H A Daudio_int.h96 t_sample *conv; member in struct:HWVoiceIn
113 t_sample *conv; member in struct:SWVoiceOut
/external/icu4c/io/
H A Duscanf_p.c805 UConverter *conv; local
824 conv = u_getDefaultConverter(&status);
842 limit = alias + ucnv_getMaxCharSize(conv);
846 ucnv_fromUnicode(conv, &alias, limit, &source, source + 1,
851 u_releaseDefaultConverter(conv);
872 u_releaseDefaultConverter(conv);
/external/libxml2/
H A Dencoding.c105 uconv_t *conv = (uconv_t *) xmlMalloc(sizeof(uconv_t)); local
106 if (conv == NULL)
109 conv->uconv = ucnv_open(name, &status);
115 ucnv_setToUCallBack(conv->uconv, UCNV_TO_U_CALLBACK_STOP,
119 ucnv_setFromUCallBack(conv->uconv, UCNV_FROM_U_CALLBACK_STOP,
126 conv->utf8 = ucnv_open("UTF-8", &status);
128 return conv;
131 if (conv->uconv)
132 ucnv_close(conv->uconv);
133 xmlFree(conv);
138 closeIcuConverter(uconv_t *conv) argument
[all...]
/external/skia/src/core/
H A DSkPath.cpp2035 const Convexity conv = this->getConvexityOrUnknown(); local
2051 if (kConvex_Convexity == conv) {

Completed in 499 milliseconds

12