Home | History | Annotate | Download | only in find_java

Lines Matching refs:CPath

237 class CPath : public CString {

239 CPath() : CString() { }
240 CPath(const CString &str) : CString(str) { }
241 CPath(const CPath &str) : CString(str) { }
242 explicit CPath(const char *str) : CString(str) { }
243 CPath(const char *start, int length) : CString(start, length) { }
245 CPath& operator=(const CPath &str) {
251 CPath& addPath(const CString &s) {
256 CPath& addPath(const char *s) {
285 CPath dirName() const {
286 CPath result;
329 bool toShortPath(CPath *dest) {
367 bool getModuleDir(CPath *outDir);