Searched refs:filePath (Results 1 – 10 of 10) sorted by relevance
53 String filePath = entry.getPath().replace(".class", ""); in addTestCases() local55 Class<?> testClass = getClass(filePath, expectedPackage); in addTestCases()95 …protected Class<?> getClass(String filePath, String expectedPackage) throws ClassNotFoundException… in getClass() argument96 String dotPath = filePath.replace('/', '.'); in getClass()
44 public LogWriter(String filePath) throws IOException { in LogWriter() argument45 mOutputStream = new FileOutputStream(filePath); in LogWriter()136 private static void grabLogFrom(IDevice device, String filePath) throws IOException { in grabLogFrom() argument137 LogWriter writer = new LogWriter(filePath); in grabLogFrom()
36 public EventLogImporter(String filePath) throws FileNotFoundException { in EventLogImporter() argument45 new InputStreamReader(new FileInputStream(filePath))); in EventLogImporter()
35 public BugReportImporter(String filePath) throws FileNotFoundException { in BugReportImporter() argument37 new InputStreamReader(new FileInputStream(filePath))); in BugReportImporter()
250 public void saveLog(String filePath) throws IOException { in saveLog() argument252 File destFile = new File(filePath); in saveLog()268 filePath = filePath + TAG_FILE_EXT; in saveLog()269 mCurrentEventLogParser.saveTags(filePath); in saveLog()278 public void loadLog(String filePath) { in loadLog() argument279 if ((new File(filePath + TAG_FILE_EXT)).exists()) { in loadLog()280 startEventLogFromFiles(filePath); in loadLog()283 EventLogImporter importer = new EventLogImporter(filePath); in loadLog()291 String.format("Failure to read %1$s", filePath + TAG_FILE_EXT)); in loadLog()297 public void importBugReport(String filePath) { in importBugReport() argument[all …]
233 String filePath = sLastResFilePath.get(projPath); in createResFileGroup() local235 mResFileCombo.setText(filePath != null ? filePath : DEFAULT_RES_FILE_PATH); in createResFileGroup()467 for (String filePath : filePaths) { in run()468 mResFileCombo.add(filePath); in run()
124 public boolean init(String filePath) { in init() argument126 BufferedReader reader = new BufferedReader(new FileReader(filePath)); in init()524 public void saveTags(String filePath) throws IOException { in saveTags() argument525 File destFile = new File(filePath); in saveTags()
204 private void parseTextLogFile(String filePath) throws IOException { in parseTextLogFile() argument207 String tagFile = filePath + TAG_FILE_EXT; in parseTextLogFile()222 new InputStreamReader(new FileInputStream(filePath))); in parseTextLogFile()
472 private String getFileName(String filePath) { in getFileName() argument473 return new File(filePath).getName(); in getFileName()
27 native byte[] loadFile(String filePath);