Lines Matching refs:location
38 self.location = None
77 self.location = (petscDir, petscArch)
78 self.trial[self.location] = name
159 if self.location:
160 return self.location[0]
165 if self.location:
166 return self.location[1]
171 return self.location and self.location in self.working
175 if self.location and self.location in self.working:
176 return self.working[self.location][0]
181 if self.location and self.location in self.working:
182 return self.working[self.location][1]
183 elif useTrial and self.location and self.location in self.trial:
184 return self.trial[self.location][1]
189 if self.location and self.location in self.working:
190 return self.working[self.location][2]
191 elif useTrial and self.location and self.location in self.trial:
192 return self.trial[self.location][2]
197 if self.location and self.location in self.working:
198 return self.working[self.location][3]
376 for location, name in self.trial.items():
378 …f.framework.logPrint('Checking for a functional PETSc in '+name+', location/origin '+str(location))
382 for libraries in self.libraryGuesses(location[0]):
385 for includeDir in self.includeGuesses(location[0]):
388 self.trial[location] = (name, include, lib, 'Unknown')
394 …self.framework.logPrint('PETSc in '+name+', location/origin '+str(location)+' failed checkWorkingL…
397 …self.framework.logPrint('PETSc in '+name+', location/origin '+str(location)+' failed checkInclude …
400 …self.framework.logPrint('PETSc in '+name+', location/origin '+str(location)+' failed checkIncludes…
404 …self.framework.logPrint('PETSc in '+name+', location/origin '+str(location)+' failed checkLib test…
409 …self.framework.logPrint('PETSc in '+name+', location/origin '+str(location)+' failed checkSharedLi…
415 self.working[location] = (name, include, lib, version)