Lines Matching refs:FILE
860 // Take off localhost for file
861 if ([scheme _web_isCaseInsensitiveEqualToCString:"file"]) {
937 return [self rangeOfString:@"file:" options:(NSCaseInsensitiveSearch | NSAnchoredSearch)].location != NSNotFound;
969 FILE *file = fopen([filename fileSystemRepresentation], "r");
970 if (file == NULL) {
978 int result = fscanf(file, " #%*[^\n\r]%*[\n\r]");
985 result = fscanf(file, " %32[^# \t\n\r]%*[^# \t\n\r] ", word);
999 fclose(file);