Lines Matching full:root
9 (defvar android-jdb-project-root-history '()
26 (defcustom android-project-root nil
27 "This is where your Android project root is stored."
41 (defun android-read-project-root ()
44 (read-file-name "Android project root: "
45 android-project-root
51 (read-file-name "Android project root: "
52 android-project-root
56 (do ((entered-root (read-directory) (read-directory)))
57 ((and entered-root
58 (file-directory-p entered-root))
59 (expand-file-name entered-root))))))
61 (defun android-jdb (port root)
62 "Set GUD+JDB up to run against Android on PORT in directory ROOT."
70 (android-read-project-root)))
71 (setq android-project-root root)
76 (format "%s/src" root))))