Lines Matching defs:temp
174 const CHAR *temp = cmdKey;185 while (*temp != '\0') {186 if (!((*temp <= '9') && (*temp >= '0')) &&187 !((*temp <= 'z') && (*temp >= 'a')) &&188 !((*temp <= 'Z') && (*temp >= 'A')) &&189 (*temp != '_') && (*temp != '-')) {193 if ((*temp >= '0') && (*temp <= '9')) {201 temp++;