Lines Matching defs:file
5 * found in the LICENSE file.
48 * or file tag. The resulting strings are put into the fNames or FontFileInfo arrays.
78 * variants then lets textHandler handle the actual file name
109 * fileset, name, and file.
134 } else if (strncmp(tag, "file", len) == 0 && familyData->currentTag == FILESET_TAG) {
135 // If it's a file, parse the attributes, then parse the text inside
142 * name, and file.
156 (strncmp(tag, "file", len) == 0 && familyData->currentTag == FILESET_TAG)) {
168 FILE* file = NULL;
189 file = fopen(updatedFilename.c_str(), "r");
190 if (!file) {
193 file = fopen(updatedFilename.c_str(), "r");
198 if (NULL == file) {
199 file = fopen(filename, "r");
204 if (NULL == file) {
216 fgets(buffer, sizeof(buffer), file);
218 if (feof(file) != 0) {
224 fclose(file);