Lines Matching refs:inName
623 * The locale and options will be copied to pPieces only if present in inName,
628 parseConverterOptions(const char *inName,
637 pArgs->name=inName;
642 while((c=*inName)!=0 && c!=UCNV_OPTION_SEP_CHAR) {
649 inName++;
655 while((c=*inName)!=0) {
657 ++inName;
660 /* inName is behind an option separator */
661 if(uprv_strncmp(inName, "locale=", 7)==0) {
666 inName+=7;
668 while((c=*inName)!=0 && c!=UCNV_OPTION_SEP_CHAR) {
669 ++inName;
680 } else if(uprv_strncmp(inName, "version=", 8)==0) {
682 inName+=8;
683 c=*inName;
689 ++inName;
691 } else if(uprv_strncmp(inName, "swaplfnl", 8)==0) {
692 inName+=8;
694 /* add processing for new options here with another } else if(uprv_strncmp(inName, "option-name=", XX)==0) { */
697 while(((c = *inName++) != 0) && (c != UCNV_OPTION_SEP_CHAR)) {