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

1 2 3

  /external/chromium_org/third_party/icu/source/i18n/
csmatch.cpp 61 UConverter *conv = ucnv_open(getName(), status); local
62 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
64 ucnv_close(conv);
  /external/icu/icu4c/source/i18n/
csmatch.cpp 61 UConverter *conv = ucnv_open(getName(), status); local
62 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
64 ucnv_close(conv);
  /external/chromium_org/third_party/sfntly/cpp/src/test/
test_utils.cc 76 UConverter* conv = ucnv_open(charset_name, &status); local
79 return conv; // returns NULL @ error anyway
test_utils_test.cc 32 UConverter* conv = TestUtils::GetEncoder("utf8"); local
33 EXPECT_TRUE(conv != NULL);
41 int32_t encoded = TestUtils::EncodeOneChar(conv, (int16_t)from[i]);
48 ucnv_close(conv);
53 ucnv_close(conv);
  /external/chromium_org/content/renderer/
dom_automation_controller.cc 80 V8ValueConverterImpl conv; local
82 conv.FromV8Value(args.PeekNext(), args.isolate()->GetCurrentContext()));
  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 95 SuppressionType conv(ReportType typ) { function in namespace:__tsan
128 SuppressionType stype = conv(typ);
150 SuppressionType stype = conv(typ);
  /external/chromium_org/third_party/libxml/src/include/libxml/
xmlIO.h 149 xmlBufferPtr conv; /* if encoder != NULL buffer for output */ member in struct:_xmlOutputBuffer
  /external/libxml2/include/libxml/
xmlIO.h 149 xmlBufPtr conv; /* if encoder != NULL buffer for output */ member in struct:_xmlOutputBuffer
  /external/chromium_org/remoting/host/
pam_authorization_factory_posix.cc 114 struct pam_conv conv = { PamConversation, NULL }; local
117 &conv, &handle);
  /external/chromium_org/third_party/icu/source/common/
ustr_wcs.cpp 74 UConverter* conv = NULL; local
83 conv = u_getDefaultConverter(pErrorCode);
100 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/chromium_org/third_party/icu/source/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/chromium_org/third_party/skia/src/gpu/effects/
GrConfigConversionEffect.cpp 90 const GrConfigConversionEffect& conv = processor.cast<GrConfigConversionEffect>(); local
91 uint32_t key = (conv.swapsRedAndBlue() ? 0 : 1) | (conv.pmConversion() << 1);
GrConvolutionEffect.cpp 110 const GrConvolutionEffect& conv = processor.cast<GrConvolutionEffect>(); local
111 GrTexture& texture = *conv.texture(0);
113 SkASSERT(conv.radius() == fRadius);
116 switch (conv.direction()) {
127 if (conv.useBounds()) {
128 const float* bounds = conv.bounds();
129 if (Gr1DKernelEffect::kY_Direction == conv.direction() &&
136 pdman.set1fv(fKernelUni, this->width(), conv.kernel());
141 const GrConvolutionEffect& conv = processor.cast<GrConvolutionEffect>(); local
142 uint32_t key = conv.radius()
    [all...]
GrMatrixConvolutionEffect.cpp 135 const GrMatrixConvolutionEffect& conv = processor.cast<GrMatrixConvolutionEffect>(); local
136 GrTexture& texture = *conv.texture(0);
138 SkASSERT(conv.kernelSize() == fKernelSize);
144 pdman.set2fv(fKernelOffsetUni, 1, conv.kernelOffset());
145 pdman.set1fv(fKernelUni, fKernelSize.width() * fKernelSize.height(), conv.kernel());
146 pdman.set1f(fGainUni, conv.gain());
147 pdman.set1f(fBiasUni, conv.bias());
148 fDomain.setData(pdman, conv.domain(), texture.origin());
  /external/e2fsprogs/intl/
gettextP.h 117 __gconv_t conv; member in struct:loaded_domain
120 iconv_t conv; member in struct:loaded_domain
  /external/icu/icu4c/source/common/
ustr_wcs.cpp 74 UConverter* conv = NULL; local
83 conv = u_getDefaultConverter(pErrorCode);
100 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/icu/icu4c/source/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/libedit/src/
search.c 114 static ct_buffer_t conv; local
131 if (regcomp(&re, ct_encode_string(pat, &conv), 0) == 0) {
132 rv = regexec(&re, ct_encode_string(str, &conv), (size_t)0, NULL,
140 if ((re = regcomp(ct_encode_string(pat, &conv))) != NULL) {
141 rv = regexec(re, ct_encode_string(str, &conv));
148 if (re_comp(ct_encode_string(pat, &conv)) != NULL)
151 return re_exec(ct_encode_string(str, &conv) == 1);
  /external/chromium_org/third_party/icu/source/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);
  /external/chromium_org/third_party/icu/source/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...]
  /external/chromium_org/v8/src/compiler/arm64/
instruction-selector-arm64-unittest.cc 193 std::ostream& operator<<(std::ostream& os, const Conversion& conv) {
194 return os << conv.mi;
852 const Conversion conv = GetParam(); local
853 StreamBuilder m(this, conv.mi.machine_type, conv.src_machine_type);
854 m.Return((m.*conv.mi.constructor)(m.Parameter(0)));
857 EXPECT_EQ(conv.mi.arch_opcode, s[0]->arch_opcode());
    [all...]
  /external/icu/icu4c/source/test/intltest/
idnaconf.cpp 104 UConverter* conv = ucnv_open("utf-8", &status); local
105 int dest_len = ucnv_toUChars(conv,
116 ucnv_toUChars(conv, dest, dest_len + 1, source, source_len, &status);
123 ucnv_close(conv);
128 ucnv_close(conv);
  /external/icu/icu4c/source/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...]
  /external/chromium_org/third_party/icu/source/samples/ucnv/
convsamp.cpp 204 UConverter *conv; local
209 conv = ucnv_open("koi8-r", &status);
214 len = ucnv_fromUChars(conv, target, 100, source, -1, &status);
218 ucnv_close(conv);
300 UConverter *conv; local
312 conv = ucnv_open("utf-8", &status);
315 uBufSize = (BUFFERSIZE/ucnv_getMinCharSize(conv));
317 BUFFERSIZE, ucnv_getMinCharSize(conv), uBufSize);
334 ucnv_toUnicode(conv, &target, targetLimit,
368 ucnv_close(conv);
396 UConverter *conv; local
529 UConverter *conv; local
569 UConverter *conv = NULL; local
616 UConverter *conv = NULL; local
710 UConverter *conv = NULL, *cloneCnv = NULL; local
879 UConverter *conv = NULL; local
985 UConverter *conv = NULL; local
1080 UConverter *conv = NULL; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cintltst.c 512 UConverter* conv = ucnv_open(convName, &errorCode); local
519 ucnv_setFromUCallBack(conv, UCNV_FROM_U_CALLBACK_ESCAPE, UCNV_ESCAPE_C, &cb, &p, &errorCode);
520 ucnv_fromUnicode(conv,&target,targetLimit, &unichars, (UChar*)(unichars+length),NULL,TRUE,&errorCode);
521 ucnv_close(conv);

Completed in 1675 milliseconds

1 2 3