Lines Matching refs:thePath

40 		StringBuffer thePath = new StringBuffer(str.toString());  in buildSversionLocation()  local
45 boolean bSVersionInHomeDir = new File(thePath.toString() + "sversion.ini").exists(); in buildSversionLocation()
48 thePath.append("Application Data"); in buildSversionLocation()
49 thePath.append(File.separator); in buildSversionLocation()
51 theFile = findVersionFile(new File(thePath.toString())); in buildSversionLocation()
53 thePath.append(".sversionrc"); in buildSversionLocation()
54 theFile = new File(thePath.toString()); in buildSversionLocation()
56 thePath.append(".sversionrc"); in buildSversionLocation()
57 theFile = new File(thePath.toString()); in buildSversionLocation()
139 StringBuffer thePath = new StringBuffer(str.toString()); in getNetbeansLocation() local
145 thePath.append(".netbeans"); in getNetbeansLocation()
148 thePath.append(".netbeans"); in getNetbeansLocation()
151 thePath.append(".netbeans"); in getNetbeansLocation()
155 if ( thePath.toString().indexOf( ".netbeans" ) == -1 ) in getNetbeansLocation()
157 …else if ( new File( thePath.append( File.separator+"3.4"+File.separator ).toString() ).isDirectory… in getNetbeansLocation()
159 System.out.println( "Found NetBeans 3.4 user directory: " + thePath ); in getNetbeansLocation()
160 …File netbeansLogFile = new File( thePath.toString() + File.separator + "system" + File.separator +… in getNetbeansLocation()
197 StringBuffer thePath = new StringBuffer(str.toString()); in getJeditLocation() local
200 thePath.append(".jedit"); in getJeditLocation()
203 File jeditLogFile = new File( thePath.toString() + File.separator + "activity.log" ); in getJeditLocation()