Home | History | Annotate | Download | only in common

Lines Matching refs:myTargetIndex

340     int32_t myTargetIndex = 0;
357 if(args->converter->fromUChar32!=0 && myTargetIndex < targetLength) {
363 if (myTargetIndex < targetLength){
370 /*concatEscape(args, &myTargetIndex, &targetLength,"\x7E\x7E",err,2,&mySourceIndex);*/
373 myTargetIndex, targetLength, escSeq,err,len,mySourceIndex);
398 CONCAT_ESCAPE_MACRO(args, myTargetIndex, targetLength, escSeq,err,len,mySourceIndex);
404 CONCAT_ESCAPE_MACRO(args, myTargetIndex, targetLength, escSeq,err,len,mySourceIndex);
411 if( myTargetIndex <targetLength){
412 myTarget[myTargetIndex++] =(char) (targetUniChar >> 8);
416 if(myTargetIndex < targetLength){
417 myTarget[myTargetIndex++] =(char) targetUniChar;
432 if( myTargetIndex <targetLength){
433 myTarget[myTargetIndex++] = (char) (targetUniChar );
494 args->target += myTargetIndex;