Lines Matching refs:temp_char
1939 TCHAR temp_char; in TestInputName() local
1954 temp_char = input_string[0]; in TestInputName()
1958 if (!(isalpha(temp_char)) && (temp_char != '_')) in TestInputName()
1967 temp_char = input_string.GetAt(index); in TestInputName()
1970 … if ((temp_char >= 0) && (temp_char <= 255) && (isalnum(temp_char) || (temp_char == '_'))) in TestInputName()
2015 TCHAR temp_char; in SetImportIdName() local
2027 temp_char = input_name.GetAt(0); in SetImportIdName()
2028 if (!isalpha(temp_char) && (temp_char != '_')) in SetImportIdName()
2037 temp_char = input_name.GetAt(index); in SetImportIdName()
2039 if (!isalnum(temp_char) && (temp_char != '_')) in SetImportIdName()
2078 TCHAR temp_char; in IsFileNameFormat() local
2088 temp_char = filename.GetAt(index); in IsFileNameFormat()
2090 if (isalnum(temp_char) || (temp_char == '_') || (temp_char == ' ') || (temp_char == '.')) in IsFileNameFormat()