Lines Matching refs:LineToken
182 char *LineToken; in CvProcessComment() local
207 LineToken = strtok (CommentString, "\n"); in CvProcessComment()
209 if (LineToken) in CvProcessComment()
211 FinalLineToken = UtLocalCacheCalloc (strlen (LineToken) + 1); in CvProcessComment()
212 strcpy (FinalLineToken, LineToken); in CvProcessComment()
222 LineToken = strtok (NULL, "\n"); in CvProcessComment()
223 while (LineToken != NULL) in CvProcessComment()
231 for (i = 0; (i < (strlen (LineToken) + 1)) && !CharStart; i++) in CvProcessComment()
233 if (LineToken[i] != ' ' && LineToken[i] != '\t') in CvProcessComment()
236 LineToken += i-1; in CvProcessComment()
237 LineToken [0] = ' '; /* Pad for Formatting */ in CvProcessComment()
241 FinalLineToken = UtLocalCacheCalloc (strlen (LineToken) + 1); in CvProcessComment()
242 strcat (FinalLineToken, LineToken); in CvProcessComment()
252 LineToken = strtok (NULL,"\n"); in CvProcessComment()