Home | History | Annotate | Download | only in analyzer

Lines Matching refs:FileName

236 def hasNoExtension(FileName):
237 (Root, Ext) = os.path.splitext(FileName)
242 def isValidSingleInputFile(FileName):
243 (Root, Ext) = os.path.splitext(FileName)
268 FileName = os.path.basename(FullFileName)
272 if (hasNoExtension(FileName)):
274 if (isValidSingleInputFile(FileName) == False):
279 OutputOption = "-o " + os.path.join(PlistPath, FileName) + ".plist "
280 Command = CmdPrefix + OutputOption + os.path.join(Dir, FileName)
281 LogFile = open(os.path.join(FailPath, FileName + ".stderr.txt"), "w+b")