Lines Matching refs:file
6 # found in the LICENSE file.
21 # Locate this script in the file system.
30 # Iterate over every file in this directory and use it to assemble our corpus.
32 for file in files:
34 if (not file.startswith('.') # Hidden
35 and not file.endswith('.py') # Python
36 and not file.endswith('.test') # ES2 conformance script
37 and not file.endswith('.txt')): # Text
39 pathInZip = '%d_%s' % (fileNum, file)
41 with open('%s/%s' % (root, file), 'r') as skslFile: