• Home
  • Raw
  • Download

Lines Matching refs:pArgs

383           UConverterLoadArgs *pArgs,
392 UConverterLoadArgs *pArgs,
396 ucnv_MBCSGetNextUChar(UConverterToUnicodeArgs *pArgs,
410 ucnv_MBCSWriteSub(UConverterFromUnicodeArgs *pArgs,
415 ucnv_MBCSGetNextUChar(UConverterToUnicodeArgs *pArgs,
1556 UConverterLoadArgs *pArgs, in ucnv_MBCSLoad() argument
1602 if(pArgs->nestedLoads!=1) { in ucnv_MBCSLoad()
1619 args.onlyTestIsLoadable=pArgs->onlyTestIsLoadable; in ucnv_MBCSLoad()
1620 args.reserved=pArgs->reserved; in ucnv_MBCSLoad()
1621 args.options=pArgs->options; in ucnv_MBCSLoad()
1622 args.pkg=pArgs->pkg; in ucnv_MBCSLoad()
1635 if(pArgs->onlyTestIsLoadable) { in ucnv_MBCSLoad()
1759 if(pArgs->onlyTestIsLoadable) { in ucnv_MBCSLoad()
1899 UConverterLoadArgs *pArgs, in ucnv_MBCSOpen() argument
1906 if(pArgs->onlyTestIsLoadable) { in ucnv_MBCSOpen()
1915 cnv->options=pArgs->options&=~UCNV_OPTION_SWAP_LFNL; in ucnv_MBCSOpen()
1918 if((pArgs->options&UCNV_OPTION_SWAP_LFNL)!=0) { in ucnv_MBCSOpen()
1933 cnv->options=pArgs->options&=~UCNV_OPTION_SWAP_LFNL; in ucnv_MBCSOpen()
1938 if(uprv_strstr(pArgs->name, "18030")!=NULL) { in ucnv_MBCSOpen()
1939 if(uprv_strstr(pArgs->name, "gb18030")!=NULL || uprv_strstr(pArgs->name, "GB18030")!=NULL) { in ucnv_MBCSOpen()
1943 … } else if((uprv_strstr(pArgs->name, "KEIS")!=NULL) || (uprv_strstr(pArgs->name, "keis")!=NULL)) { in ucnv_MBCSOpen()
1946 } else if((uprv_strstr(pArgs->name, "JEF")!=NULL) || (uprv_strstr(pArgs->name, "jef")!=NULL)) { in ucnv_MBCSOpen()
1949 … } else if((uprv_strstr(pArgs->name, "JIPS")!=NULL) || (uprv_strstr(pArgs->name, "jips")!=NULL)) { in ucnv_MBCSOpen()
2033 ucnv_MBCSSingleToUnicodeWithOffsets(UConverterToUnicodeArgs *pArgs, in ucnv_MBCSSingleToUnicodeWithOffsets() argument
2050 cnv=pArgs->converter; in ucnv_MBCSSingleToUnicodeWithOffsets()
2051 source=(const uint8_t *)pArgs->source; in ucnv_MBCSSingleToUnicodeWithOffsets()
2052 sourceLimit=(const uint8_t *)pArgs->sourceLimit; in ucnv_MBCSSingleToUnicodeWithOffsets()
2053 target=pArgs->target; in ucnv_MBCSSingleToUnicodeWithOffsets()
2054 targetLimit=pArgs->targetLimit; in ucnv_MBCSSingleToUnicodeWithOffsets()
2055 offsets=pArgs->offsets; in ucnv_MBCSSingleToUnicodeWithOffsets()
2155 pArgs->source=(const char *)source; in ucnv_MBCSSingleToUnicodeWithOffsets()
2161 pArgs->flush, in ucnv_MBCSSingleToUnicodeWithOffsets()
2163 sourceIndex+=1+(int32_t)(source-(const uint8_t *)pArgs->source); in ucnv_MBCSSingleToUnicodeWithOffsets()
2173 pArgs->source=(const char *)source; in ucnv_MBCSSingleToUnicodeWithOffsets()
2174 pArgs->target=target; in ucnv_MBCSSingleToUnicodeWithOffsets()
2175 pArgs->offsets=offsets; in ucnv_MBCSSingleToUnicodeWithOffsets()
2185 ucnv_MBCSSingleToBMPWithOffsets(UConverterToUnicodeArgs *pArgs, in ucnv_MBCSSingleToBMPWithOffsets() argument
2201 cnv=pArgs->converter; in ucnv_MBCSSingleToBMPWithOffsets()
2202 source=(const uint8_t *)pArgs->source; in ucnv_MBCSSingleToBMPWithOffsets()
2203 sourceLimit=(const uint8_t *)pArgs->sourceLimit; in ucnv_MBCSSingleToBMPWithOffsets()
2204 target=pArgs->target; in ucnv_MBCSSingleToBMPWithOffsets()
2205 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in ucnv_MBCSSingleToBMPWithOffsets()
2206 offsets=pArgs->offsets; in ucnv_MBCSSingleToBMPWithOffsets()
2360 &target, pArgs->targetLimit, in ucnv_MBCSSingleToBMPWithOffsets()
2362 pArgs->flush, in ucnv_MBCSSingleToBMPWithOffsets()
2372 targetCapacity=(int32_t)(pArgs->targetLimit-target); in ucnv_MBCSSingleToBMPWithOffsets()
2385 if(U_SUCCESS(*pErrorCode) && source<sourceLimit && target>=pArgs->targetLimit) { in ucnv_MBCSSingleToBMPWithOffsets()
2400 pArgs->source=(const char *)source; in ucnv_MBCSSingleToBMPWithOffsets()
2401 pArgs->target=target; in ucnv_MBCSSingleToBMPWithOffsets()
2402 pArgs->offsets=offsets; in ucnv_MBCSSingleToBMPWithOffsets()
2465 ucnv_MBCSToUnicodeWithOffsets(UConverterToUnicodeArgs *pArgs, in ucnv_MBCSToUnicodeWithOffsets() argument
2488 cnv=pArgs->converter; in ucnv_MBCSToUnicodeWithOffsets()
2495 ucnv_extContinueMatchToU(cnv, pArgs, -1, pErrorCode); in ucnv_MBCSToUnicodeWithOffsets()
2504 ucnv_MBCSSingleToBMPWithOffsets(pArgs, pErrorCode); in ucnv_MBCSToUnicodeWithOffsets()
2506 ucnv_MBCSSingleToUnicodeWithOffsets(pArgs, pErrorCode); in ucnv_MBCSToUnicodeWithOffsets()
2512 source=(const uint8_t *)pArgs->source; in ucnv_MBCSToUnicodeWithOffsets()
2513 sourceLimit=(const uint8_t *)pArgs->sourceLimit; in ucnv_MBCSToUnicodeWithOffsets()
2514 target=pArgs->target; in ucnv_MBCSToUnicodeWithOffsets()
2515 targetLimit=pArgs->targetLimit; in ucnv_MBCSToUnicodeWithOffsets()
2516 offsets=pArgs->offsets; in ucnv_MBCSToUnicodeWithOffsets()
2834 int32_t bytesFromThisBuffer=(int32_t)(source-(const uint8_t *)pArgs->source); in ucnv_MBCSToUnicodeWithOffsets()
2843 source=(const uint8_t *)pArgs->source; in ucnv_MBCSToUnicodeWithOffsets()
2850 pArgs->source=(const char *)source; in ucnv_MBCSToUnicodeWithOffsets()
2855 pArgs->flush, in ucnv_MBCSToUnicodeWithOffsets()
2857 sourceIndex=nextSourceIndex+=(int32_t)(source-(const uint8_t *)pArgs->source); in ucnv_MBCSToUnicodeWithOffsets()
2872 pArgs->source=(const char *)source; in ucnv_MBCSToUnicodeWithOffsets()
2873 pArgs->target=target; in ucnv_MBCSToUnicodeWithOffsets()
2874 pArgs->offsets=offsets; in ucnv_MBCSToUnicodeWithOffsets()
2882 ucnv_MBCSSingleGetNextUChar(UConverterToUnicodeArgs *pArgs, in ucnv_MBCSSingleGetNextUChar() argument
2892 cnv=pArgs->converter; in ucnv_MBCSSingleGetNextUChar()
2893 source=(const uint8_t *)pArgs->source; in ucnv_MBCSSingleGetNextUChar()
2894 sourceLimit=(const uint8_t *)pArgs->sourceLimit; in ucnv_MBCSSingleGetNextUChar()
2907 pArgs->source=(const char *)source; in ucnv_MBCSSingleGetNextUChar()
2944 pArgs->source=(const char *)source-1; in ucnv_MBCSSingleGetNextUChar()
2967 ucnv_MBCSGetNextUChar(UConverterToUnicodeArgs *pArgs, in ucnv_MBCSGetNextUChar() argument
2983 cnv=pArgs->converter; in ucnv_MBCSGetNextUChar()
2998 return ucnv_MBCSSingleGetNextUChar(pArgs, pErrorCode); in ucnv_MBCSGetNextUChar()
3002 source=lastSource=(const uint8_t *)pArgs->source; in ucnv_MBCSGetNextUChar()
3003 sourceLimit=(const uint8_t *)pArgs->sourceLimit; in ucnv_MBCSGetNextUChar()
3140 pArgs->source=(const char *)lastSource; in ucnv_MBCSGetNextUChar()
3191 pArgs->source=(const char *)source; in ucnv_MBCSGetNextUChar()
3406 ucnv_MBCSDoubleFromUnicodeWithOffsets(UConverterFromUnicodeArgs *pArgs, in ucnv_MBCSDoubleFromUnicodeWithOffsets() argument
3428 cnv=pArgs->converter; in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3432 source=pArgs->source; in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3433 sourceLimit=pArgs->sourceLimit; in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3434 target=(uint8_t *)pArgs->target; in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3435 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3436 offsets=pArgs->offsets; in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3558 pArgs->source=source; in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3563 pArgs->flush, in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3565 nextSourceIndex+=(int32_t)(source-pArgs->source); in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3574 targetCapacity=(int32_t)(pArgs->targetLimit-(char *)target); in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3631 pArgs->source=source; in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3632 pArgs->target=(char *)target; in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3633 pArgs->offsets=offsets; in ucnv_MBCSDoubleFromUnicodeWithOffsets()
3638 ucnv_MBCSSingleFromUnicodeWithOffsets(UConverterFromUnicodeArgs *pArgs, in ucnv_MBCSSingleFromUnicodeWithOffsets() argument
3657 cnv=pArgs->converter; in ucnv_MBCSSingleFromUnicodeWithOffsets()
3658 source=pArgs->source; in ucnv_MBCSSingleFromUnicodeWithOffsets()
3659 sourceLimit=pArgs->sourceLimit; in ucnv_MBCSSingleFromUnicodeWithOffsets()
3660 target=(uint8_t *)pArgs->target; in ucnv_MBCSSingleFromUnicodeWithOffsets()
3661 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in ucnv_MBCSSingleFromUnicodeWithOffsets()
3662 offsets=pArgs->offsets; in ucnv_MBCSSingleFromUnicodeWithOffsets()
3764 pArgs->source=source; in ucnv_MBCSSingleFromUnicodeWithOffsets()
3769 pArgs->flush, in ucnv_MBCSSingleFromUnicodeWithOffsets()
3771 nextSourceIndex+=(int32_t)(source-pArgs->source); in ucnv_MBCSSingleFromUnicodeWithOffsets()
3780 targetCapacity=(int32_t)(pArgs->targetLimit-(char *)target); in ucnv_MBCSSingleFromUnicodeWithOffsets()
3797 pArgs->source=source; in ucnv_MBCSSingleFromUnicodeWithOffsets()
3798 pArgs->target=(char *)target; in ucnv_MBCSSingleFromUnicodeWithOffsets()
3799 pArgs->offsets=offsets; in ucnv_MBCSSingleFromUnicodeWithOffsets()
3814 ucnv_MBCSSingleFromBMPWithOffsets(UConverterFromUnicodeArgs *pArgs, in ucnv_MBCSSingleFromBMPWithOffsets() argument
3833 cnv=pArgs->converter; in ucnv_MBCSSingleFromBMPWithOffsets()
3834 source=pArgs->source; in ucnv_MBCSSingleFromBMPWithOffsets()
3835 sourceLimit=pArgs->sourceLimit; in ucnv_MBCSSingleFromBMPWithOffsets()
3836 target=(uint8_t *)pArgs->target; in ucnv_MBCSSingleFromBMPWithOffsets()
3837 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in ucnv_MBCSSingleFromBMPWithOffsets()
3838 offsets=pArgs->offsets; in ucnv_MBCSSingleFromBMPWithOffsets()
3977 if (pArgs->flush) { in ucnv_MBCSSingleFromBMPWithOffsets()
4012 &target, (const uint8_t *)(pArgs->targetLimit), in ucnv_MBCSSingleFromBMPWithOffsets()
4014 pArgs->flush, in ucnv_MBCSSingleFromBMPWithOffsets()
4026 targetCapacity=(int32_t)(pArgs->targetLimit-(char *)target); in ucnv_MBCSSingleFromBMPWithOffsets()
4039 if(U_SUCCESS(*pErrorCode) && source<sourceLimit && target>=(uint8_t *)pArgs->targetLimit) { in ucnv_MBCSSingleFromBMPWithOffsets()
4065 pArgs->source=source; in ucnv_MBCSSingleFromBMPWithOffsets()
4066 pArgs->target=(char *)target; in ucnv_MBCSSingleFromBMPWithOffsets()
4067 pArgs->offsets=offsets; in ucnv_MBCSSingleFromBMPWithOffsets()
4071 ucnv_MBCSFromUnicodeWithOffsets(UConverterFromUnicodeArgs *pArgs, in ucnv_MBCSFromUnicodeWithOffsets() argument
4098 cnv=pArgs->converter; in ucnv_MBCSFromUnicodeWithOffsets()
4105 ucnv_extContinueMatchFromU(cnv, pArgs, -1, pErrorCode); in ucnv_MBCSFromUnicodeWithOffsets()
4117 ucnv_MBCSSingleFromBMPWithOffsets(pArgs, pErrorCode); in ucnv_MBCSFromUnicodeWithOffsets()
4119 ucnv_MBCSSingleFromUnicodeWithOffsets(pArgs, pErrorCode); in ucnv_MBCSFromUnicodeWithOffsets()
4123 ucnv_MBCSDoubleFromUnicodeWithOffsets(pArgs, pErrorCode); in ucnv_MBCSFromUnicodeWithOffsets()
4128 source=pArgs->source; in ucnv_MBCSFromUnicodeWithOffsets()
4129 sourceLimit=pArgs->sourceLimit; in ucnv_MBCSFromUnicodeWithOffsets()
4130 target=(uint8_t *)pArgs->target; in ucnv_MBCSFromUnicodeWithOffsets()
4131 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in ucnv_MBCSFromUnicodeWithOffsets()
4132 offsets=pArgs->offsets; in ucnv_MBCSFromUnicodeWithOffsets()
4611 pArgs->source=source; in ucnv_MBCSFromUnicodeWithOffsets()
4616 pArgs->flush, in ucnv_MBCSFromUnicodeWithOffsets()
4618 nextSourceIndex+=(int32_t)(source-pArgs->source); in ucnv_MBCSFromUnicodeWithOffsets()
4628 targetCapacity=(int32_t)(pArgs->targetLimit-(char *)target); in ucnv_MBCSFromUnicodeWithOffsets()
4776 pArgs->flush && source>=sourceLimit && c==0 in ucnv_MBCSFromUnicodeWithOffsets()
4811 pArgs->source=source; in ucnv_MBCSFromUnicodeWithOffsets()
4812 pArgs->target=(char *)target; in ucnv_MBCSFromUnicodeWithOffsets()
4813 pArgs->offsets=offsets; in ucnv_MBCSFromUnicodeWithOffsets()
5651 ucnv_MBCSWriteSub(UConverterFromUnicodeArgs *pArgs, in ucnv_MBCSWriteSub() argument
5654 UConverter *cnv=pArgs->converter; in ucnv_MBCSWriteSub()
5707 ucnv_cbFromUWriteBytes(pArgs, subchar, length, offsetIndex, pErrorCode); in ucnv_MBCSWriteSub()