Lines Matching refs:path
113 String path= (String) fPathItems.elementAt(i); in lookupClassData() local
115 if (isJar(path)) { in lookupClassData()
116 data= loadJarData(path, fileName); in lookupClassData()
118 data= loadFileData(path, fileName); in lookupClassData()
132 private byte[] loadFileData(String path, String fileName) { in loadFileData() argument
133 File file= new File(path, fileName); in loadFileData()
157 private byte[] loadJarData(String path, String fileName) { in loadJarData() argument
160 File archive= new File(path); in loadJarData()
216 String path= p.getProperty(key); in readExcludedPackages() local
217 path= path.trim(); in readExcludedPackages()
218 if (path.endsWith("*")) in readExcludedPackages()
219 path= path.substring(0, path.length()-1); in readExcludedPackages()
220 if (path.length() > 0) in readExcludedPackages()
221 fExcluded.addElement(path); in readExcludedPackages()