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

1 2 3 4 5 6 7

  /external/libedit/src/
chartype.c 50 ct_conv_buff_resize(ct_buffer_t *conv, size_t mincsize, size_t minwsize)
53 if (mincsize > conv->csize) {
54 conv->csize = mincsize;
55 p = el_realloc(conv->cbuff, conv->csize * sizeof(*conv->cbuff));
57 conv->csize = 0;
58 el_free(conv->cbuff);
59 conv->cbuff = NULL;
61 conv->cbuff = p
    [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/icu/icu4c/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/sfntly/cpp/src/test/
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);
test_utils.cc 76 UConverter* conv = ucnv_open(charset_name, &status); local
79 return conv; // returns NULL @ error anyway
  /external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
Android.mk 17 test_makefile := external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/Android.mk
19 test_name := depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/assign_from_auto_ptr_ref
23 test_name := depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/convert_from_auto_ptr_ref
27 test_name := depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/convert_to_auto_ptr
31 test_name := depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/convert_to_auto_ptr_ref
  /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);
  /build/target/product/
runtime_common.mk 32 hprof-conv \
  /development/build/
product_sdk.mk 41 hprof-conv \
  /external/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.conv/
Android.mk 17 test_makefile := external/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.conv/Android.mk
19 test_name := iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.conv/tested_elsewhere
  /external/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.conv/
Android.mk 17 test_makefile := external/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.conv/Android.mk
19 test_name := iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.conv/tested_elsewhere
  /external/fonttools/Lib/fontTools/ttLib/tables/
otBase.py 546 for conv in converters:
547 if conv.name == "SubTable":
548 conv = conv.getConverter(reader.globalState.tableType,
550 if conv.name == "ExtSubTable":
551 conv = conv.getConverter(reader.globalState.tableType,
553 if conv.name == "FeatureParams":
554 conv = conv.getConverter(reader["FeatureTag"]
    [all...]
  /external/chromium_org/url/
url_canon_icu_unittest.cc 65 UConvScoper conv(icu_cases[i].encoding);
66 ASSERT_TRUE(conv.converter() != NULL);
67 ICUCharsetConverter converter(conv.converter());
83 UConvScoper conv("utf-8");
84 ASSERT_TRUE(conv.converter());
85 ICUCharsetConverter converter(conv.converter());
124 UConvScoper conv(query_cases[i].encoding);
125 ASSERT_TRUE(!query_cases[i].encoding || conv.converter());
126 ICUCharsetConverter converter(conv.converter());
  /external/lldb/test/lang/cpp/class_types/
main.cpp 122 Conversion conv(1);
123 if (conv)
  /external/chromium_org/third_party/skia/src/gpu/effects/
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...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
ucbuf.c 47 UConverter* conv; member in struct:UCHARBUF
53 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* error){
73 *conv =NULL;
78 *conv = ucnv_open(*cp,error);
83 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error);
132 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv, int32_t* signatureLength,UErrorCode* error){
137 if(conv==NULL || cp==NULL || fileName==NULL){
149 if(ucbuf_autodetect_fs(in,cp,conv,signatureLength,error)) {
152 ucnv_close(*conv);
153 *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/icu/icu4c/source/tools/toolutil/
ucbuf.c 47 UConverter* conv; member in struct:UCHARBUF
53 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* error){
73 *conv =NULL;
78 *conv = ucnv_open(*cp,error);
83 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error);
132 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv, int32_t* signatureLength,UErrorCode* error){
137 if(conv==NULL || cp==NULL || fileName==NULL){
149 if(ucbuf_autodetect_fs(in,cp,conv,signatureLength,error)) {
152 ucnv_close(*conv);
153 *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_org/third_party/skia/third_party/lua/src/
loslib.c 171 static const char *checkoption (lua_State *L, const char *conv, char *buff) {
175 if (*conv != '\0' && strchr(options[i], *conv) != NULL) {
176 buff[1] = *conv;
179 return conv + 1;
181 else if (*(conv + 1) != '\0' &&
182 strchr(options[i + 1], *(conv + 1)) != NULL) {
183 buff[2] = *(conv + 1); /* valid two-char conversion specifier */
185 return conv + 2;
190 lua_pushfstring(L, "invalid conversion specifier '%%%s'", conv));
    [all...]
  /external/libpng/contrib/libtests/
makepng.c 250 png_uint_32 value, png_const_bytep gamma_table, double conv)
284 value = (unsigned int)floor(65535*pow(value/65535.,conv)+.5);
311 int bit_depth, png_const_bytep gamma_table, double conv,
335 set_value(row, rowbytes, x, bit_depth, luma, gamma_table, conv);
352 conv);
354 conv);
382 gamma_table, conv);
385 gamma_table, conv);
388 gamma_table, conv);
419 gamma_table, conv);
594 double conv; local
    [all...]
  /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/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/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);

Completed in 547 milliseconds

1 2 3 4 5 6 7