Lines Matching refs:sFileURL
64 String sFileURL = null; in getFileURLFromSystemPath() local
68 sFileURL = aSystemPath.toURL().toString(); in getFileURLFromSystemPath()
72 sFileURL = null; in getFileURLFromSystemPath()
78 (sFileURL != null ) && in getFileURLFromSystemPath()
79 (sFileURL.startsWith("file:/") == true ) && in getFileURLFromSystemPath()
80 (sFileURL.startsWith("file://") == false) in getFileURLFromSystemPath()
83 StringBuffer sWorkBuffer = new StringBuffer(sFileURL); in getFileURLFromSystemPath()
85 sFileURL = sWorkBuffer.toString(); in getFileURLFromSystemPath()
88 return sFileURL; in getFileURLFromSystemPath()
138 String sFileURL = URLHelper.getFileURLFromSystemPath(aSystemPath); in getURLWithProtocolFromSystemPath() local
149 int index = sFileURL.indexOf(sBaseURL); in getURLWithProtocolFromSystemPath()
150 String sURL = sFileURL.substring(0,index) + sServerURL + in getURLWithProtocolFromSystemPath()
151 sFileURL.substring(index+sBaseURL.length()); in getURLWithProtocolFromSystemPath()