Home | History | Annotate | Download | only in analyzer

Lines Matching refs:FileName

152 def hasNoExtension(FileName):
153 (Root, Ext) = os.path.splitext(FileName)
158 def isValidSingleInputFile(FileName):
159 (Root, Ext) = os.path.splitext(FileName)
181 FileName = os.path.basename(FullFileName)
185 if (hasNoExtension(FileName)):
187 if (isValidSingleInputFile(FileName) == False):
192 OutputOption = "-o " + os.path.join(PlistPath, FileName) + ".plist "
193 Command = CmdPrefix + OutputOption + os.path.join(Dir, FileName)
194 LogFile = open(os.path.join(FailPath, FileName + ".stderr.txt"), "w+b")