Home | History | Annotate | Download | only in common

Lines Matching refs:inName

626  * The locale and options will be copied to pPieces only if present in inName,
631 parseConverterOptions(const char *inName,
640 pArgs->name=inName;
645 while((c=*inName)!=0 && c!=UCNV_OPTION_SEP_CHAR) {
652 inName++;
658 while((c=*inName)!=0) {
660 ++inName;
663 /* inName is behind an option separator */
664 if(uprv_strncmp(inName, "locale=", 7)==0) {
669 inName+=7;
671 while((c=*inName)!=0 && c!=UCNV_OPTION_SEP_CHAR) {
672 ++inName;
683 } else if(uprv_strncmp(inName, "version=", 8)==0) {
685 inName+=8;
686 c=*inName;
692 ++inName;
694 } else if(uprv_strncmp(inName, "swaplfnl", 8)==0) {
695 inName+=8;
697 /* add processing for new options here with another } else if(uprv_strncmp(inName, "option-name=", XX)==0) { */
700 while(((c = *inName++) != 0) && (c != UCNV_OPTION_SEP_CHAR)) {