Home | History | Annotate | Download | only in analyzer

Lines Matching refs:FileName

229 def hasNoExtension(FileName):
230 (Root, Ext) = os.path.splitext(FileName)
235 def isValidSingleInputFile(FileName):
236 (Root, Ext) = os.path.splitext(FileName)
261 FileName = os.path.basename(FullFileName)
265 if (hasNoExtension(FileName)):
267 if (isValidSingleInputFile(FileName) == False):
272 OutputOption = "-o " + os.path.join(PlistPath, FileName) + ".plist "
273 Command = CmdPrefix + OutputOption + os.path.join(Dir, FileName)
274 LogFile = open(os.path.join(FailPath, FileName + ".stderr.txt"), "w+b")