Function: semanticdb-find-test-translate-path

semanticdb-find-test-translate-path is an autoloaded, interactive and byte-compiled function defined in db-find.el.gz.

Signature

(semanticdb-find-test-translate-path &optional ARG)

Documentation

Call and output results of semanticdb-find-translate-path.

With ARG non-nil, specify a BRUTISH translation. See semanticdb-find-default-throttle and semanticdb-project-roots for details on how this list is derived.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-find.el.gz
;;; Perform interactive tests on the path/search mechanisms.
;;
;;;###autoload
(defun semanticdb-find-test-translate-path (&optional arg)
  "Call and output results of `semanticdb-find-translate-path'.
With ARG non-nil, specify a BRUTISH translation.
See `semanticdb-find-default-throttle' and `semanticdb-project-roots'
for details on how this list is derived."
  (interactive "P")
  (semantic-fetch-tags)
  (require 'data-debug)
  (let ((start (current-time))
	(p (semanticdb-find-translate-path nil arg))
	(end (current-time))
	)
    (data-debug-new-buffer "*SEMANTICDB FTP ADEBUG*")
    (message "Search of tags took %.2f seconds."
	     (semantic-elapsed-time start end))

    (data-debug-insert-stuff-list p "*")))