Lines Matching defs:temp
500 const CHAR *temp = cmdKey;511 while (*temp != '\0') {512 if (!((*temp <= '9') && (*temp >= '0')) &&513 !((*temp <= 'z') && (*temp >= 'a')) &&514 !((*temp <= 'Z') && (*temp >= 'A')) &&515 (*temp != '_') && (*temp != '-')) {519 if ((*temp >= '0') && (*temp <= '9')) {527 temp++;