Lines Matching refs:filePath
119 def __init__(self, filePath, sortedLines): argument
120 self.filePath = filePath
126 filePath = getCaseListPath(buildCfg, module, "txt")
127 with open(filePath, 'r') as first_file:
130 caseList = CaseList(filePath, lines)
287 logging.debug("Reading " + currentCaseList.filePath)
301 def openAndStoreFile(filePath, testFilePath, parentFile): argument
302 if filePath not in output_files:
304 print(" " + filePath)
306 currentDir = os.path.dirname(filePath)
309 output_files[filePath] = open(filePath, 'w')
313 return output_files[filePath]
383 filePath = os.path.join(mainDstFileDir, mainGroupSubDir, groupName + ".txt")
384 if lastOutputFile != filePath:
385 … currentOutputFile = openAndStoreFile(filePath, groupName + ".txt", mainDstFile)
386 lastOutputFile = filePath