Lines Matching defs:inName
621 * The locale and options will be copied to pPieces only if present in inName,
626 parseConverterOptions(const char *inName,
635 pArgs->name=inName;
640 while((c=*inName)!=0 && c!=UCNV_OPTION_SEP_CHAR) {
647 inName++;
653 while((c=*inName)!=0) {
655 ++inName;
658 /* inName is behind an option separator */
659 if(uprv_strncmp(inName, "locale=", 7)==0) {
664 inName+=7;
666 while((c=*inName)!=0 && c!=UCNV_OPTION_SEP_CHAR) {
667 ++inName;
678 } else if(uprv_strncmp(inName, "version=", 8)==0) {
680 inName+=8;
681 c=*inName;
687 ++inName;
689 } else if(uprv_strncmp(inName, "swaplfnl", 8)==0) {
690 inName+=8;
692 /* add processing for new options here with another } else if(uprv_strncmp(inName, "option-name=", XX)==0) { */
695 while(((c = *inName++) != 0) && (c != UCNV_OPTION_SEP_CHAR)) {